123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- import {Fragment, useCallback, useEffect, useMemo} from 'react';
- import {browserHistory, RouteComponentProps} from 'react-router';
- import {useTheme} from '@emotion/react';
- import styled from '@emotion/styled';
- import Button from 'sentry/components/button';
- import * as Layout from 'sentry/components/layouts/thirds';
- import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
- import PageHeading from 'sentry/components/pageHeading';
- import Pagination from 'sentry/components/pagination';
- import ReplaysFeatureBadge from 'sentry/components/replays/replaysFeatureBadge';
- import {SidebarPanelKey} from 'sentry/components/sidebar/types';
- import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
- import {t} from 'sentry/locale';
- import SidebarPanelStore from 'sentry/stores/sidebarPanelStore';
- import {PageContent} from 'sentry/styles/organization';
- import {Project} from 'sentry/types';
- import {PageFilters} from 'sentry/types/core';
- import EventView from 'sentry/utils/discover/eventView';
- import {decodeScalar} from 'sentry/utils/queryString';
- import {DEFAULT_SORT, REPLAY_LIST_FIELDS} from 'sentry/utils/replays/fetchReplayList';
- import useReplayList from 'sentry/utils/replays/hooks/useReplayList';
- import {MutableSearch} from 'sentry/utils/tokenizeSearch';
- import {useLocation} from 'sentry/utils/useLocation';
- import useMedia from 'sentry/utils/useMedia';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import useProjects from 'sentry/utils/useProjects';
- import ReplaysFilters from 'sentry/views/replays/filters';
- import ReplayOnboardingPanel from 'sentry/views/replays/list/replayOnboardingPanel';
- import ReplayTable from 'sentry/views/replays/replayTable';
- import type {ReplayListLocationQuery} from 'sentry/views/replays/types';
- type Props = RouteComponentProps<{orgId: string}, {}, any, ReplayListLocationQuery>;
- function getProjectList(selectedProjects: PageFilters['projects'], projects: Project[]) {
- if (selectedProjects[0] === ALL_ACCESS_PROJECTS || selectedProjects.length === 0) {
- return projects;
- }
- const projectsByProjectId = projects.reduce<Record<string, Project>>((acc, project) => {
- acc[project.id] = project;
- return acc;
- }, {});
- return selectedProjects.map(id => projectsByProjectId[id]).filter(Boolean);
- }
- function useShouldShowOnboardingPanel() {
- const {projects} = useProjects();
- const {selection} = usePageFilters();
- const shouldShowOnboardingPanel = useMemo(() => {
- const projectList = getProjectList(selection.projects, projects);
- const hasSentOneReplay = projectList.some(project => project.hasReplays);
- return !hasSentOneReplay;
- }, [selection.projects, projects]);
- return shouldShowOnboardingPanel;
- }
- function useReplayOnboardingSidebarPanel() {
- const location = useLocation();
- const enabled = useShouldShowOnboardingPanel();
- useEffect(() => {
- if (enabled && location.hash === '#replay-sidequest') {
- SidebarPanelStore.activatePanel(SidebarPanelKey.ReplaysOnboarding);
- }
- }, [enabled, location.hash]);
- const activate = useCallback(event => {
- event.preventDefault();
- window.location.hash = 'replay-sidequest';
- SidebarPanelStore.activatePanel(SidebarPanelKey.ReplaysOnboarding);
- }, []);
- return {enabled, activate};
- }
- function Replays({location}: Props) {
- const organization = useOrganization();
- const theme = useTheme();
- const minWidthIsSmall = useMedia(`(min-width: ${theme.breakpoints.small})`);
- const eventView = useMemo(() => {
- const query = decodeScalar(location.query.query, '');
- const conditions = new MutableSearch(query);
- return EventView.fromNewQueryWithLocation(
- {
- id: '',
- name: '',
- version: 2,
- fields: REPLAY_LIST_FIELDS,
- projects: [],
- query: conditions.formatString(),
- orderby: decodeScalar(location.query.sort, DEFAULT_SORT),
- },
- location
- );
- }, [location]);
- const {replays, pageLinks, isFetching, fetchError} = useReplayList({
- organization,
- eventView,
- });
- const {enabled: shouldShowOnboardingPanel, activate: activateOnboardingSidebarPanel} =
- useReplayOnboardingSidebarPanel();
- return (
- <Fragment>
- <Layout.Header>
- <StyledLayoutHeaderContent>
- <StyledHeading>
- {t('Replays')} <ReplaysFeatureBadge space={1} />
- </StyledHeading>
- </StyledLayoutHeaderContent>
- </Layout.Header>
- <PageFiltersContainer>
- <StyledPageContent>
- <ReplaysFilters />
- {shouldShowOnboardingPanel ? (
- <ReplayOnboardingPanel>
- <Button onClick={activateOnboardingSidebarPanel} priority="primary">
- {t('Get Started')}
- </Button>
- <Button
- href="https://github.com/getsentry/sentry-replay/blob/main/README.md"
- external
- >
- {t('See Readme')}
- </Button>
- </ReplayOnboardingPanel>
- ) : (
- <Fragment>
- <ReplayTable
- isFetching={isFetching}
- fetchError={fetchError}
- replays={replays}
- showProjectColumn={minWidthIsSmall}
- sort={eventView.sorts[0]}
- />
- <Pagination
- pageLinks={pageLinks}
- onCursor={(cursor, path, searchQuery) => {
- browserHistory.push({
- pathname: path,
- query: {...searchQuery, cursor},
- });
- }}
- />
- </Fragment>
- )}
- </StyledPageContent>
- </PageFiltersContainer>
- </Fragment>
- );
- }
- const StyledLayoutHeaderContent = styled(Layout.HeaderContent)`
- display: flex;
- justify-content: space-between;
- flex-direction: row;
- `;
- const StyledHeading = styled(PageHeading)`
- line-height: 40px;
- display: flex;
- `;
- const StyledPageContent = styled(PageContent)`
- box-shadow: 0px 0px 1px ${p => p.theme.gray200};
- background-color: ${p => p.theme.background};
- `;
- export default Replays;
|