123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- 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 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 type {ReplayRecord} from 'sentry/views/replays/types';
- import {getInitialTimeOffset} from 'sentry/views/replays/utils';
- type Props = RouteComponentProps<
- {replaySlug: string},
- {},
- any,
- {event_t: string; t: number}
- >;
- function ReplayDetails({
- location: {
- query: {
- event_t: eventTimestamp, // Timestamp of the event or activity that was selected
- t: initialTimeOffset, // Time, in seconds, where the video should start
- },
- },
- params: {replaySlug},
- }: Props) {
- useReplayPageview('replay.details-time-spent');
- const {slug: orgSlug} = useOrganization();
- const {fetching, onRetry, replay, replayRecord, fetchError} = useReplayData({
- replaySlug,
- orgSlug,
- });
- const startTimestampMs = replayRecord?.started_at.getTime() ?? 0;
- if (fetchError) {
- if (fetchError.statusText === 'Not Found') {
- return (
- <Page orgSlug={orgSlug} replayRecord={replayRecord}>
- <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}>
- <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}>
- <DetailedError
- hideSupportLinks
- heading={t('Expected two or more replay events')}
- message={
- <Fragment>
- <p>{t('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}
- initialTimeOffset={getInitialTimeOffset({
- eventTimestamp,
- initialTimeOffset,
- startTimestampMs,
- })}
- >
- <LoadedDetails orgSlug={orgSlug} replayRecord={replayRecord} />
- </ReplayContextProvider>
- );
- }
- function LoadedDetails({
- orgSlug,
- replayRecord,
- }: {
- orgSlug: string;
- replayRecord: ReplayRecord | undefined;
- }) {
- const {getLayout} = useReplayLayout();
- const {replay} = useReplayContext();
- return (
- <Page orgSlug={orgSlug} crumbs={replay?.getRawCrumbs()} replayRecord={replayRecord}>
- <ReplaysLayout layout={getLayout()} />
- </Page>
- );
- }
- export default ReplayDetails;
|