123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- import {ComponentProps, Fragment, ReactNode, useEffect, useMemo} from 'react';
- import styled from '@emotion/styled';
- import {Location} from 'history';
- import {LinkButton} from 'sentry/components/button';
- import {IconClose, IconSearch} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import 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 ReplayTable from 'sentry/views/replays/replayTable';
- import {ReplayColumn} from 'sentry/views/replays/replayTable/types';
- import {ReplayListLocationQuery} from 'sentry/views/replays/types';
- function ReplaysErroneousDeadRageCards() {
- const location = useLocation<ReplayListLocationQuery>();
- const {project, environment, start, statsPeriod, utc, end} = location.query;
- const searchLocation: Location<ReplayListLocationQuery> = useMemo(() => {
- return {
- pathname: '',
- search: '',
- hash: '',
- state: '',
- action: 'PUSH' as const,
- key: '',
- query: {project, environment, start, statsPeriod, utc, end},
- };
- }, [project, environment, start, statsPeriod, utc, end]);
- return (
- <SplitCardContainer>
- <DeadClickTable searchLocation={searchLocation} />
- <RageClickTable searchLocation={searchLocation} />
- </SplitCardContainer>
- );
- }
- function DeadClickTable({
- searchLocation,
- }: {
- searchLocation: Location<ReplayListLocationQuery>;
- }) {
- const organization = useOrganization();
- const eventView = useMemo(
- () =>
- EventView.fromNewQueryWithLocation(
- {
- id: '',
- name: '',
- version: 2,
- fields: [
- 'activity',
- 'duration',
- 'count_dead_clicks',
- 'id',
- 'project_id',
- 'user',
- 'finished_at',
- 'is_archived',
- 'started_at',
- ],
- projects: [],
- query: 'count_dead_clicks:>0',
- orderby: '-count_dead_clicks',
- },
- searchLocation
- ),
- [searchLocation]
- );
- useEffect(() => {
- trackAnalytics('replay.dead-click-card.rendered', {organization});
- }, []); // eslint-disable-line react-hooks/exhaustive-deps
- return (
- <CardTable
- eventView={eventView}
- location={searchLocation}
- visibleColumns={[
- ReplayColumn.MOST_DEAD_CLICKS,
- ReplayColumn.COUNT_DEAD_CLICKS_NO_HEADER,
- ]}
- >
- <SearchButton
- analyticsEventKey="replay.dead-click-card.click_search"
- analyticsEventName="Replay Dead Click Card Search Click"
- analyticsParams={{}}
- eventView={eventView}
- label={t('Show all replays with dead clicks')}
- />
- </CardTable>
- );
- }
- function RageClickTable({
- searchLocation,
- }: {
- searchLocation: Location<ReplayListLocationQuery>;
- }) {
- const organization = useOrganization();
- const eventView = useMemo(
- () =>
- EventView.fromNewQueryWithLocation(
- {
- id: '',
- name: '',
- version: 2,
- fields: [
- 'activity',
- 'duration',
- 'count_rage_clicks',
- 'id',
- 'project_id',
- 'user',
- 'finished_at',
- 'is_archived',
- 'started_at',
- ],
- projects: [],
- query: 'count_rage_clicks:>0',
- orderby: '-count_rage_clicks',
- },
- searchLocation
- ),
- [searchLocation]
- );
- useEffect(() => {
- trackAnalytics('replay.rage-click-card.rendered', {organization});
- }, []); // eslint-disable-line react-hooks/exhaustive-deps
- return (
- <CardTable
- eventView={eventView}
- location={searchLocation}
- visibleColumns={[
- ReplayColumn.MOST_RAGE_CLICKS,
- ReplayColumn.COUNT_RAGE_CLICKS_NO_HEADER,
- ]}
- >
- <SearchButton
- analyticsEventKey="replay.rage-click-card.click_search"
- analyticsEventName="Replay Rage Click Card Search Click"
- analyticsParams={{}}
- eventView={eventView}
- label={t('Show all replays with rage clicks')}
- />
- </CardTable>
- );
- }
- function CardTable({
- children,
- eventView,
- location,
- visibleColumns,
- }: {
- children: ReactNode;
- eventView: EventView;
- location: Location<ReplayListLocationQuery>;
- visibleColumns: ReplayColumn[];
- }) {
- const organization = useOrganization();
- const {replays, isFetching, fetchError} = useReplayList({
- eventView,
- location,
- organization,
- perPage: 3,
- });
- const length = replays?.length ?? 0;
- const rows = length > 0 ? 3 : 1;
- return (
- <Fragment>
- <ReplayTable
- fetchError={fetchError}
- isFetching={isFetching}
- replays={replays}
- sort={undefined}
- visibleColumns={visibleColumns}
- saveLocation
- gridRows={`auto repeat(${rows}, 1fr)`}
- showDropdownFilters={false}
- />
- {children}
- </Fragment>
- );
- }
- function SearchButton({
- eventView,
- label,
- ...props
- }: {
- eventView: EventView;
- label: ReactNode;
- } & Omit<ComponentProps<typeof LinkButton>, 'size' | 'to' | 'icon'>) {
- const location = useLocation();
- const isActive = location.query.query === eventView.query;
- return (
- <StyledButton
- {...props}
- size="sm"
- to={{
- pathname: location.pathname,
- query: {
- ...location.query,
- cursor: undefined,
- query: isActive ? '' : eventView.query,
- sort: isActive ? '' : eventView.sorts[0].field,
- },
- }}
- icon={isActive ? <IconClose size="xs" /> : <IconSearch size="xs" />}
- >
- {isActive ? t('Clear filter') : label}
- </StyledButton>
- );
- }
- const SplitCardContainer = styled('div')`
- display: grid;
- grid-template-columns: 1fr 1fr;
- grid-template-rows: max-content max-content;
- grid-auto-flow: column;
- gap: 0 ${space(2)};
- align-items: stretch;
- `;
- const StyledButton = styled(LinkButton)`
- width: 100%;
- border-top: none;
- border-radius: ${p => p.theme.borderRadiusBottom};
- padding: ${space(3)};
- `;
- export default ReplaysErroneousDeadRageCards;
|