123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- import {Fragment} from 'react';
- import type {RouteComponentProps} from 'react-router';
- import DetailedError from 'sentry/components/errors/detailedError';
- import NotFound from 'sentry/components/errors/notFound';
- import * as Layout from 'sentry/components/layouts/thirds';
- import List from 'sentry/components/list';
- import ListItem from 'sentry/components/list/listItem';
- import {
- Provider as ReplayContextProvider,
- useReplayContext,
- } from 'sentry/components/replays/replayContext';
- import {t} from 'sentry/locale';
- import useInitialTimeOffsetMs, {
- TimeOffsetLocationQueryParams,
- } from 'sentry/utils/replays/hooks/useInitialTimeOffsetMs';
- import useReplayData from 'sentry/utils/replays/hooks/useReplayData';
- import useReplayLayout from 'sentry/utils/replays/hooks/useReplayLayout';
- import useReplayPageview from 'sentry/utils/replays/hooks/useReplayPageview';
- import useOrganization from 'sentry/utils/useOrganization';
- import ReplaysLayout from 'sentry/views/replays/detail/layout';
- import Page from 'sentry/views/replays/detail/page';
- import ReplayTransactionContext from 'sentry/views/replays/detail/trace/replayTransactionContext';
- import type {ReplayError, ReplayRecord} from 'sentry/views/replays/types';
- type Props = RouteComponentProps<
- {replaySlug: string},
- {},
- any,
- TimeOffsetLocationQueryParams
- >;
- function ReplayDetails({params: {replaySlug}}: Props) {
- useReplayPageview('replay.details-time-spent');
- const organization = useOrganization();
- const {slug: orgSlug} = organization;
- // TODO: replayId is known ahead of time and useReplayData is parsing it from the replaySlug
- // once we fix the route params and links we should fix this to accept replayId and stop returning it
- const {
- fetching,
- onRetry,
- replay,
- replayRecord,
- fetchError,
- projectSlug,
- replayId,
- replayErrors,
- } = useReplayData({
- replaySlug,
- orgSlug,
- });
- const initialTimeOffsetMs = useInitialTimeOffsetMs({
- orgSlug,
- projectSlug,
- replayId,
- replayStartTimestampMs: replayRecord?.started_at.getTime(),
- });
- if (fetchError) {
- if (fetchError.statusText === 'Not Found') {
- return (
- <Page
- orgSlug={orgSlug}
- replayRecord={replayRecord}
- projectSlug={projectSlug}
- replayErrors={replayErrors}
- >
- <Layout.Page withPadding>
- <NotFound />
- </Layout.Page>
- </Page>
- );
- }
- const reasons = [
- t('The replay is still processing'),
- t('The replay has been deleted by a member in your organization'),
- t('There is an internal systems error'),
- ];
- return (
- <Page
- orgSlug={orgSlug}
- replayRecord={replayRecord}
- projectSlug={projectSlug}
- replayErrors={replayErrors}
- >
- <Layout.Page>
- <DetailedError
- onRetry={onRetry}
- hideSupportLinks
- heading={t('There was an error while fetching this Replay')}
- message={
- <Fragment>
- <p>{t('This could be due to these reasons:')}</p>
- <List symbol="bullet">
- {reasons.map((reason, i) => (
- <ListItem key={i}>{reason}</ListItem>
- ))}
- </List>
- </Fragment>
- }
- />
- </Layout.Page>
- </Page>
- );
- }
- if (!fetching && replay && replay.getRRWebEvents().length < 2) {
- return (
- <Page
- orgSlug={orgSlug}
- replayRecord={replayRecord}
- projectSlug={projectSlug}
- replayErrors={replayErrors}
- >
- <DetailedError
- hideSupportLinks
- heading={t('Error loading replay')}
- message={
- <Fragment>
- <p>
- {t(
- 'Expected two or more replay events. This Replay may not have captured any user actions.'
- )}
- </p>
- <p>
- {t(
- 'Or there may be an issue loading the actions from the server, click to try loading the Replay again.'
- )}
- </p>
- </Fragment>
- }
- />
- </Page>
- );
- }
- return (
- <ReplayContextProvider
- isFetching={fetching}
- replay={replay}
- initialTimeOffsetMs={initialTimeOffsetMs}
- >
- <ReplayTransactionContext replayRecord={replayRecord}>
- <DetailsInsideContext
- orgSlug={orgSlug}
- replayRecord={replayRecord}
- projectSlug={projectSlug}
- replayErrors={replayErrors}
- />
- </ReplayTransactionContext>
- </ReplayContextProvider>
- );
- }
- function DetailsInsideContext({
- orgSlug,
- replayRecord,
- projectSlug,
- replayErrors,
- }: {
- orgSlug: string;
- projectSlug: string | null;
- replayErrors: ReplayError[];
- replayRecord: ReplayRecord | undefined;
- }) {
- const {getLayout} = useReplayLayout();
- const {replay} = useReplayContext();
- return (
- <Page
- orgSlug={orgSlug}
- crumbs={replay?.getNavCrumbs()}
- replayRecord={replayRecord}
- projectSlug={projectSlug}
- replayErrors={replayErrors}
- >
- <ReplaysLayout layout={getLayout()} />
- </Page>
- );
- }
- export default ReplayDetails;
|