header.tsx 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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. const hasTransactionSummaryCleanupFlag = organization.features.includes(
  102. 'performance-transaction-summary-cleanup'
  103. );
  104. return (
  105. <Layout.Header>
  106. <Layout.HeaderContent>
  107. <Breadcrumb
  108. organization={organization}
  109. location={location}
  110. transaction={{
  111. project: projectId,
  112. name: transactionName,
  113. }}
  114. tab={currentTab}
  115. />
  116. <Layout.Title>
  117. {project && (
  118. <IdBadge
  119. project={project}
  120. avatarSize={28}
  121. hideName
  122. avatarProps={{hasTooltip: true, tooltip: project.slug}}
  123. />
  124. )}
  125. <Tooltip showOnlyOnOverflow skipWrapper title={transactionName}>
  126. <TransactionName>{transactionName}</TransactionName>
  127. </Tooltip>
  128. </Layout.Title>
  129. </Layout.HeaderContent>
  130. <Layout.HeaderActions>
  131. <ButtonBar gap={1}>
  132. <Feature organization={organization} features="incidents">
  133. {({hasFeature}) =>
  134. hasFeature && !metricsCardinality?.isLoading ? (
  135. <CreateAlertFromViewButton
  136. size="sm"
  137. eventView={eventView}
  138. organization={organization}
  139. projects={projects}
  140. onClick={handleCreateAlertSuccess}
  141. referrer="performance"
  142. alertType="trans_duration"
  143. aria-label={t('Create Alert')}
  144. disableMetricDataset={
  145. metricsCardinality?.outcome?.forceTransactionsOnly
  146. }
  147. />
  148. ) : null
  149. }
  150. </Feature>
  151. <TeamKeyTransactionButton
  152. transactionName={transactionName}
  153. eventView={eventView}
  154. organization={organization}
  155. />
  156. <GuideAnchor target="project_transaction_threshold_override" position="bottom">
  157. <TransactionThresholdButton
  158. organization={organization}
  159. transactionName={transactionName}
  160. eventView={eventView}
  161. onChangeThreshold={onChangeThreshold}
  162. />
  163. </GuideAnchor>
  164. </ButtonBar>
  165. </Layout.HeaderActions>
  166. <HasMeasurementsQuery
  167. location={location}
  168. orgSlug={organization.slug}
  169. eventView={eventView}
  170. transaction={transactionName}
  171. type="web"
  172. >
  173. {({hasMeasurements}) => {
  174. const renderWebVitals = getWebVitals(!!hasMeasurements);
  175. return (
  176. <TabList
  177. hideBorder
  178. outerWrapStyles={{
  179. gridColumn: '1 / -1',
  180. }}
  181. >
  182. <TabList.Item key={Tab.TRANSACTION_SUMMARY}>{t('Overview')}</TabList.Item>
  183. <TabList.Item key={Tab.EVENTS}>{t('Sampled Events')}</TabList.Item>
  184. <TabList.Item key={Tab.TAGS}>{t('Tags')}</TabList.Item>
  185. <TabList.Item key={Tab.SPANS} hidden={hasTransactionSummaryCleanupFlag}>
  186. {t('Spans')}
  187. </TabList.Item>
  188. <TabList.Item
  189. key={Tab.ANOMALIES}
  190. textValue={t('Anomalies')}
  191. hidden={!hasAnomalyDetection}
  192. >
  193. {t('Anomalies')}
  194. <FeatureBadge type="alpha" tooltipProps={{disabled: true}} />
  195. </TabList.Item>
  196. <TabList.Item
  197. key={Tab.WEB_VITALS}
  198. textValue={t('Web Vitals')}
  199. hidden={!renderWebVitals}
  200. >
  201. {t('Web Vitals')}
  202. </TabList.Item>
  203. <TabList.Item
  204. key={Tab.REPLAYS}
  205. textValue={t('Replays')}
  206. hidden={!hasSessionReplay}
  207. >
  208. {t('Replays')}
  209. <ReplayCountBadge count={replaysCount} />
  210. </TabList.Item>
  211. <TabList.Item
  212. key={Tab.PROFILING}
  213. textValue={t('Profiling')}
  214. hidden={!hasProfiling}
  215. >
  216. {t('Profiles')}
  217. </TabList.Item>
  218. <TabList.Item
  219. key={Tab.AGGREGATE_WATERFALL}
  220. textValue={t('Aggregate Spans')}
  221. hidden={!hasAggregateWaterfall}
  222. >
  223. {t('Aggregate Spans')}
  224. </TabList.Item>
  225. </TabList>
  226. );
  227. }}
  228. </HasMeasurementsQuery>
  229. </Layout.Header>
  230. );
  231. }
  232. const TransactionName = styled('div')`
  233. ${p => p.theme.overflowEllipsis}
  234. `;
  235. export default TransactionHeader;