123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- import {useCallback, useMemo} from 'react';
- import styled from '@emotion/styled';
- import Breadcrumbs from 'sentry/components/breadcrumbs';
- import ButtonBar from 'sentry/components/buttonBar';
- import DiscoverButton from 'sentry/components/discoverButton';
- import {HighlightsIconSummary} from 'sentry/components/events/highlights/highlightsIconSummary';
- import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton';
- import * as Layout from 'sentry/components/layouts/thirds';
- import Placeholder from 'sentry/components/placeholder';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {EventTransaction} from 'sentry/types/event';
- import type {Organization} from 'sentry/types/organization';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import type EventView from 'sentry/utils/discover/eventView';
- import {SavedQueryDatasets} from 'sentry/utils/discover/types';
- import type {UseApiQueryResult} from 'sentry/utils/queryClient';
- import type RequestError from 'sentry/utils/requestError/requestError';
- import {useLocation} from 'sentry/utils/useLocation';
- import {hasDatasetSelector} from 'sentry/views/dashboards/utils';
- import {ProjectsRenderer} from 'sentry/views/explore/tables/tracesTable/fieldRenderers';
- import {useModuleURLBuilder} from 'sentry/views/insights/common/utils/useModuleURL';
- import {useDomainViewFilters} from 'sentry/views/insights/pages/useFilters';
- import {useTraceStateDispatch} from 'sentry/views/performance/newTraceDetails/traceState/traceStateProvider';
- import {isRootTransaction} from '../../traceDetails/utils';
- import type {TraceMetaQueryResults} from '../traceApi/useTraceMeta';
- import TraceConfigurations from '../traceConfigurations';
- import {isTraceNode} from '../traceGuards';
- import type {TraceTree} from '../traceModels/traceTree';
- import {useHasTraceNewUi} from '../useHasTraceNewUi';
- import {getTraceViewBreadcrumbs} from './breadcrumbs';
- import {Meta} from './meta';
- import {Title} from './title';
- interface TraceMetadataHeaderProps {
- metaResults: TraceMetaQueryResults;
- organization: Organization;
- rootEventResults: UseApiQueryResult<EventTransaction, RequestError>;
- traceEventView: EventView;
- traceSlug: string;
- tree: TraceTree;
- }
- function PlaceHolder({organization}: {organization: Organization}) {
- const {view} = useDomainViewFilters();
- const moduleURLBuilder = useModuleURLBuilder(true);
- const location = useLocation();
- return (
- <Layout.Header>
- <HeaderContent>
- <HeaderRow>
- <Breadcrumbs
- crumbs={getTraceViewBreadcrumbs(
- organization,
- location,
- moduleURLBuilder,
- view
- )}
- />
- </HeaderRow>
- <HeaderRow>
- <PlaceHolderTitleWrapper>
- <StyledPlaceholder _width={300} _height={20} />
- <StyledPlaceholder _width={200} _height={18} />
- </PlaceHolderTitleWrapper>
- <PlaceHolderTitleWrapper>
- <StyledPlaceholder _width={300} _height={18} />
- <StyledPlaceholder _width={300} _height={24} />
- </PlaceHolderTitleWrapper>
- </HeaderRow>
- <StyledBreak />
- <HeaderRow>
- <PlaceHolderHighlightWrapper>
- <StyledPlaceholder _width={150} _height={20} />
- <StyledPlaceholder _width={150} _height={20} />
- <StyledPlaceholder _width={150} _height={20} />
- </PlaceHolderHighlightWrapper>
- <StyledPlaceholder _width={50} _height={28} />
- </HeaderRow>
- </HeaderContent>
- </Layout.Header>
- );
- }
- const PlaceHolderTitleWrapper = styled('div')`
- display: flex;
- flex-direction: column;
- gap: ${space(0.5)};
- `;
- const PlaceHolderHighlightWrapper = styled('div')`
- display: flex;
- align-items: center;
- gap: ${space(1)};
- `;
- const StyledPlaceholder = styled(Placeholder)<{_height: number; _width: number}>`
- border-radius: ${p => p.theme.borderRadius};
- height: ${p => p._height}px;
- width: ${p => p._width}px;
- `;
- const CANDIDATE_TRACE_TITLE_OPS = ['pageload', 'navigation'];
- export const getRepresentativeTransaction = (
- tree: TraceTree
- ): TraceTree.Transaction | null => {
- const traceNode = tree.root.children[0];
- if (!traceNode) {
- return null;
- }
- if (!isTraceNode(traceNode)) {
- throw new TypeError('Not trace node');
- }
- let firstRootTransaction: TraceTree.Transaction | null = null;
- let candidateTransaction: TraceTree.Transaction | null = null;
- let firstTransaction: TraceTree.Transaction | null = null;
- for (const transaction of traceNode.value.transactions || []) {
- // If we find a root transaction, we can stop looking and use it for the title.
- if (!firstRootTransaction && isRootTransaction(transaction)) {
- firstRootTransaction = transaction;
- break;
- } else if (
- // If we haven't found a root transaction, but we found a candidate transaction
- // with an op that we care about, we can use it for the title. We keep looking for
- // a root.
- !candidateTransaction &&
- CANDIDATE_TRACE_TITLE_OPS.includes(transaction['transaction.op'])
- ) {
- candidateTransaction = transaction;
- continue;
- } else if (!firstTransaction) {
- // If we haven't found a root or candidate transaction, we can use the first transaction
- // in the trace for the title.
- firstTransaction = transaction;
- }
- }
- return firstRootTransaction ?? candidateTransaction ?? firstTransaction;
- };
- function LegacyTraceMetadataHeader(props: TraceMetadataHeaderProps) {
- const location = useLocation();
- const {view} = useDomainViewFilters();
- const moduleURLBuilder = useModuleURLBuilder(true);
- const trackOpenInDiscover = useCallback(() => {
- trackAnalytics('performance_views.trace_view.open_in_discover', {
- organization: props.organization,
- });
- }, [props.organization]);
- return (
- <Layout.Header>
- <Layout.HeaderContent>
- <Breadcrumbs
- crumbs={getTraceViewBreadcrumbs(
- props.organization,
- location,
- moduleURLBuilder,
- view
- )}
- />
- </Layout.HeaderContent>
- <Layout.HeaderActions>
- <ButtonBar gap={1}>
- <TraceConfigurations rootEventResults={props.rootEventResults} />
- <DiscoverButton
- size="sm"
- to={props.traceEventView.getResultsViewUrlTarget(
- props.organization.slug,
- false,
- hasDatasetSelector(props.organization)
- ? SavedQueryDatasets.TRANSACTIONS
- : undefined
- )}
- onClick={trackOpenInDiscover}
- >
- {t('Open in Discover')}
- </DiscoverButton>
- <FeedbackWidgetButton />
- </ButtonBar>
- </Layout.HeaderActions>
- </Layout.Header>
- );
- }
- export function TraceMetaDataHeader(props: TraceMetadataHeaderProps) {
- const location = useLocation();
- const hasNewTraceViewUi = useHasTraceNewUi();
- const {view} = useDomainViewFilters();
- const moduleURLBuilder = useModuleURLBuilder(true);
- const dispatch = useTraceStateDispatch();
- const onProjectClick = useCallback(
- (projectSlug: string) => {
- dispatch({type: 'set query', query: `project:${projectSlug}`, source: 'external'});
- },
- [dispatch]
- );
- const projectSlugs = useMemo(() => {
- return Array.from(props.tree.projects.values()).map(project => project.slug);
- }, [props.tree.projects]);
- if (!hasNewTraceViewUi) {
- return <LegacyTraceMetadataHeader {...props} />;
- }
- const isLoading =
- props.metaResults.status === 'pending' ||
- props.rootEventResults.isPending ||
- props.tree.type === 'loading';
- if (isLoading) {
- return <PlaceHolder organization={props.organization} />;
- }
- const representativeTransaction = getRepresentativeTransaction(props.tree);
- return (
- <HeaderLayout>
- <HeaderContent>
- <HeaderRow>
- <Breadcrumbs
- crumbs={getTraceViewBreadcrumbs(
- props.organization,
- location,
- moduleURLBuilder,
- view
- )}
- />
- </HeaderRow>
- <HeaderRow>
- <Title
- traceSlug={props.traceSlug}
- representativeTransaction={representativeTransaction}
- />
- <Meta
- organization={props.organization}
- rootEventResults={props.rootEventResults}
- tree={props.tree}
- meta={props.metaResults.data}
- representativeTransaction={representativeTransaction}
- />
- </HeaderRow>
- <StyledBreak />
- {props.rootEventResults.data ? (
- <HeaderRow>
- <StyledWrapper>
- <HighlightsIconSummary event={props.rootEventResults.data} />
- </StyledWrapper>
- <ProjectsRendererWrapper>
- <ProjectsRenderer
- disableLink
- onProjectClick={onProjectClick}
- projectSlugs={projectSlugs}
- visibleAvatarSize={24}
- maxVisibleProjects={3}
- />
- </ProjectsRendererWrapper>
- </HeaderRow>
- ) : null}
- </HeaderContent>
- </HeaderLayout>
- );
- }
- // We cannot change the cursor of the ProjectBadge component so we need to wrap it in a div
- const ProjectsRendererWrapper = styled('div')`
- img {
- cursor: pointer;
- }
- `;
- const HeaderLayout = styled(Layout.Header)`
- background-color: ${p => p.theme.background};
- padding: ${space(2)} ${space(2)} 0 !important;
- `;
- const HeaderRow = styled('div')`
- display: flex;
- justify-content: space-between;
- gap: ${space(2)};
- &:not(:first-child) {
- margin: ${space(1)} 0;
- }
- @media (max-width: ${p => p.theme.breakpoints.small}) {
- gap: ${space(1)};
- flex-direction: column;
- }
- `;
- const HeaderContent = styled('div')`
- display: flex;
- flex-direction: column;
- `;
- const StyledBreak = styled('hr')`
- margin: 0;
- border-color: ${p => p.theme.border};
- `;
- const StyledWrapper = styled('span')`
- display: flex;
- align-items: center;
- & > div {
- padding: 0;
- }
- `;
|