12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244 |
- import type React from 'react';
- import {
- Fragment,
- useCallback,
- useEffect,
- useLayoutEffect,
- useMemo,
- useReducer,
- useRef,
- useState,
- } from 'react';
- import {flushSync} from 'react-dom';
- import styled from '@emotion/styled';
- import * as Sentry from '@sentry/react';
- import * as qs from 'query-string';
- import {Button} from 'sentry/components/button';
- import useFeedbackWidget from 'sentry/components/feedback/widget/useFeedbackWidget';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import NoProjectMessage from 'sentry/components/noProjectMessage';
- import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
- 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 type {Project} from 'sentry/types/project';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import EventView from 'sentry/utils/discover/eventView';
- import type {TraceSplitResults} from 'sentry/utils/performance/quickTrace/types';
- import {
- cancelAnimationTimeout,
- requestAnimationTimeout,
- } from 'sentry/utils/profiling/hooks/useVirtualizedTree/virtualizedTreeUtils';
- import type {QueryStatus, UseApiQueryResult} from 'sentry/utils/queryClient';
- import {decodeScalar} from 'sentry/utils/queryString';
- import type RequestError from 'sentry/utils/requestError/requestError';
- import {capitalize} from 'sentry/utils/string/capitalize';
- import useApi from 'sentry/utils/useApi';
- import type {DispatchingReducerMiddleware} from 'sentry/utils/useDispatchingReducer';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import {useParams} from 'sentry/utils/useParams';
- import useProjects from 'sentry/utils/useProjects';
- import {traceAnalytics} from 'sentry/views/performance/newTraceDetails/traceAnalytics';
- import {
- TraceEventPriority,
- type TraceEvents,
- TraceScheduler,
- } from 'sentry/views/performance/newTraceDetails/traceRenderers/traceScheduler';
- import {TraceView as TraceViewModel} from 'sentry/views/performance/newTraceDetails/traceRenderers/traceView';
- import {
- type ViewManagerScrollAnchor,
- VirtualizedViewManager,
- } from 'sentry/views/performance/newTraceDetails/traceRenderers/virtualizedViewManager';
- import {
- searchInTraceTreeText,
- searchInTraceTreeTokens,
- } from 'sentry/views/performance/newTraceDetails/traceSearch/traceSearchEvaluator';
- import {parseTraceSearch} from 'sentry/views/performance/newTraceDetails/traceSearch/traceTokenConverter';
- import {TraceShortcuts} from 'sentry/views/performance/newTraceDetails/traceShortcutsModal';
- import {
- TraceStateProvider,
- useTraceState,
- useTraceStateDispatch,
- useTraceStateEmitter,
- } from 'sentry/views/performance/newTraceDetails/traceState/traceStateProvider';
- import type {ReplayTrace} from 'sentry/views/replays/detail/trace/useReplayTraces';
- import type {ReplayRecord} from 'sentry/views/replays/types';
- import {useTrace} from './traceApi/useTrace';
- import {type TraceMetaQueryResults, useTraceMeta} from './traceApi/useTraceMeta';
- import {useTraceRootEvent} from './traceApi/useTraceRootEvent';
- import {TraceDrawer} from './traceDrawer/traceDrawer';
- import {
- traceNodeAdjacentAnalyticsProperties,
- traceNodeAnalyticsName,
- TraceTree,
- type TraceTreeNode,
- } from './traceModels/traceTree';
- import {TraceSearchInput} from './traceSearch/traceSearchInput';
- import {
- DEFAULT_TRACE_VIEW_PREFERENCES,
- loadTraceViewPreferences,
- } from './traceState/tracePreferences';
- import {isTraceNode} from './guards';
- import {Trace} from './trace';
- import {TraceMetadataHeader} from './traceMetadataHeader';
- import type {TraceReducer, TraceReducerState} from './traceState';
- import {TraceType} from './traceType';
- import TraceTypeWarnings from './traceTypeWarnings';
- import {useTraceQueryParamStateSync} from './useTraceQueryParamStateSync';
- function decodeScrollQueue(maybePath: unknown): TraceTree.NodePath[] | null {
- if (Array.isArray(maybePath)) {
- return maybePath;
- }
- if (typeof maybePath === 'string') {
- return [maybePath as TraceTree.NodePath];
- }
- return null;
- }
- function logTraceMetadata(
- tree: TraceTree,
- projects: Project[],
- organization: Organization
- ) {
- switch (tree.shape) {
- case TraceType.BROKEN_SUBTRACES:
- case TraceType.EMPTY_TRACE:
- case TraceType.MULTIPLE_ROOTS:
- case TraceType.ONE_ROOT:
- case TraceType.NO_ROOT:
- case TraceType.ONLY_ERRORS:
- case TraceType.BROWSER_MULTIPLE_ROOTS:
- traceAnalytics.trackTraceMetadata(tree, projects, organization);
- break;
- default: {
- Sentry.captureMessage('Unknown trace type');
- }
- }
- }
- export function getTraceViewQueryStatus(
- traceQueryStatus: QueryStatus,
- traceMetaQueryStatus: QueryStatus
- ): QueryStatus {
- if (traceQueryStatus === 'error' || traceMetaQueryStatus === 'error') {
- return 'error';
- }
- if (traceQueryStatus === 'loading' || traceMetaQueryStatus === 'loading') {
- return 'loading';
- }
- return 'success';
- }
- export function TraceView() {
- const params = useParams<{traceSlug?: string}>();
- const organization = useOrganization();
- const traceSlug = useMemo(() => {
- const slug = params.traceSlug?.trim() ?? '';
- // null and undefined are not valid trace slugs, but they can be passed
- // in the URL and need to check for their string coerced values.
- if (!slug || slug === 'null' || slug === 'undefined') {
- Sentry.withScope(scope => {
- scope.setFingerprint(['trace-null-slug']);
- Sentry.captureMessage(`Trace slug is empty`);
- });
- }
- return slug;
- }, [params.traceSlug]);
- const queryParams = useMemo(() => {
- const normalizedParams = normalizeDateTimeParams(qs.parse(location.search), {
- allowAbsolutePageDatetime: true,
- });
- const start = decodeScalar(normalizedParams.start);
- const timestamp: string | undefined = decodeScalar(normalizedParams.timestamp);
- const end = decodeScalar(normalizedParams.end);
- const statsPeriod = decodeScalar(normalizedParams.statsPeriod);
- const numberTimestamp = timestamp ? Number(timestamp) : undefined;
- return {start, end, statsPeriod, timestamp: numberTimestamp, useSpans: 1};
- }, []);
- const traceEventView = useMemo(() => {
- const {start, end, statsPeriod, timestamp} = queryParams;
- let startTimeStamp = start;
- let endTimeStamp = end;
- // If timestamp exists in the query params, we want to use it to set the start and end time
- // with a buffer of 1.5 days, for retrieving events belonging to the trace.
- if (typeof timestamp === 'number') {
- const buffer = 36 * 60 * 60 * 1000; // 1.5 days in milliseconds
- const dateFromTimestamp = new Date(timestamp * 1000);
- startTimeStamp = new Date(dateFromTimestamp.getTime() - buffer).toISOString();
- endTimeStamp = new Date(dateFromTimestamp.getTime() + buffer).toISOString();
- }
- return EventView.fromSavedQuery({
- id: undefined,
- name: `Events with Trace ID ${traceSlug}`,
- fields: ['title', 'event.type', 'project', 'timestamp'],
- orderby: '-timestamp',
- query: `trace:${traceSlug}`,
- projects: [ALL_ACCESS_PROJECTS],
- version: 2,
- start: startTimeStamp,
- end: endTimeStamp,
- range: !(startTimeStamp || endTimeStamp) ? statsPeriod : undefined,
- });
- }, [queryParams, traceSlug]);
- const meta = useTraceMeta([{traceSlug, timestamp: queryParams.timestamp}]);
- const preferences = useMemo(
- () =>
- loadTraceViewPreferences('trace-view-preferences') ||
- DEFAULT_TRACE_VIEW_PREFERENCES,
- []
- );
- const trace = useTrace({traceSlug, timestamp: queryParams.timestamp});
- const rootEvent = useTraceRootEvent(trace.data ?? null);
- return (
- <SentryDocumentTitle
- title={`${t('Trace Details')} - ${traceSlug}`}
- orgSlug={organization.slug}
- >
- <TraceStateProvider
- initialPreferences={preferences}
- preferencesStorageKey="trace-view-preferences"
- >
- <NoProjectMessage organization={organization}>
- <TraceExternalLayout>
- <TraceMetadataHeader
- rootEventResults={rootEvent}
- organization={organization}
- traceSlug={traceSlug}
- traceEventView={traceEventView}
- />
- <TraceInnerLayout>
- <TraceViewWaterfall
- traceSlug={traceSlug}
- trace={trace.data ?? null}
- status={getTraceViewQueryStatus(trace.status, meta.status)}
- organization={organization}
- rootEvent={rootEvent}
- traceEventView={traceEventView}
- metaResults={meta}
- replayRecord={null}
- source="performance"
- />
- </TraceInnerLayout>
- </TraceExternalLayout>
- </NoProjectMessage>
- </TraceStateProvider>
- </SentryDocumentTitle>
- );
- }
- const TRACE_TAB: TraceReducerState['tabs']['tabs'][0] = {
- node: 'trace',
- label: t('Trace'),
- };
- const VITALS_TAB: TraceReducerState['tabs']['tabs'][0] = {
- node: 'vitals',
- label: t('Vitals'),
- };
- type TraceViewWaterfallProps = {
- metaResults: TraceMetaQueryResults;
- organization: Organization;
- replayRecord: ReplayRecord | null;
- rootEvent: UseApiQueryResult<EventTransaction, RequestError>;
- source: string;
- status: UseApiQueryResult<any, any>['status'];
- trace: TraceSplitResults<TraceTree.Transaction> | null;
- traceEventView: EventView;
- traceSlug: string | undefined;
- replayTraces?: ReplayTrace[];
- };
- export function TraceViewWaterfall(props: TraceViewWaterfallProps) {
- const api = useApi();
- const {projects} = useProjects();
- const organization = useOrganization();
- const loadingTraceRef = useRef<TraceTree | null>(null);
- const [forceRender, rerender] = useReducer(x => (x + 1) % Number.MAX_SAFE_INTEGER, 0);
- const traceState = useTraceState();
- const traceDispatch = useTraceStateDispatch();
- const traceStateEmitter = useTraceStateEmitter();
- const filters = usePageFilters();
- const traceScheduler = useMemo(() => new TraceScheduler(), []);
- const traceView = useMemo(() => new TraceViewModel(), []);
- const forceRerender = useCallback(() => {
- flushSync(rerender);
- }, []);
- useEffect(() => {
- trackAnalytics('performance_views.trace_view_v1_page_load', {
- organization: props.organization,
- source: props.source,
- });
- }, [props.organization, props.source]);
- const initializedRef = useRef(false);
- const scrollQueueRef = useRef<
- {eventId?: string; path?: TraceTree.NodePath[]} | null | undefined
- >(undefined);
- if (scrollQueueRef.current === undefined) {
- const queryParams = qs.parse(location.search);
- const maybeQueue = decodeScrollQueue(queryParams.node);
- if (maybeQueue || queryParams.eventId) {
- scrollQueueRef.current = {
- eventId: queryParams.eventId as string,
- path: maybeQueue as TraceTreeNode<TraceTree.NodeValue>['path'],
- };
- } else {
- scrollQueueRef.current = null;
- }
- }
- const previouslyFocusedNodeRef = useRef<TraceTreeNode<TraceTree.NodeValue> | null>(
- null
- );
- const previouslyScrolledToNodeRef = useRef<TraceTreeNode<TraceTree.NodeValue> | null>(
- null
- );
- const [tree, setTree] = useState<TraceTree>(TraceTree.Empty());
- useEffect(() => {
- if (props.status === 'error') {
- const errorTree = TraceTree.Error(
- {
- project_slug: projects?.[0]?.slug ?? '',
- event_id: props.traceSlug,
- },
- loadingTraceRef.current
- );
- setTree(errorTree);
- return;
- }
- if (
- props.trace?.transactions.length === 0 &&
- props.trace?.orphan_errors.length === 0
- ) {
- setTree(TraceTree.Empty());
- return;
- }
- if (props.status === 'loading') {
- const loadingTrace =
- loadingTraceRef.current ??
- TraceTree.Loading(
- {
- project_slug: projects?.[0]?.slug ?? '',
- event_id: props.traceSlug,
- },
- loadingTraceRef.current
- );
- loadingTraceRef.current = loadingTrace;
- setTree(loadingTrace);
- return;
- }
- if (props.trace && props.metaResults.data) {
- const trace = TraceTree.FromTrace(
- props.trace,
- props.metaResults,
- props.replayRecord
- );
- // Root frame + 2 nodes
- const promises: Promise<void>[] = [];
- if (trace.list.length < 4) {
- for (const c of trace.list) {
- if (c.canFetch) {
- promises.push(trace.zoomIn(c, true, {api, organization}).then(rerender));
- }
- }
- }
- Promise.allSettled(promises).finally(() => {
- setTree(trace);
- });
- }
- }, [
- props.traceSlug,
- props.trace,
- props.status,
- props.metaResults,
- props.replayRecord,
- projects,
- api,
- organization,
- ]);
- useEffect(() => {
- if (!props.replayTraces?.length || tree.type !== 'trace') {
- return undefined;
- }
- const cleanup = tree.fetchAdditionalTraces({
- api,
- filters,
- replayTraces: props.replayTraces,
- organization: props.organization,
- urlParams: qs.parse(location.search),
- rerender: forceRerender,
- metaResults: props.metaResults,
- });
- return () => cleanup();
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [tree, props.replayTraces]);
- // Assign the trace state to a ref so we can access it without re-rendering
- const traceStateRef = useRef<TraceReducerState>(traceState);
- traceStateRef.current = traceState;
- // Initialize the view manager right after the state reducer
- const viewManager = useMemo(() => {
- return new VirtualizedViewManager(
- {
- list: {width: traceState.preferences.list.width},
- span_list: {width: 1 - traceState.preferences.list.width},
- },
- traceScheduler,
- traceView
- );
- // We only care about initial state when we initialize the view manager
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
- useLayoutEffect(() => {
- const onTraceViewChange: TraceEvents['set trace view'] = view => {
- traceView.setTraceView(view);
- viewManager.enqueueFOVQueryParamSync(traceView);
- };
- const onPhysicalSpaceChange: TraceEvents['set container physical space'] =
- container => {
- traceView.setTracePhysicalSpace(container, [
- 0,
- 0,
- container[2] * viewManager.columns.span_list.width,
- container[3],
- ]);
- };
- const onTraceSpaceChange: TraceEvents['initialize trace space'] = view => {
- traceView.setTraceSpace(view);
- };
- // These handlers have high priority because they are responsible for
- // updating the view coordinates. If we update them first, then any components downstream
- // that rely on the view coordinates will be in sync with the view.
- traceScheduler.on('set trace view', onTraceViewChange, TraceEventPriority.HIGH);
- traceScheduler.on('set trace space', onTraceSpaceChange, TraceEventPriority.HIGH);
- traceScheduler.on(
- 'set container physical space',
- onPhysicalSpaceChange,
- TraceEventPriority.HIGH
- );
- traceScheduler.on(
- 'initialize trace space',
- onTraceSpaceChange,
- TraceEventPriority.HIGH
- );
- return () => {
- traceScheduler.off('set trace view', onTraceViewChange);
- traceScheduler.off('set trace space', onTraceSpaceChange);
- traceScheduler.off('set container physical space', onPhysicalSpaceChange);
- traceScheduler.off('initialize trace space', onTraceSpaceChange);
- };
- }, [traceScheduler, traceView, viewManager]);
- // Initialize the tabs reducer when the tree initializes
- useLayoutEffect(() => {
- return traceDispatch({
- type: 'set roving count',
- items: tree.list.length - 1,
- });
- }, [tree.list.length, traceDispatch]);
- // Initialize the tabs reducer when the tree initializes
- useLayoutEffect(() => {
- if (tree.type !== 'trace') {
- return;
- }
- const newTabs = [TRACE_TAB];
- if (tree.vitals.size > 0) {
- const types = Array.from(tree.vital_types.values());
- const label = types.length > 1 ? t('Vitals') : capitalize(types[0]) + ' Vitals';
- newTabs.push({
- ...VITALS_TAB,
- label,
- });
- }
- if (tree.profiled_events.size > 0) {
- newTabs.push({
- node: 'profiles',
- label: 'Profiles',
- });
- }
- traceDispatch({
- type: 'initialize tabs reducer',
- payload: {
- current_tab: traceStateRef?.current?.tabs?.tabs?.[0],
- tabs: newTabs,
- last_clicked_tab: null,
- },
- });
- // We only want to update the tabs when the tree changes
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [tree]);
- const searchingRaf = useRef<{id: number | null} | null>(null);
- const onTraceSearch = useCallback(
- (
- query: string,
- activeNode: TraceTreeNode<TraceTree.NodeValue> | null,
- behavior: 'track result' | 'persist'
- ) => {
- if (searchingRaf.current?.id) {
- window.cancelAnimationFrame(searchingRaf.current.id);
- }
- function done([matches, lookup, activeNodeSearchResult]) {
- // If the previous node is still in the results set, we want to keep it
- if (activeNodeSearchResult) {
- traceDispatch({
- type: 'set results',
- results: matches,
- resultsLookup: lookup,
- resultIteratorIndex: activeNodeSearchResult?.resultIteratorIndex,
- resultIndex: activeNodeSearchResult?.resultIndex,
- previousNode: activeNodeSearchResult,
- node: activeNode,
- });
- return;
- }
- if (activeNode && behavior === 'persist') {
- traceDispatch({
- type: 'set results',
- results: matches,
- resultsLookup: lookup,
- resultIteratorIndex: undefined,
- resultIndex: undefined,
- previousNode: activeNodeSearchResult,
- node: activeNode,
- });
- return;
- }
- const resultIndex: number | undefined = matches?.[0]?.index;
- const resultIteratorIndex: number | undefined = matches?.[0] ? 0 : undefined;
- const node: TraceTreeNode<TraceTree.NodeValue> | null = matches?.[0]?.value;
- traceDispatch({
- type: 'set results',
- results: matches,
- resultsLookup: lookup,
- resultIteratorIndex: resultIteratorIndex,
- resultIndex: resultIndex,
- previousNode: activeNodeSearchResult,
- node,
- });
- }
- const tokens = parseTraceSearch(query);
- if (tokens) {
- searchingRaf.current = searchInTraceTreeTokens(tree, tokens, activeNode, done);
- } else {
- searchingRaf.current = searchInTraceTreeText(tree, query, activeNode, done);
- }
- },
- [traceDispatch, tree]
- );
- // We need to heavily debounce query string updates because the rest of the app is so slow
- // to rerender that it causes the search to drop frames on every keystroke...
- const QUERY_STRING_STATE_DEBOUNCE = 300;
- const queryStringAnimationTimeoutRef = useRef<{id: number} | null>(null);
- const setRowAsFocused = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue> | null,
- event: React.MouseEvent<HTMLElement> | null,
- resultsLookup: Map<TraceTreeNode<TraceTree.NodeValue>, number>,
- index: number | null,
- debounce: number = QUERY_STRING_STATE_DEBOUNCE
- ) => {
- // sync query string with the clicked node
- if (node) {
- if (queryStringAnimationTimeoutRef.current) {
- cancelAnimationTimeout(queryStringAnimationTimeoutRef.current);
- }
- queryStringAnimationTimeoutRef.current = requestAnimationTimeout(() => {
- const currentQueryStringPath = qs.parse(location.search).node;
- const nextNodePath = node.path;
- // Updating the query string with the same path is problematic because it causes
- // the entire sentry app to rerender, which is enough to cause jank and drop frames
- if (JSON.stringify(currentQueryStringPath) === JSON.stringify(nextNodePath)) {
- return;
- }
- const {eventId: _eventId, ...query} = qs.parse(location.search);
- browserHistory.replace({
- pathname: location.pathname,
- query: {
- ...query,
- node: nextNodePath,
- },
- });
- queryStringAnimationTimeoutRef.current = null;
- }, debounce);
- if (resultsLookup.has(node) && typeof index === 'number') {
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: index,
- resultIteratorIndex: resultsLookup.get(node)!,
- });
- }
- if (isTraceNode(node)) {
- traceDispatch({type: 'activate tab', payload: TRACE_TAB.node});
- return;
- }
- traceDispatch({
- type: 'activate tab',
- payload: node,
- pin_previous: event?.metaKey,
- });
- }
- },
- [traceDispatch]
- );
- const onRowClick = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue>,
- event: React.MouseEvent<HTMLElement>,
- index: number
- ) => {
- trackAnalytics('trace.trace_layout.span_row_click', {
- organization,
- num_children: node.children.length,
- type: traceNodeAnalyticsName(node),
- project_platform:
- projects.find(p => p.slug === node.metadata.project_slug)?.platform || 'other',
- ...traceNodeAdjacentAnalyticsProperties(node),
- });
- if (traceStateRef.current.preferences.drawer.minimized) {
- traceDispatch({type: 'minimize drawer', payload: false});
- }
- setRowAsFocused(node, event, traceStateRef.current.search.resultsLookup, null, 0);
- if (traceStateRef.current.search.resultsLookup.has(node)) {
- const idx = traceStateRef.current.search.resultsLookup.get(node)!;
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: index,
- resultIteratorIndex: idx,
- });
- } else if (traceStateRef.current.search.resultIteratorIndex !== null) {
- traceDispatch({type: 'clear search iterator index'});
- }
- traceDispatch({
- type: 'set roving index',
- action_source: 'click',
- index,
- node,
- });
- },
- [setRowAsFocused, traceDispatch, organization, projects]
- );
- const scrollRowIntoView = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue>,
- index: number,
- anchor?: ViewManagerScrollAnchor,
- force?: boolean
- ) => {
- // Last node we scrolled to is the same as the node we want to scroll to
- if (previouslyScrolledToNodeRef.current === node && !force) {
- return;
- }
- // Always scroll to the row vertically
- viewManager.scrollToRow(index, anchor);
- if (viewManager.isOutsideOfView(node)) {
- viewManager.scrollRowIntoViewHorizontally(node, 0, 48, 'measured');
- }
- previouslyScrolledToNodeRef.current = node;
- },
- [viewManager]
- );
- const onTabScrollToNode = useCallback(
- (node: TraceTreeNode<TraceTree.NodeValue>) => {
- if (node === null) {
- return;
- }
- // We call expandToNode because we want to ensure that the node is
- // visible and may not have been collapsed/hidden by the user
- TraceTree.ExpandToPath(tree, node.path, forceRerender, {
- api,
- organization: props.organization,
- }).then(maybeNode => {
- if (maybeNode) {
- previouslyFocusedNodeRef.current = null;
- scrollRowIntoView(maybeNode.node, maybeNode.index, 'center if outside', true);
- traceDispatch({
- type: 'set roving index',
- node: maybeNode.node,
- index: maybeNode.index,
- action_source: 'click',
- });
- setRowAsFocused(
- maybeNode.node,
- null,
- traceStateRef.current.search.resultsLookup,
- null,
- 0
- );
- if (traceStateRef.current.search.resultsLookup.has(maybeNode.node)) {
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: maybeNode.index,
- resultIteratorIndex: traceStateRef.current.search.resultsLookup.get(
- maybeNode.node
- )!,
- });
- } else if (traceStateRef.current.search.resultIteratorIndex !== null) {
- traceDispatch({type: 'clear search iterator index'});
- }
- }
- });
- },
- [
- api,
- props.organization,
- setRowAsFocused,
- scrollRowIntoView,
- tree,
- traceDispatch,
- forceRerender,
- ]
- );
- // Unlike onTabScrollToNode, this function does not set the node as the current
- // focused node, but rather scrolls the node into view and sets the roving index to the node.
- const onScrollToNode = useCallback(
- (node: TraceTreeNode<TraceTree.NodeValue>) => {
- TraceTree.ExpandToPath(tree, node.path, forceRerender, {
- api,
- organization: props.organization,
- }).then(maybeNode => {
- if (maybeNode) {
- previouslyFocusedNodeRef.current = null;
- scrollRowIntoView(maybeNode.node, maybeNode.index, 'center if outside', true);
- traceDispatch({
- type: 'set roving index',
- node: maybeNode.node,
- index: maybeNode.index,
- action_source: 'click',
- });
- if (traceStateRef.current.search.resultsLookup.has(maybeNode.node)) {
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: maybeNode.index,
- resultIteratorIndex: traceStateRef.current.search.resultsLookup.get(
- maybeNode.node
- )!,
- });
- } else if (traceStateRef.current.search.resultIteratorIndex !== null) {
- traceDispatch({type: 'clear search iterator index'});
- }
- }
- });
- },
- [api, props.organization, scrollRowIntoView, tree, traceDispatch, forceRerender]
- );
- // Callback that is invoked when the trace loads and reaches its initialied state,
- // that is when the trace tree data and any data that the trace depends on is loaded,
- // but the trace is not yet rendered in the view.
- const onTraceLoad = useCallback(
- (
- _trace: TraceTree,
- nodeToScrollTo: TraceTreeNode<TraceTree.NodeValue> | null,
- indexOfNodeToScrollTo: number | null
- ) => {
- scrollQueueRef.current = null;
- const query = qs.parse(location.search);
- if (query.fov && typeof query.fov === 'string') {
- viewManager.maybeInitializeTraceViewFromQS(query.fov);
- }
- if (nodeToScrollTo !== null && indexOfNodeToScrollTo !== null) {
- // At load time, we want to scroll the row into view, but we need to wait for the view
- // to initialize before we can do that. We listen for the 'initialize virtualized list' and scroll
- // to the row in the view if it is not in view yet. If its in the view, then scroll to it immediately.
- traceScheduler.once('initialize virtualized list', () => {
- function onTargetRowMeasure() {
- if (!nodeToScrollTo || !viewManager.row_measurer.cache.has(nodeToScrollTo)) {
- return;
- }
- viewManager.row_measurer.off('row measure end', onTargetRowMeasure);
- if (viewManager.isOutsideOfView(nodeToScrollTo)) {
- viewManager.scrollRowIntoViewHorizontally(
- nodeToScrollTo!,
- 0,
- 48,
- 'measured'
- );
- }
- }
- viewManager.scrollToRow(indexOfNodeToScrollTo, 'center');
- viewManager.row_measurer.on('row measure end', onTargetRowMeasure);
- previouslyScrolledToNodeRef.current = nodeToScrollTo;
- setRowAsFocused(
- nodeToScrollTo,
- null,
- traceStateRef.current.search.resultsLookup,
- indexOfNodeToScrollTo
- );
- traceDispatch({
- type: 'set roving index',
- node: nodeToScrollTo,
- index: indexOfNodeToScrollTo,
- action_source: 'load',
- });
- });
- }
- if (traceStateRef.current.search.query) {
- onTraceSearch(traceStateRef.current.search.query, nodeToScrollTo, 'persist');
- }
- },
- [setRowAsFocused, traceDispatch, onTraceSearch, viewManager, traceScheduler]
- );
- // Setup the middleware for the trace reducer
- useLayoutEffect(() => {
- const beforeTraceNextStateDispatch: DispatchingReducerMiddleware<
- typeof TraceReducer
- >['before next state'] = (prevState, nextState, action) => {
- // This effect is responsible fo syncing the keyboard interactions with the search results,
- // we observe the changes to the roving tab index and search results and react by syncing the state.
- const {node: nextRovingNode, index: nextRovingTabIndex} = nextState.rovingTabIndex;
- const {resultIndex: nextSearchResultIndex} = nextState.search;
- if (
- nextRovingNode &&
- action.type === 'set roving index' &&
- action.action_source !== 'click' &&
- typeof nextRovingTabIndex === 'number' &&
- prevState.rovingTabIndex.node !== nextRovingNode
- ) {
- // When the roving tabIndex updates mark the node as focused and sync search results
- setRowAsFocused(
- nextRovingNode,
- null,
- nextState.search.resultsLookup,
- nextRovingTabIndex
- );
- if (action.type === 'set roving index' && action.action_source === 'keyboard') {
- scrollRowIntoView(nextRovingNode, nextRovingTabIndex, undefined);
- }
- if (nextState.search.resultsLookup.has(nextRovingNode)) {
- const idx = nextState.search.resultsLookup.get(nextRovingNode)!;
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: nextRovingTabIndex,
- resultIteratorIndex: idx,
- });
- } else if (nextState.search.resultIteratorIndex !== null) {
- traceDispatch({type: 'clear search iterator index'});
- }
- } else if (
- typeof nextSearchResultIndex === 'number' &&
- prevState.search.resultIndex !== nextSearchResultIndex &&
- action.type !== 'set search iterator index'
- ) {
- // If the search result index changes, mark the node as focused and scroll it into view
- const nextNode = tree.list[nextSearchResultIndex];
- setRowAsFocused(
- nextNode,
- null,
- nextState.search.resultsLookup,
- nextSearchResultIndex
- );
- scrollRowIntoView(nextNode, nextSearchResultIndex, 'center if outside');
- }
- };
- traceStateEmitter.on('before next state', beforeTraceNextStateDispatch);
- return () => {
- traceStateEmitter.off('before next state', beforeTraceNextStateDispatch);
- };
- }, [
- tree,
- onTraceSearch,
- traceStateEmitter,
- traceDispatch,
- setRowAsFocused,
- scrollRowIntoView,
- ]);
- // Setup the middleware for the view manager and store the list width as a preference
- useLayoutEffect(() => {
- function onDividerResizeEnd(list_width: number) {
- traceDispatch({
- type: 'set list width',
- payload: list_width,
- });
- }
- traceScheduler.on('divider resize end', onDividerResizeEnd);
- return () => {
- traceScheduler.off('divider resize end', onDividerResizeEnd);
- };
- }, [traceScheduler, traceDispatch]);
- // Sync part of the state with the URL
- const traceQueryStateSync = useMemo(() => {
- return {search: traceState.search.query};
- }, [traceState.search.query]);
- useTraceQueryParamStateSync(traceQueryStateSync);
- const [traceGridRef, setTraceGridRef] = useState<HTMLElement | null>(null);
- // Memoized because it requires tree traversal
- const shape = useMemo(() => tree.shape, [tree]);
- useEffect(() => {
- if (tree.type !== 'trace') {
- return;
- }
- logTraceMetadata(tree, projects, props.organization);
- }, [tree, projects, props.organization]);
- useLayoutEffect(() => {
- if (tree.type !== 'trace') {
- return undefined;
- }
- traceScheduler.dispatch('initialize trace space', [
- tree.root.space[0],
- 0,
- tree.root.space[1],
- 1,
- ]);
- // Whenever the timeline changes, update the trace space and trigger a redraw
- const onTraceTimelineChange = (s: [number, number]) => {
- traceScheduler.dispatch('set trace space', [s[0], 0, s[1], 1]);
- };
- tree.on('trace timeline change', onTraceTimelineChange);
- return () => {
- tree.off('trace timeline change', onTraceTimelineChange);
- };
- }, [viewManager, traceScheduler, tree]);
- return (
- <Fragment>
- <TraceTypeWarnings
- tree={tree}
- traceSlug={props.traceSlug}
- organization={organization}
- />
- <TraceToolbar>
- <TraceSearchInput onTraceSearch={onTraceSearch} organization={organization} />
- <TraceResetZoomButton
- viewManager={viewManager}
- organization={props.organization}
- />
- <TraceShortcuts />
- </TraceToolbar>
- <TraceGrid layout={traceState.preferences.layout} ref={setTraceGridRef}>
- <Trace
- trace={tree}
- rerender={rerender}
- trace_id={props.traceSlug}
- scrollQueueRef={scrollQueueRef}
- initializedRef={initializedRef}
- onRowClick={onRowClick}
- onTraceLoad={onTraceLoad}
- onTraceSearch={onTraceSearch}
- previouslyFocusedNodeRef={previouslyFocusedNodeRef}
- manager={viewManager}
- scheduler={traceScheduler}
- forceRerender={forceRender}
- />
- {tree.type === 'error' ? (
- <TraceError />
- ) : tree.type === 'empty' ? (
- <TraceEmpty />
- ) : tree.type === 'loading' ||
- (scrollQueueRef.current && tree.type !== 'trace') ? (
- <TraceLoading />
- ) : null}
- <TraceDrawer
- replayRecord={props.replayRecord}
- metaResults={props.metaResults}
- traceType={shape}
- trace={tree}
- traceGridRef={traceGridRef}
- traces={props.trace ?? null}
- manager={viewManager}
- scheduler={traceScheduler}
- onTabScrollToNode={onTabScrollToNode}
- onScrollToNode={onScrollToNode}
- rootEventResults={props.rootEvent}
- traceEventView={props.traceEventView}
- />
- </TraceGrid>
- </Fragment>
- );
- }
- function TraceResetZoomButton(props: {
- organization: Organization;
- viewManager: VirtualizedViewManager;
- }) {
- const onResetZoom = useCallback(() => {
- traceAnalytics.trackResetZoom(props.organization);
- props.viewManager.resetZoom();
- }, [props.viewManager, props.organization]);
- return (
- <ResetZoomButton
- size="xs"
- onClick={onResetZoom}
- ref={props.viewManager.registerResetZoomRef}
- >
- {t('Reset Zoom')}
- </ResetZoomButton>
- );
- }
- const ResetZoomButton = styled(Button)`
- transition: opacity 0.2s 0.5s ease-in-out;
- &[disabled] {
- cursor: not-allowed;
- opacity: 0.65;
- }
- `;
- const TraceExternalLayout = styled('div')`
- display: flex;
- flex-direction: column;
- flex: 1 1 100%;
- ~ footer {
- display: none;
- }
- `;
- const TraceInnerLayout = styled('div')`
- display: flex;
- flex-direction: column;
- flex: 1 1 100%;
- padding: ${space(2)};
- background-color: ${p => p.theme.background};
- `;
- const TraceToolbar = styled('div')`
- flex-grow: 0;
- display: grid;
- grid-template-columns: 1fr min-content min-content;
- gap: ${space(1)};
- `;
- const TraceGrid = styled('div')<{
- layout: 'drawer bottom' | 'drawer left' | 'drawer right';
- }>`
- border: 1px solid ${p => p.theme.border};
- flex: 1 1 100%;
- display: grid;
- border-radius: ${p => p.theme.borderRadius};
- overflow: hidden;
- position: relative;
- /* false positive for grid layout */
- /* stylelint-disable */
- grid-template-areas: ${p =>
- p.layout === 'drawer bottom'
- ? `
- 'trace'
- 'drawer'
- `
- : p.layout === 'drawer left'
- ? `'drawer trace'`
- : `'trace drawer'`};
- grid-template-columns: ${p =>
- p.layout === 'drawer bottom'
- ? '1fr'
- : p.layout === 'drawer left'
- ? 'min-content 1fr'
- : '1fr min-content'};
- grid-template-rows: 1fr auto;
- `;
- const LoadingContainer = styled('div')<{animate: boolean; error?: boolean}>`
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- left: 50%;
- top: 50%;
- position: absolute;
- height: auto;
- font-size: ${p => p.theme.fontSizeMedium};
- color: ${p => p.theme.gray300};
- z-index: 30;
- padding: 24px;
- background-color: ${p => p.theme.background};
- border-radius: ${p => p.theme.borderRadius};
- border: 1px solid ${p => p.theme.border};
- transform-origin: 50% 50%;
- transform: translate(-50%, -50%);
- animation: ${p =>
- p.animate
- ? `${p.error ? 'showLoadingContainerShake' : 'showLoadingContainer'} 300ms cubic-bezier(0.61, 1, 0.88, 1) forwards`
- : 'none'};
- @keyframes showLoadingContainer {
- from {
- opacity: 0.6;
- transform: scale(0.99) translate(-50%, -50%);
- }
- to {
- opacity: 1;
- transform: scale(1) translate(-50%, -50%);
- }
- }
- @keyframes showLoadingContainerShake {
- 0% {
- transform: translate(-50%, -50%);
- }
- 25% {
- transform: translate(-51%, -50%);
- }
- 75% {
- transform: translate(-49%, -50%);
- }
- 100% {
- transform: translate(-50%, -50%);
- }
- }
- `;
- function TraceLoading() {
- return (
- // Dont flash the animation on load because it's annoying
- <LoadingContainer animate={false}>
- <NoMarginIndicator size={24}>
- <div>{t('Assembling the trace')}</div>
- </NoMarginIndicator>
- </LoadingContainer>
- );
- }
- function TraceError() {
- const linkref = useRef<HTMLAnchorElement>(null);
- const feedback = useFeedbackWidget({buttonRef: linkref});
- useEffect(() => {
- traceAnalytics.trackFailedToFetchTraceState();
- }, []);
- return (
- <LoadingContainer animate error>
- <div>{t('Ughhhhh, we failed to load your trace...')}</div>
- <div>
- {t('Seeing this often? Send us ')}
- {feedback ? (
- <a href="#" ref={linkref}>
- {t('feedback')}
- </a>
- ) : (
- <a href="mailto:support@sentry.io?subject=Trace%20fails%20to%20load">
- {t('feedback')}
- </a>
- )}
- </div>
- </LoadingContainer>
- );
- }
- function TraceEmpty() {
- const linkref = useRef<HTMLAnchorElement>(null);
- const feedback = useFeedbackWidget({buttonRef: linkref});
- useEffect(() => {
- traceAnalytics.trackEmptyTraceState();
- }, []);
- return (
- <LoadingContainer animate>
- <div>{t('This trace does not contain any data?!')}</div>
- <div>
- {t('Seeing this often? Send us ')}
- {feedback ? (
- <a href="#" ref={linkref}>
- {t('feedback')}
- </a>
- ) : (
- <a href="mailto:support@sentry.io?subject=Trace%20does%20not%20contain%20data">
- {t('feedback')}
- </a>
- )}
- </div>
- </LoadingContainer>
- );
- }
- const NoMarginIndicator = styled(LoadingIndicator)`
- margin: 0;
- `;
|