123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- 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 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 {PageContent} from 'sentry/styles/organization';
- 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 Layout from 'sentry/views/replays/detail/layout';
- import Page from 'sentry/views/replays/detail/page';
- import type {ReplayRecord} from 'sentry/views/replays/types';
- type Props = RouteComponentProps<
- {orgId: string; replaySlug: string},
- {},
- any,
- {t: number}
- >;
- function ReplayDetails({
- location: {
- query: {
- t: initialTimeOffset, // Time, in seconds, where the video should start
- },
- },
- params: {orgId: orgSlug, replaySlug},
- }: Props) {
- useReplayPageview();
- const {fetching, onRetry, replay, replayRecord, fetchError} = useReplayData({
- replaySlug,
- orgSlug,
- });
- if (!fetching && !replay && fetchError) {
- if (fetchError.statusText === 'Not Found') {
- return (
- <Page orgSlug={orgSlug} replayRecord={replayRecord}>
- <PageContent>
- <NotFound />
- </PageContent>
- </Page>
- );
- }
- const reasons = [
- t('The Replay is still processing and is on its way'),
- t('There is an internal systems error or active issue'),
- ];
- return (
- <Page orgSlug={orgSlug} replayRecord={replayRecord}>
- <PageContent>
- <DetailedError
- onRetry={onRetry}
- hideSupportLinks
- heading={t('There was an error while fetching this Replay')}
- message={
- <Fragment>
- <p>{t('This could be due to a couple of reasons:')}</p>
- <List symbol="bullet">
- {reasons.map((reason, i) => (
- <ListItem key={i}>{reason}</ListItem>
- ))}
- </List>
- </Fragment>
- }
- />
- </PageContent>
- </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 replay={replay} initialTimeOffset={initialTimeOffset}>
- <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}>
- <Layout layout={getLayout()} />
- </Page>
- );
- }
- export default ReplayDetails;
|