123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- import {useCallback} from 'react';
- import styled from '@emotion/styled';
- import type {Location} from 'history';
- import Feature from 'sentry/components/acl/feature';
- import GuideAnchor from 'sentry/components/assistant/guideAnchor';
- import FeatureBadge from 'sentry/components/badge/featureBadge';
- import ButtonBar from 'sentry/components/buttonBar';
- import {CreateAlertFromViewButton} from 'sentry/components/createAlertButton';
- import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton';
- import IdBadge from 'sentry/components/idBadge';
- import * as Layout from 'sentry/components/layouts/thirds';
- import ReplayCountBadge from 'sentry/components/replays/replayCountBadge';
- import {TabList} from 'sentry/components/tabs';
- import {Tooltip} from 'sentry/components/tooltip';
- import {t} from 'sentry/locale';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import type EventView from 'sentry/utils/discover/eventView';
- import type {MetricsCardinalityContext} from 'sentry/utils/performance/contexts/metricsCardinality';
- import HasMeasurementsQuery from 'sentry/utils/performance/vitals/hasMeasurementsQuery';
- import {isProfilingSupportedOrProjectHasProfiles} from 'sentry/utils/profiling/platforms';
- import useReplayCountForTransactions from 'sentry/utils/replayCount/useReplayCountForTransactions';
- import projectSupportsReplay from 'sentry/utils/replays/projectSupportsReplay';
- import Breadcrumb from 'sentry/views/performance/breadcrumb';
- import {getCurrentLandingDisplay, LandingDisplayField} from '../landing/utils';
- import Tab from './tabs';
- import TeamKeyTransactionButton from './teamKeyTransactionButton';
- import TransactionThresholdButton from './transactionThresholdButton';
- import type {TransactionThresholdMetric} from './transactionThresholdModal';
- type Props = {
- currentTab: Tab;
- eventView: EventView;
- hasWebVitals: 'maybe' | 'yes' | 'no';
- location: Location;
- organization: Organization;
- projectId: string;
- projects: Project[];
- transactionName: string;
- metricsCardinality?: MetricsCardinalityContext;
- onChangeThreshold?: (threshold: number, metric: TransactionThresholdMetric) => void;
- };
- function TransactionHeader({
- eventView,
- organization,
- projects,
- projectId,
- metricsCardinality,
- location,
- transactionName,
- onChangeThreshold,
- currentTab,
- hasWebVitals,
- }: Props) {
- function handleCreateAlertSuccess() {
- trackAnalytics('performance_views.summary.create_alert_clicked', {
- organization,
- });
- }
- const project = projects.find(p => p.id === projectId);
- const hasAnomalyDetection = organization.features?.includes(
- 'performance-anomaly-detection-ui'
- );
- const hasSessionReplay =
- organization.features.includes('session-replay') &&
- project &&
- projectSupportsReplay(project);
- const hasProfiling =
- project &&
- organization.features.includes('profiling') &&
- isProfilingSupportedOrProjectHasProfiles(project);
- const hasAggregateWaterfall = organization.features.includes(
- 'insights-initial-modules'
- );
- const getWebVitals = useCallback(
- (hasMeasurements: boolean) => {
- switch (hasWebVitals) {
- case 'maybe':
- // need to check if the web vitals tab should be shown
- // frontend projects should always show the web vitals tab
- if (
- getCurrentLandingDisplay(location, projects, eventView).field ===
- LandingDisplayField.FRONTEND_OTHER
- ) {
- return true;
- }
- // if it is not a frontend project, then we check to see if there
- // are any web vitals associated with the transaction recently
- return hasMeasurements;
- case 'yes':
- // always show the web vitals tab
- return true;
- case 'no':
- default:
- // never show the web vitals tab
- return false;
- }
- },
- [hasWebVitals, location, projects, eventView]
- );
- const {getReplayCountForTransaction} = useReplayCountForTransactions({
- statsPeriod: '90d',
- });
- const replaysCount = getReplayCountForTransaction(transactionName);
- return (
- <Layout.Header>
- <Layout.HeaderContent>
- <Breadcrumb
- organization={organization}
- location={location}
- transaction={{
- project: projectId,
- name: transactionName,
- }}
- tab={currentTab}
- />
- <Layout.Title>
- {project && (
- <IdBadge
- project={project}
- avatarSize={28}
- hideName
- avatarProps={{hasTooltip: true, tooltip: project.slug}}
- />
- )}
- <Tooltip showOnlyOnOverflow skipWrapper title={transactionName}>
- <TransactionName>{transactionName}</TransactionName>
- </Tooltip>
- </Layout.Title>
- </Layout.HeaderContent>
- <Layout.HeaderActions>
- <ButtonBar gap={1}>
- <Feature organization={organization} features="incidents">
- {({hasFeature}) =>
- hasFeature && !metricsCardinality?.isLoading ? (
- <CreateAlertFromViewButton
- size="sm"
- eventView={eventView}
- organization={organization}
- projects={projects}
- onClick={handleCreateAlertSuccess}
- referrer="performance"
- alertType="trans_duration"
- aria-label={t('Create Alert')}
- disableMetricDataset={
- metricsCardinality?.outcome?.forceTransactionsOnly
- }
- />
- ) : null
- }
- </Feature>
- <TeamKeyTransactionButton
- transactionName={transactionName}
- eventView={eventView}
- organization={organization}
- />
- <GuideAnchor target="project_transaction_threshold_override" position="bottom">
- <TransactionThresholdButton
- organization={organization}
- transactionName={transactionName}
- eventView={eventView}
- onChangeThreshold={onChangeThreshold}
- />
- </GuideAnchor>
- <FeedbackWidgetButton />
- </ButtonBar>
- </Layout.HeaderActions>
- <HasMeasurementsQuery
- location={location}
- orgSlug={organization.slug}
- eventView={eventView}
- transaction={transactionName}
- type="web"
- >
- {({hasMeasurements}) => {
- const renderWebVitals = getWebVitals(!!hasMeasurements);
- return (
- <TabList
- hideBorder
- outerWrapStyles={{
- gridColumn: '1 / -1',
- }}
- >
- <TabList.Item key={Tab.TRANSACTION_SUMMARY}>{t('Overview')}</TabList.Item>
- <TabList.Item key={Tab.EVENTS}>{t('Sampled Events')}</TabList.Item>
- <TabList.Item key={Tab.TAGS}>{t('Tags')}</TabList.Item>
- <TabList.Item key={Tab.SPANS}>{t('Spans')}</TabList.Item>
- <TabList.Item
- key={Tab.ANOMALIES}
- textValue={t('Anomalies')}
- hidden={!hasAnomalyDetection}
- >
- {t('Anomalies')}
- <FeatureBadge type="alpha" tooltipProps={{disabled: true}} />
- </TabList.Item>
- <TabList.Item
- key={Tab.WEB_VITALS}
- textValue={t('Web Vitals')}
- hidden={!renderWebVitals}
- >
- {t('Web Vitals')}
- </TabList.Item>
- <TabList.Item
- key={Tab.REPLAYS}
- textValue={t('Replays')}
- hidden={!hasSessionReplay}
- >
- {t('Replays')}
- <ReplayCountBadge count={replaysCount} />
- </TabList.Item>
- <TabList.Item
- key={Tab.PROFILING}
- textValue={t('Profiling')}
- hidden={!hasProfiling}
- >
- {t('Profiles')}
- </TabList.Item>
- <TabList.Item
- key={Tab.AGGREGATE_WATERFALL}
- textValue={t('Aggregate Spans')}
- hidden={!hasAggregateWaterfall}
- >
- {t('Aggregate Spans')}
- </TabList.Item>
- </TabList>
- );
- }}
- </HasMeasurementsQuery>
- </Layout.Header>
- );
- }
- const TransactionName = styled('div')`
- ${p => p.theme.overflowEllipsis}
- `;
- export default TransactionHeader;
|