header.tsx 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. import {useCallback} from 'react';
  2. import styled from '@emotion/styled';
  3. import type {Location} from 'history';
  4. import Feature from 'sentry/components/acl/feature';
  5. import GuideAnchor from 'sentry/components/assistant/guideAnchor';
  6. import ButtonBar from 'sentry/components/buttonBar';
  7. import {CreateAlertFromViewButton} from 'sentry/components/createAlertButton';
  8. import FeatureBadge from 'sentry/components/featureBadge';
  9. import IdBadge from 'sentry/components/idBadge';
  10. import * as Layout from 'sentry/components/layouts/thirds';
  11. import ReplayCountBadge from 'sentry/components/replays/replayCountBadge';
  12. import {TabList} from 'sentry/components/tabs';
  13. import {Tooltip} from 'sentry/components/tooltip';
  14. import {t} from 'sentry/locale';
  15. import type {Organization, Project} from 'sentry/types';
  16. import {trackAnalytics} from 'sentry/utils/analytics';
  17. import type EventView from 'sentry/utils/discover/eventView';
  18. import type {MetricsCardinalityContext} from 'sentry/utils/performance/contexts/metricsCardinality';
  19. import HasMeasurementsQuery from 'sentry/utils/performance/vitals/hasMeasurementsQuery';
  20. import {isProfilingSupportedOrProjectHasProfiles} from 'sentry/utils/profiling/platforms';
  21. import useReplayCountForTransactions from 'sentry/utils/replayCount/useReplayCountForTransactions';
  22. import projectSupportsReplay from 'sentry/utils/replays/projectSupportsReplay';
  23. import Breadcrumb from 'sentry/views/performance/breadcrumb';
  24. import {getCurrentLandingDisplay, LandingDisplayField} from '../landing/utils';
  25. import Tab from './tabs';
  26. import TeamKeyTransactionButton from './teamKeyTransactionButton';
  27. import TransactionThresholdButton from './transactionThresholdButton';
  28. import type {TransactionThresholdMetric} from './transactionThresholdModal';
  29. type Props = {
  30. currentTab: Tab;
  31. eventView: EventView;
  32. hasWebVitals: 'maybe' | 'yes' | 'no';
  33. location: Location;
  34. organization: Organization;
  35. projectId: string;
  36. projects: Project[];
  37. transactionName: string;
  38. metricsCardinality?: MetricsCardinalityContext;
  39. onChangeThreshold?: (threshold: number, metric: TransactionThresholdMetric) => void;
  40. };
  41. function TransactionHeader({
  42. eventView,
  43. organization,
  44. projects,
  45. projectId,
  46. metricsCardinality,
  47. location,
  48. transactionName,
  49. onChangeThreshold,
  50. currentTab,
  51. hasWebVitals,
  52. }: Props) {
  53. function handleCreateAlertSuccess() {
  54. trackAnalytics('performance_views.summary.create_alert_clicked', {
  55. organization,
  56. });
  57. }
  58. const project = projects.find(p => p.id === projectId);
  59. const hasAnomalyDetection = organization.features?.includes(
  60. 'performance-anomaly-detection-ui'
  61. );
  62. const hasSessionReplay =
  63. organization.features.includes('session-replay') &&
  64. project &&
  65. projectSupportsReplay(project);
  66. const hasProfiling =
  67. project &&
  68. organization.features.includes('profiling') &&
  69. isProfilingSupportedOrProjectHasProfiles(project);
  70. const hasAggregateWaterfall = organization.features.includes(
  71. 'starfish-aggregate-span-waterfall'
  72. );
  73. const getWebVitals = useCallback(
  74. (hasMeasurements: boolean) => {
  75. switch (hasWebVitals) {
  76. case 'maybe':
  77. // need to check if the web vitals tab should be shown
  78. // frontend projects should always show the web vitals tab
  79. if (
  80. getCurrentLandingDisplay(location, projects, eventView).field ===
  81. LandingDisplayField.FRONTEND_OTHER
  82. ) {
  83. return true;
  84. }
  85. // if it is not a frontend project, then we check to see if there
  86. // are any web vitals associated with the transaction recently
  87. return hasMeasurements;
  88. case 'yes':
  89. // always show the web vitals tab
  90. return true;
  91. case 'no':
  92. default:
  93. // never show the web vitals tab
  94. return false;
  95. }
  96. },
  97. [hasWebVitals, location, projects, eventView]
  98. );
  99. const {getReplayCountForTransaction} = useReplayCountForTransactions();
  100. const replaysCount = getReplayCountForTransaction(transactionName);
  101. return (
  102. <Layout.Header>
  103. <Layout.HeaderContent>
  104. <Breadcrumb
  105. organization={organization}
  106. location={location}
  107. transaction={{
  108. project: projectId,
  109. name: transactionName,
  110. }}
  111. tab={currentTab}
  112. />
  113. <Layout.Title>
  114. {project && (
  115. <IdBadge
  116. project={project}
  117. avatarSize={28}
  118. hideName
  119. avatarProps={{hasTooltip: true, tooltip: project.slug}}
  120. />
  121. )}
  122. <Tooltip showOnlyOnOverflow skipWrapper title={transactionName}>
  123. <TransactionName>{transactionName}</TransactionName>
  124. </Tooltip>
  125. </Layout.Title>
  126. </Layout.HeaderContent>
  127. <Layout.HeaderActions>
  128. <ButtonBar gap={1}>
  129. <Feature organization={organization} features="incidents">
  130. {({hasFeature}) =>
  131. hasFeature && !metricsCardinality?.isLoading ? (
  132. <CreateAlertFromViewButton
  133. size="sm"
  134. eventView={eventView}
  135. organization={organization}
  136. projects={projects}
  137. onClick={handleCreateAlertSuccess}
  138. referrer="performance"
  139. alertType="trans_duration"
  140. aria-label={t('Create Alert')}
  141. disableMetricDataset={
  142. metricsCardinality?.outcome?.forceTransactionsOnly
  143. }
  144. />
  145. ) : null
  146. }
  147. </Feature>
  148. <TeamKeyTransactionButton
  149. transactionName={transactionName}
  150. eventView={eventView}
  151. organization={organization}
  152. />
  153. <GuideAnchor target="project_transaction_threshold_override" position="bottom">
  154. <TransactionThresholdButton
  155. organization={organization}
  156. transactionName={transactionName}
  157. eventView={eventView}
  158. onChangeThreshold={onChangeThreshold}
  159. />
  160. </GuideAnchor>
  161. </ButtonBar>
  162. </Layout.HeaderActions>
  163. <HasMeasurementsQuery
  164. location={location}
  165. orgSlug={organization.slug}
  166. eventView={eventView}
  167. transaction={transactionName}
  168. type="web"
  169. >
  170. {({hasMeasurements}) => {
  171. const renderWebVitals = getWebVitals(!!hasMeasurements);
  172. return (
  173. <TabList
  174. hideBorder
  175. outerWrapStyles={{
  176. gridColumn: '1 / -1',
  177. }}
  178. >
  179. <TabList.Item key={Tab.TRANSACTION_SUMMARY}>{t('Overview')}</TabList.Item>
  180. <TabList.Item key={Tab.EVENTS}>{t('Sampled Events')}</TabList.Item>
  181. <TabList.Item key={Tab.TAGS}>{t('Tags')}</TabList.Item>
  182. <TabList.Item key={Tab.SPANS}>{t('Spans')}</TabList.Item>
  183. <TabList.Item
  184. key={Tab.ANOMALIES}
  185. textValue={t('Anomalies')}
  186. hidden={!hasAnomalyDetection}
  187. >
  188. {t('Anomalies')}
  189. <FeatureBadge type="alpha" tooltipProps={{disabled: true}} />
  190. </TabList.Item>
  191. <TabList.Item
  192. key={Tab.WEB_VITALS}
  193. textValue={t('Web Vitals')}
  194. hidden={!renderWebVitals}
  195. >
  196. {t('Web Vitals')}
  197. </TabList.Item>
  198. <TabList.Item
  199. key={Tab.REPLAYS}
  200. textValue={t('Replays')}
  201. hidden={!hasSessionReplay}
  202. >
  203. {t('Replays')}
  204. <ReplayCountBadge count={replaysCount} />
  205. </TabList.Item>
  206. <TabList.Item
  207. key={Tab.PROFILING}
  208. textValue={t('Profiling')}
  209. hidden={!hasProfiling}
  210. >
  211. {t('Profiles')}
  212. </TabList.Item>
  213. <TabList.Item
  214. key={Tab.AGGREGATE_WATERFALL}
  215. textValue={t('Aggregate Spans')}
  216. hidden={!hasAggregateWaterfall}
  217. >
  218. {t('Aggregate Spans')}
  219. </TabList.Item>
  220. </TabList>
  221. );
  222. }}
  223. </HasMeasurementsQuery>
  224. </Layout.Header>
  225. );
  226. }
  227. const TransactionName = styled('div')`
  228. ${p => p.theme.overflowEllipsis}
  229. `;
  230. export default TransactionHeader;