123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- import {useTheme} from '@emotion/react';
- import styled from '@emotion/styled';
- import Avatar from 'sentry/components/avatar';
- import UserBadge from 'sentry/components/idBadge/userBadge';
- import Link from 'sentry/components/links/link';
- import ContextIcon from 'sentry/components/replays/contextIcon';
- import {formatTime} from 'sentry/components/replays/utils';
- import StringWalker from 'sentry/components/replays/walker/stringWalker';
- import ScoreBar from 'sentry/components/scoreBar';
- import TimeSince from 'sentry/components/timeSince';
- import {CHART_PALETTE} from 'sentry/constants/chartPalette';
- import {IconCalendar, IconDelete, IconFire} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space, ValidSize} from 'sentry/styles/space';
- import type {Organization} from 'sentry/types';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import EventView from 'sentry/utils/discover/eventView';
- import {spanOperationRelativeBreakdownRenderer} from 'sentry/utils/discover/fieldRenderers';
- import {getShortEventId} from 'sentry/utils/events';
- import {useLocation} from 'sentry/utils/useLocation';
- import useMedia from 'sentry/utils/useMedia';
- import useProjects from 'sentry/utils/useProjects';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import type {ReplayListRecordWithTx} from 'sentry/views/performance/transactionSummary/transactionReplays/useReplaysWithTxData';
- import type {ReplayListRecord} from 'sentry/views/replays/types';
- type Props = {
- replay: ReplayListRecord | ReplayListRecordWithTx;
- };
- function getUserBadgeUser(replay: Props['replay']) {
- return replay.is_archived
- ? {
- username: '',
- email: '',
- id: '',
- ip_address: '',
- name: '',
- }
- : {
- username: replay.user?.display_name || '',
- email: replay.user?.email || '',
- id: replay.user?.id || '',
- ip_address: replay.user?.ip || '',
- name: replay.user?.username || '',
- };
- }
- export function ReplayCell({
- eventView,
- organization,
- referrer,
- replay,
- showUrl,
- }: Props & {
- eventView: EventView;
- organization: Organization;
- referrer: string;
- showUrl: boolean;
- }) {
- const {projects} = useProjects();
- const project = projects.find(p => p.id === replay.project_id);
- const replayDetails = {
- pathname: normalizeUrl(`/organizations/${organization.slug}/replays/${replay.id}/`),
- query: {
- referrer,
- ...eventView.generateQueryStringObject(),
- },
- };
- const trackNavigationEvent = () =>
- trackAnalytics('replay.list-navigate-to-details', {
- project_id: project?.id,
- platform: project?.platform,
- organization,
- referrer,
- });
- if (replay.is_archived) {
- return (
- <Item isArchived={replay.is_archived}>
- <Row gap={1}>
- <StyledIconDelete color="gray500" size="md" />
- <div>
- <Row gap={0.5}>{t('Deleted Replay')}</Row>
- <Row gap={0.5}>
- {project ? <Avatar size={12} project={project} /> : null}
- {getShortEventId(replay.id)}
- </Row>
- </div>
- </Row>
- </Item>
- );
- }
- const subText = (
- <Cols>
- {showUrl ? <StringWalker urls={replay.urls} /> : undefined}
- <Row gap={1}>
- <Row gap={0.5}>
- {project ? <Avatar size={12} project={project} /> : null}
- <Link to={replayDetails} onClick={trackNavigationEvent}>
- {getShortEventId(replay.id)}
- </Link>
- </Row>
- <Row gap={0.5}>
- <IconCalendar color="gray300" size="xs" />
- <TimeSince date={replay.started_at} />
- </Row>
- </Row>
- </Cols>
- );
- return (
- <Item>
- <UserBadgeFullWidth
- avatarSize={24}
- displayName={
- replay.is_archived ? (
- replay.user.display_name || t('Unknown User')
- ) : (
- <MainLink to={replayDetails} onClick={trackNavigationEvent}>
- {replay.user.display_name || t('Unknown User')}
- </MainLink>
- )
- }
- user={getUserBadgeUser(replay)}
- // this is the subheading for the avatar, so displayEmail in this case is a misnomer
- displayEmail={subText}
- />
- </Item>
- );
- }
- const StyledIconDelete = styled(IconDelete)`
- margin: ${space(0.25)};
- `;
- // Need to be full width for StringWalker to take up full width and truncate properly
- const UserBadgeFullWidth = styled(UserBadge)`
- width: 100%;
- `;
- const Cols = styled('div')`
- display: flex;
- flex-direction: column;
- gap: ${space(0.5)};
- width: 100%;
- `;
- const Row = styled('div')<{gap: ValidSize; minWidth?: number}>`
- display: flex;
- gap: ${p => space(p.gap)};
- align-items: center;
- ${p => (p.minWidth ? `min-width: ${p.minWidth}px;` : '')}
- `;
- const MainLink = styled(Link)`
- font-size: ${p => p.theme.fontSizeLarge};
- `;
- export function TransactionCell({
- organization,
- replay,
- }: Props & {organization: Organization}) {
- const location = useLocation();
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- const hasTxEvent = 'txEvent' in replay;
- const txDuration = hasTxEvent ? replay.txEvent?.['transaction.duration'] : undefined;
- return hasTxEvent ? (
- <SpanOperationBreakdown>
- {txDuration ? <div>{txDuration}ms</div> : null}
- {spanOperationRelativeBreakdownRenderer(
- replay.txEvent,
- {organization, location},
- {enableOnClick: false}
- )}
- </SpanOperationBreakdown>
- ) : null;
- }
- export function OSCell({replay}: Props) {
- const {name, version} = replay.os ?? {};
- const theme = useTheme();
- const hasRoomForColumns = useMedia(`(min-width: ${theme.breakpoints.large})`);
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- return (
- <Item>
- <ContextIcon
- name={name ?? ''}
- version={version && hasRoomForColumns ? version : undefined}
- showVersion={false}
- />
- </Item>
- );
- }
- export function BrowserCell({replay}: Props) {
- const {name, version} = replay.browser ?? {};
- const theme = useTheme();
- const hasRoomForColumns = useMedia(`(min-width: ${theme.breakpoints.large})`);
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- return (
- <Item>
- <ContextIcon
- name={name ?? ''}
- version={version && hasRoomForColumns ? version : undefined}
- showVersion={false}
- />
- </Item>
- );
- }
- export function DurationCell({replay}: Props) {
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- return (
- <Item>
- <Time>{formatTime(replay.duration.asMilliseconds())}</Time>
- </Item>
- );
- }
- export function RageClickCountCell({replay}: Props) {
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- return (
- <Item data-test-id="replay-table-count-rage-clicks">
- {replay.count_rage_clicks ? (
- <Count>{replay.count_rage_clicks}</Count>
- ) : (
- <Count>0</Count>
- )}
- </Item>
- );
- }
- export function DeadClickCountCell({replay}: Props) {
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- return (
- <Item data-test-id="replay-table-count-dead-clicks">
- {replay.count_dead_clicks ? (
- <Count>{replay.count_dead_clicks}</Count>
- ) : (
- <Count>0</Count>
- )}
- </Item>
- );
- }
- export function ErrorCountCell({replay}: Props) {
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- return (
- <Item data-test-id="replay-table-count-errors">
- {replay.count_errors ? (
- <ErrorCount>
- <IconFire />
- {replay.count_errors}
- </ErrorCount>
- ) : (
- <Count>0</Count>
- )}
- </Item>
- );
- }
- export function ActivityCell({replay}: Props) {
- if (replay.is_archived) {
- return <Item isArchived />;
- }
- const scoreBarPalette = new Array(10).fill([CHART_PALETTE[0][0]]);
- return (
- <Item>
- <ScoreBar
- size={20}
- score={replay?.activity ?? 1}
- palette={scoreBarPalette}
- radius={0}
- />
- </Item>
- );
- }
- const Item = styled('div')<{isArchived?: boolean}>`
- display: flex;
- align-items: center;
- gap: ${space(1)};
- padding: ${space(1.5)};
- ${p => (p.isArchived ? 'opacity: 0.5;' : '')};
- `;
- const Count = styled('span')`
- font-variant-numeric: tabular-nums;
- `;
- const ErrorCount = styled(Count)`
- display: flex;
- align-items: center;
- gap: ${space(0.5)};
- color: ${p => p.theme.red400};
- `;
- const Time = styled('span')`
- font-variant-numeric: tabular-nums;
- `;
- const SpanOperationBreakdown = styled('div')`
- width: 100%;
- display: flex;
- flex-direction: column;
- gap: ${space(0.5)};
- color: ${p => p.theme.gray500};
- font-size: ${p => p.theme.fontSizeMedium};
- text-align: right;
- `;
|