123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import type {LocationDescriptorObject} from 'history';
- import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse';
- import {getEventTimestamp} from 'sentry/components/quickTrace/utils';
- import type {Event} from 'sentry/types/event';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import {getTraceDetailsUrl} from './utils';
- type Props = {
- children: JSX.Element;
- event: Event;
- };
- function TraceDetailsRouting(props: Props) {
- const {event, children} = props;
- const organization = useOrganization();
- const location = useLocation();
- const datetimeSelection = normalizeDateTimeParams(location.query);
- const traceId = event.contexts?.trace?.trace_id ?? '';
- if (location.query?.legacy) {
- return children;
- }
- if (organization.features.includes('trace-view-v1')) {
- if (event?.groupID && event?.eventID) {
- const issuesLocation = `/organizations/${organization.slug}/issues/${event.groupID}/events/${event.eventID}`;
- browserHistory.replace({
- pathname: issuesLocation,
- });
- } else {
- const traceDetailsLocation: LocationDescriptorObject = getTraceDetailsUrl({
- organization,
- traceSlug: traceId,
- dateSelection: datetimeSelection,
- timestamp: getEventTimestamp(event),
- eventId: event.eventID,
- location,
- });
- const query = {...traceDetailsLocation.query};
- if (location.hash.includes('span')) {
- const spanHashValue = location.hash
- .split('#')
- .filter(value => value.includes('span'))[0];
- const spanId = spanHashValue.split('-')[1];
- if (spanId) {
- query.node = [`span-${spanId}`, `txn-${event.eventID}`];
- }
- }
- browserHistory.replace({
- pathname: traceDetailsLocation.pathname,
- query,
- });
- }
- }
- return children;
- }
- export default TraceDetailsRouting;
|