123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- import {ReactNode} from 'react';
- import styled from '@emotion/styled';
- import UserBadge from 'sentry/components/idBadge/userBadge';
- import * as Layout from 'sentry/components/layouts/thirds';
- import DeleteButton from 'sentry/components/replays/header/deleteButton';
- import DetailsPageBreadcrumbs from 'sentry/components/replays/header/detailsPageBreadcrumbs';
- import FeedbackButton from 'sentry/components/replays/header/feedbackButton';
- import HeaderPlaceholder from 'sentry/components/replays/header/headerPlaceholder';
- import ReplayMetaData from 'sentry/components/replays/header/replayMetaData';
- import ShareButton from 'sentry/components/replays/shareButton';
- import FrameWalker from 'sentry/components/replays/walker/frameWalker';
- import StringWalker from 'sentry/components/replays/walker/stringWalker';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {ReplayFrame} from 'sentry/utils/replays/types';
- import type {ReplayError, ReplayRecord} from 'sentry/views/replays/types';
- type Props = {
- children: ReactNode;
- orgSlug: string;
- projectSlug: string | null;
- replayErrors: ReplayError[];
- replayRecord: undefined | ReplayRecord;
- frames?: ReplayFrame[];
- };
- function Page({
- children,
- frames,
- orgSlug,
- replayRecord,
- projectSlug,
- replayErrors,
- }: Props) {
- const title = replayRecord
- ? `${replayRecord.id} — Session Replay — ${orgSlug}`
- : `Session Replay — ${orgSlug}`;
- const header = (
- <Header>
- <DetailsPageBreadcrumbs orgSlug={orgSlug} replayRecord={replayRecord} />
- <ButtonActionsWrapper>
- <ShareButton />
- <FeedbackButton />
- {replayRecord?.id && projectSlug && (
- <DeleteButton replayId={replayRecord.id} projectSlug={projectSlug} />
- )}
- </ButtonActionsWrapper>
- {replayRecord ? (
- <UserBadge
- avatarSize={32}
- displayName={
- <Layout.Title>
- {replayRecord.user.display_name || t('Unknown User')}
- </Layout.Title>
- }
- user={{
- name: replayRecord.user.display_name || '',
- email: replayRecord.user.email || '',
- username: replayRecord.user.username || '',
- ip_address: replayRecord.user.ip || '',
- id: replayRecord.user.id || '',
- }}
- // this is the subheading for the avatar, so displayEmail in this case is a misnomer
- displayEmail={
- <Cols>
- {frames?.length ? (
- <FrameWalker replayRecord={replayRecord} frames={frames} />
- ) : (
- <StringWalker urls={replayRecord.urls} />
- )}
- </Cols>
- }
- />
- ) : (
- <HeaderPlaceholder width="100%" height="58px" />
- )}
- <ReplayMetaData replayRecord={replayRecord} replayErrors={replayErrors} />
- </Header>
- );
- return (
- <SentryDocumentTitle title={title}>
- <FullViewport>
- {header}
- {children}
- </FullViewport>
- </SentryDocumentTitle>
- );
- }
- const Header = styled(Layout.Header)`
- gap: ${space(1)};
- padding-bottom: ${space(1.5)};
- @media (min-width: ${p => p.theme.breakpoints.medium}) {
- gap: ${space(1)} ${space(3)};
- padding: ${space(2)} ${space(2)} ${space(1.5)} ${space(2)};
- }
- `;
- const Cols = styled('div')`
- display: flex;
- flex-direction: column;
- gap: ${space(0.25)};
- `;
- // TODO(replay); This could make a lot of sense to put inside HeaderActions by default
- const ButtonActionsWrapper = styled(Layout.HeaderActions)`
- flex-direction: row;
- justify-content: flex-end;
- gap: ${space(1)};
- @media (max-width: ${p => p.theme.breakpoints.medium}) {
- margin-bottom: 0;
- }
- `;
- const FullViewport = styled('div')`
- height: 100vh;
- width: 100%;
- display: grid;
- grid-template-rows: auto 1fr;
- overflow: hidden;
- /*
- * The footer component is a sibling of this div.
- * Remove it so the replay can take up the
- * entire screen.
- */
- ~ footer {
- display: none;
- }
- /*
- TODO: Set \`body { overflow: hidden; }\` so that the body doesn't wiggle
- when you try to scroll something that is non-scrollable.
- */
- `;
- export default Page;
|