123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- import styled from '@emotion/styled';
- import ErrorBoundary from 'sentry/components/errorBoundary';
- import ReplayTimeline from 'sentry/components/replays/breadcrumbs/replayTimeline';
- import ReplayView from 'sentry/components/replays/replayView';
- import {space} from 'sentry/styles/space';
- import useFullscreen from 'sentry/utils/replays/hooks/useFullscreen';
- import {LayoutKey} from 'sentry/utils/replays/hooks/useReplayLayout';
- import FluidHeight from 'sentry/views/replays/detail/layout/fluidHeight';
- import FluidPanel from 'sentry/views/replays/detail/layout/fluidPanel';
- import FocusArea from 'sentry/views/replays/detail/layout/focusArea';
- import FocusTabs from 'sentry/views/replays/detail/layout/focusTabs';
- import MeasureSize from 'sentry/views/replays/detail/layout/measureSize';
- import SidebarArea from 'sentry/views/replays/detail/layout/sidebarArea';
- import SideTabs from 'sentry/views/replays/detail/layout/sideTabs';
- import SplitPanel from 'sentry/views/replays/detail/layout/splitPanel';
- const MIN_VIDEO_WIDTH = 325;
- const MIN_CONTENT_WIDTH = 340;
- const MIN_SIDEBAR_WIDTH = 325;
- const MIN_VIDEO_HEIGHT = 200;
- const MIN_CONTENT_HEIGHT = 180;
- const MIN_SIDEBAR_HEIGHT = 120;
- const DIVIDER_SIZE = 16;
- type Props = {
- layout?: LayoutKey;
- };
- function ReplayLayout({layout = LayoutKey.TOPBAR}: Props) {
- const {ref: fullscreenRef, toggle: toggleFullscreen} = useFullscreen();
- const timeline = (
- <ErrorBoundary mini>
- <ReplayTimeline />
- </ErrorBoundary>
- );
- const video = (
- <VideoSection ref={fullscreenRef}>
- <ErrorBoundary mini>
- <ReplayView toggleFullscreen={toggleFullscreen} />
- </ErrorBoundary>
- </VideoSection>
- );
- if (layout === LayoutKey.VIDEO_ONLY) {
- return (
- <BodyContent>
- {timeline}
- {video}
- </BodyContent>
- );
- }
- const focusArea = (
- <ErrorBoundary mini>
- <FluidPanel title={<SmallMarginFocusTabs />}>
- <FocusArea />
- </FluidPanel>
- </ErrorBoundary>
- );
- const sidebarArea = (
- <ErrorBoundary mini>
- <FluidPanel title={<SmallMarginSideTabs />}>
- <SidebarArea />
- </FluidPanel>
- </ErrorBoundary>
- );
- if (layout === LayoutKey.NO_VIDEO) {
- return (
- <BodyContent>
- {timeline}
- <MeasureSize>
- {({width}) => (
- <SplitPanel
- key={layout}
- availableSize={width}
- left={{
- content: focusArea,
- default: (width - DIVIDER_SIZE) * 0.9,
- min: 0,
- max: width - DIVIDER_SIZE,
- }}
- right={sidebarArea}
- />
- )}
- </MeasureSize>
- </BodyContent>
- );
- }
- if (layout === LayoutKey.SIDEBAR_LEFT) {
- return (
- <BodyContent>
- {timeline}
- <MeasureSize>
- {({height, width}) => (
- <SplitPanel
- key={layout}
- availableSize={width}
- left={{
- content: (
- <SplitPanel
- key={layout}
- availableSize={height}
- top={{
- content: video,
- default: (height - DIVIDER_SIZE) * 0.65,
- min: MIN_CONTENT_HEIGHT,
- max: height - DIVIDER_SIZE - MIN_SIDEBAR_HEIGHT,
- }}
- bottom={sidebarArea}
- />
- ),
- default: (width - DIVIDER_SIZE) * 0.5,
- min: MIN_SIDEBAR_WIDTH,
- max: width - DIVIDER_SIZE - MIN_CONTENT_WIDTH,
- }}
- right={focusArea}
- />
- )}
- </MeasureSize>
- </BodyContent>
- );
- }
- // layout === 'topbar'
- return (
- <BodyContent>
- {timeline}
- <MeasureSize>
- {({height, width}) => (
- <SplitPanel
- key={layout}
- availableSize={height}
- top={{
- content: (
- <SplitPanel
- availableSize={width}
- left={{
- content: video,
- default: (width - DIVIDER_SIZE) * 0.5,
- min: MIN_VIDEO_WIDTH,
- max: width - DIVIDER_SIZE - MIN_SIDEBAR_WIDTH,
- }}
- right={sidebarArea}
- />
- ),
- default: (height - DIVIDER_SIZE) * 0.5,
- min: MIN_VIDEO_HEIGHT,
- max: height - DIVIDER_SIZE - MIN_CONTENT_HEIGHT,
- }}
- bottom={focusArea}
- />
- )}
- </MeasureSize>
- </BodyContent>
- );
- }
- const BodyContent = styled('main')`
- background: ${p => p.theme.background};
- width: 100%;
- height: 100%;
- display: grid;
- grid-template-rows: auto 1fr;
- overflow: hidden;
- padding: ${space(2)};
- `;
- const SmallMarginFocusTabs = styled(FocusTabs)`
- margin-bottom: ${space(1)};
- `;
- const SmallMarginSideTabs = styled(SideTabs)`
- margin-bottom: ${space(1)};
- `;
- const VideoSection = styled(FluidHeight)`
- background: ${p => p.theme.background};
- gap: ${space(1)};
- :fullscreen {
- padding: ${space(1)};
- }
- `;
- export default ReplayLayout;
|