123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- import {useEffect, useMemo} from 'react';
- import styled from '@emotion/styled';
- import type {Location} from 'history';
- import * as Layout from 'sentry/components/layouts/thirds';
- import type {Group, Organization} from 'sentry/types';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import type EventView from 'sentry/utils/discover/eventView';
- import useReplayList from 'sentry/utils/replays/hooks/useReplayList';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import useReplaysFromIssue from 'sentry/views/issueDetails/groupReplays/useReplaysFromIssue';
- import ReplayTable from 'sentry/views/replays/replayTable';
- import {ReplayColumn} from 'sentry/views/replays/replayTable/types';
- import type {ReplayListLocationQuery} from 'sentry/views/replays/types';
- type Props = {
- group: Group;
- };
- const VISIBLE_COLUMNS = [
- ReplayColumn.REPLAY,
- ReplayColumn.OS,
- ReplayColumn.BROWSER,
- ReplayColumn.DURATION,
- ReplayColumn.COUNT_ERRORS,
- ReplayColumn.ACTIVITY,
- ];
- function GroupReplays({group}: Props) {
- const organization = useOrganization();
- const location = useLocation<ReplayListLocationQuery>();
- const {eventView, fetchError, isFetching, pageLinks} = useReplaysFromIssue({
- group,
- location,
- organization,
- });
- useEffect(() => {
- trackAnalytics('replay.render-issues-group-list', {
- project_id: group.project.id,
- platform: group.project.platform,
- organization,
- });
- // we only want to fire this event once
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
- if (!eventView) {
- return (
- <StyledLayoutPage withPadding>
- <ReplayTable
- fetchError={fetchError}
- isFetching={isFetching}
- replays={[]}
- sort={undefined}
- visibleColumns={VISIBLE_COLUMNS}
- showDropdownFilters={false}
- />
- </StyledLayoutPage>
- );
- }
- return (
- <GroupReplaysTable
- eventView={eventView}
- organization={organization}
- pageLinks={pageLinks}
- visibleColumns={VISIBLE_COLUMNS}
- />
- );
- }
- function GroupReplaysTable({
- eventView,
- organization,
- visibleColumns,
- }: {
- eventView: EventView;
- organization: Organization;
- pageLinks: string | null;
- visibleColumns: ReplayColumn[];
- }) {
- const location = useMemo(() => ({query: {}}) as Location<ReplayListLocationQuery>, []);
- const {replays, isFetching, fetchError} = useReplayList({
- eventView,
- location,
- organization,
- queryReferrer: 'issueReplays',
- });
- return (
- <StyledLayoutPage withPadding>
- <ReplayTable
- fetchError={fetchError}
- isFetching={isFetching}
- replays={replays}
- sort={undefined}
- visibleColumns={visibleColumns}
- showDropdownFilters={false}
- />
- </StyledLayoutPage>
- );
- }
- const StyledLayoutPage = styled(Layout.Page)`
- box-shadow: 0px 0px 1px ${p => p.theme.gray200};
- background-color: ${p => p.theme.background};
- `;
- export default GroupReplays;
|