header.tsx 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. import {useCallback} from 'react';
  2. import styled from '@emotion/styled';
  3. import {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 ReplaysFeatureBadge from 'sentry/components/replays/replaysFeatureBadge';
  13. import useReplaysCount from 'sentry/components/replays/useReplaysCount';
  14. import {TabList} from 'sentry/components/tabs';
  15. import {Tooltip} from 'sentry/components/tooltip';
  16. import {t} from 'sentry/locale';
  17. import {Organization, Project} from 'sentry/types';
  18. import {trackAnalytics} from 'sentry/utils/analytics';
  19. import EventView from 'sentry/utils/discover/eventView';
  20. import {MetricsCardinalityContext} from 'sentry/utils/performance/contexts/metricsCardinality';
  21. import HasMeasurementsQuery from 'sentry/utils/performance/vitals/hasMeasurementsQuery';
  22. import {isProfilingSupportedOrProjectHasProfiles} from 'sentry/utils/profiling/platforms';
  23. import projectSupportsReplay from 'sentry/utils/replays/projectSupportsReplay';
  24. import Breadcrumb from 'sentry/views/performance/breadcrumb';
  25. import {getCurrentLandingDisplay, LandingDisplayField} from '../landing/utils';
  26. import Tab from './tabs';
  27. import TeamKeyTransactionButton from './teamKeyTransactionButton';
  28. import TransactionThresholdButton from './transactionThresholdButton';
  29. import {TransactionThresholdMetric} from './transactionThresholdModal';
  30. type Props = {
  31. currentTab: Tab;
  32. eventView: EventView;
  33. hasWebVitals: 'maybe' | 'yes' | 'no';
  34. location: Location;
  35. organization: Organization;
  36. projectId: string;
  37. projects: Project[];
  38. transactionName: string;
  39. metricsCardinality?: MetricsCardinalityContext;
  40. onChangeThreshold?: (threshold: number, metric: TransactionThresholdMetric) => void;
  41. };
  42. function TransactionHeader({
  43. eventView,
  44. organization,
  45. projects,
  46. projectId,
  47. metricsCardinality,
  48. location,
  49. transactionName,
  50. onChangeThreshold,
  51. currentTab,
  52. hasWebVitals,
  53. }: Props) {
  54. function handleCreateAlertSuccess() {
  55. trackAnalytics('performance_views.summary.create_alert_clicked', {
  56. organization,
  57. });
  58. }
  59. const project = projects.find(p => p.id === projectId);
  60. const hasAnomalyDetection = organization.features?.includes(
  61. 'performance-anomaly-detection-ui'
  62. );
  63. const hasSessionReplay =
  64. organization.features.includes('session-replay') &&
  65. project &&
  66. projectSupportsReplay(project);
  67. const hasProfiling =
  68. project &&
  69. organization.features.includes('profiling') &&
  70. isProfilingSupportedOrProjectHasProfiles(project);
  71. const getWebVitals = useCallback(
  72. (hasMeasurements: boolean) => {
  73. switch (hasWebVitals) {
  74. case 'maybe':
  75. // need to check if the web vitals tab should be shown
  76. // frontend projects should always show the web vitals tab
  77. if (
  78. getCurrentLandingDisplay(location, projects, eventView).field ===
  79. LandingDisplayField.FRONTEND_PAGELOAD
  80. ) {
  81. return true;
  82. }
  83. // if it is not a frontend project, then we check to see if there
  84. // are any web vitals associated with the transaction recently
  85. return hasMeasurements;
  86. case 'yes':
  87. // always show the web vitals tab
  88. return true;
  89. case 'no':
  90. default:
  91. // never show the web vitals tab
  92. return false;
  93. }
  94. },
  95. [hasWebVitals, location, projects, eventView]
  96. );
  97. const replaysCount = useReplaysCount({
  98. transactionNames: transactionName,
  99. organization,
  100. })[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.TransactionSummary}>{t('Overview')}</TabList.Item>
  180. <TabList.Item key={Tab.Events}>{t('All 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.WebVitals}
  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. <ReplaysFeatureBadge tooltipProps={{disabled: true}} />
  206. </TabList.Item>
  207. <TabList.Item
  208. key={Tab.Profiling}
  209. textValue={t('Profiling')}
  210. hidden={!hasProfiling}
  211. >
  212. {t('Profiles')}
  213. {organization.features.includes('profiling-ga') ? (
  214. <FeatureBadge type="new" tooltipProps={{disabled: true}} />
  215. ) : (
  216. <FeatureBadge type="beta" tooltipProps={{disabled: true}} />
  217. )}
  218. </TabList.Item>
  219. </TabList>
  220. );
  221. }}
  222. </HasMeasurementsQuery>
  223. </Layout.Header>
  224. );
  225. }
  226. const TransactionName = styled('div')`
  227. ${p => p.theme.overflowEllipsis}
  228. `;
  229. export default TransactionHeader;