123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import IssueStreamHeaderLabel from 'sentry/components/IssueStreamHeaderLabel';
- import ToolbarHeader from 'sentry/components/toolbarHeader';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {PageFilters} from 'sentry/types/core';
- import useOrganization from 'sentry/utils/useOrganization';
- import {HeaderDivider} from 'sentry/views/issueList/actions';
- import {COLUMN_BREAKPOINTS} from 'sentry/views/issueList/actions/utils';
- type Props = {
- isReprocessingQuery: boolean;
- onSelectStatsPeriod: (statsPeriod: string) => void;
- selection: PageFilters;
- statsPeriod: string;
- isSavedSearchesOpen?: boolean;
- };
- function Headers({
- selection,
- statsPeriod,
- onSelectStatsPeriod,
- isReprocessingQuery,
- isSavedSearchesOpen,
- }: Props) {
- const organization = useOrganization();
- return (
- <Fragment>
- {isReprocessingQuery ? (
- <Fragment>
- <StartedColumn>{t('Started')}</StartedColumn>
- <EventsReprocessedColumn>{t('Events Reprocessed')}</EventsReprocessedColumn>
- <ProgressColumn>{t('Progress')}</ProgressColumn>
- </Fragment>
- ) : (
- <Fragment>
- {organization.features.includes('issue-stream-table-layout') ? (
- <NarrowGraphLabel breakpoint={COLUMN_BREAKPOINTS.TREND}>
- <NarrowGraphLabelContents>
- {t('Trend')}
- <NarrowGraphToggles>
- {selection.datetime.period !== '24h' && (
- <GraphToggle
- active={statsPeriod === '24h'}
- onClick={() => onSelectStatsPeriod('24h')}
- >
- {t('24h')}
- </GraphToggle>
- )}
- <GraphToggle
- active={statsPeriod === 'auto'}
- onClick={() => onSelectStatsPeriod('auto')}
- >
- {selection.datetime.period || t('Custom')}
- </GraphToggle>
- </NarrowGraphToggles>
- </NarrowGraphLabelContents>
- <HeaderDivider />
- </NarrowGraphLabel>
- ) : (
- <GraphHeaderWrapper isSavedSearchesOpen={isSavedSearchesOpen}>
- <GraphHeader>
- <StyledToolbarHeader>{t('Graph:')}</StyledToolbarHeader>
- {selection.datetime.period !== '24h' && (
- <GraphToggle
- active={statsPeriod === '24h'}
- onClick={() => onSelectStatsPeriod('24h')}
- >
- {t('24h')}
- </GraphToggle>
- )}
- <GraphToggle
- active={statsPeriod === 'auto'}
- onClick={() => onSelectStatsPeriod('auto')}
- >
- {selection.datetime.period || t('Custom')}
- </GraphToggle>
- </GraphHeader>
- </GraphHeaderWrapper>
- )}
- {organization.features.includes('issue-stream-table-layout') ? (
- <Fragment>
- <TimestampLabel breakpoint={COLUMN_BREAKPOINTS.AGE}>
- {t('First Seen')}
- <HeaderDivider />
- </TimestampLabel>
- <TimestampLabel breakpoint={COLUMN_BREAKPOINTS.SEEN}>
- {t('Last Seen')}
- <HeaderDivider />
- </TimestampLabel>
- </Fragment>
- ) : null}
- {organization.features.includes('issue-stream-table-layout') ? (
- <Fragment>
- <NarrowEventsOrUsersLabel breakpoint={COLUMN_BREAKPOINTS.EVENTS}>
- {t('Events')}
- <HeaderDivider />
- </NarrowEventsOrUsersLabel>
- <NarrowEventsOrUsersLabel breakpoint={COLUMN_BREAKPOINTS.USERS}>
- {t('Users')}
- <HeaderDivider />
- </NarrowEventsOrUsersLabel>
- <NarrowPriorityLabel breakpoint={COLUMN_BREAKPOINTS.PRIORITY}>
- {t('Priority')}
- <HeaderDivider />
- </NarrowPriorityLabel>
- <NarrowAssigneeLabel breakpoint={COLUMN_BREAKPOINTS.ASSIGNEE}>
- {t('Assignee')}
- </NarrowAssigneeLabel>
- </Fragment>
- ) : (
- <Fragment>
- <EventsOrUsersLabel>{t('Events')}</EventsOrUsersLabel>
- <EventsOrUsersLabel>{t('Users')}</EventsOrUsersLabel>
- <PriorityLabel isSavedSearchesOpen={isSavedSearchesOpen}>
- <ToolbarHeader>{t('Priority')}</ToolbarHeader>
- </PriorityLabel>
- <AssigneeLabel isSavedSearchesOpen={isSavedSearchesOpen}>
- <ToolbarHeader>{t('Assignee')}</ToolbarHeader>
- </AssigneeLabel>
- </Fragment>
- )}
- </Fragment>
- )}
- </Fragment>
- );
- }
- export default Headers;
- const GraphHeaderWrapper = styled('div')<{isSavedSearchesOpen?: boolean}>`
- width: 200px;
- margin-right: ${space(2)};
- @media (max-width: ${p =>
- p.isSavedSearchesOpen ? p.theme.breakpoints.xlarge : p.theme.breakpoints.large}) {
- display: none;
- }
- `;
- const NarrowGraphLabel = styled(IssueStreamHeaderLabel)`
- width: 175px;
- flex: 1;
- display: flex;
- justify-content: space-between;
- `;
- const NarrowGraphLabelContents = styled('div')`
- display: flex;
- flex: 1;
- justify-content: space-between;
- `;
- const NarrowGraphToggles = styled('div')`
- font-weight: ${p => p.theme.fontWeightNormal};
- margin-right: ${space(2)};
- `;
- const GraphHeader = styled('div')`
- display: flex;
- margin-right: ${space(1.5)};
- `;
- const StyledToolbarHeader = styled(ToolbarHeader)`
- flex: 1;
- `;
- const GraphToggle = styled('a')<{active: boolean}>`
- font-size: 13px;
- padding-left: ${space(1)};
- &,
- &:hover,
- &:focus,
- &:active {
- color: ${p => (p.active ? p.theme.textColor : p.theme.disabled)};
- }
- `;
- const TimestampLabel = styled(IssueStreamHeaderLabel)`
- width: 75px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- text-align: left;
- @media (max-width: ${p => p.theme.breakpoints.xlarge}) {
- display: none;
- }
- `;
- const EventsOrUsersLabel = styled(ToolbarHeader)`
- display: inline-grid;
- align-items: center;
- justify-content: flex-end;
- text-align: right;
- width: 60px;
- margin: 0 ${space(2)};
- @media (min-width: ${p => p.theme.breakpoints.xlarge}) {
- width: 80px;
- }
- `;
- const NarrowEventsOrUsersLabel = styled(IssueStreamHeaderLabel)`
- display: flex;
- justify-content: space-between;
- width: 60px;
- @media (max-width: ${p => p.theme.breakpoints.medium}) {
- display: none;
- }
- `;
- const PriorityLabel = styled(ToolbarHeader)<{isSavedSearchesOpen?: boolean}>`
- justify-content: flex-end;
- text-align: right;
- width: 70px;
- margin: 0 ${space(2)};
- @media (max-width: ${p =>
- p.isSavedSearchesOpen ? p.theme.breakpoints.large : p.theme.breakpoints.medium}) {
- display: none;
- }
- `;
- const NarrowPriorityLabel = styled(IssueStreamHeaderLabel)`
- display: flex;
- justify-content: space-between;
- width: 70px;
- @media (max-width: ${p => p.theme.breakpoints.large}) {
- display: none;
- }
- `;
- const AssigneeLabel = styled(ToolbarHeader)<{isSavedSearchesOpen?: boolean}>`
- justify-content: flex-end;
- text-align: right;
- width: 60px;
- margin-left: ${space(2)};
- margin-right: ${space(2)};
- @media (max-width: ${p =>
- p.isSavedSearchesOpen ? p.theme.breakpoints.large : p.theme.breakpoints.medium}) {
- display: none;
- }
- `;
- export const NarrowAssigneeLabel = styled(IssueStreamHeaderLabel)`
- justify-content: flex-end;
- text-align: right;
- width: 60px;
- `;
- // Reprocessing
- const StartedColumn = styled(ToolbarHeader)`
- margin: 0 ${space(2)};
- ${p => p.theme.overflowEllipsis};
- width: 85px;
- @media (min-width: ${p => p.theme.breakpoints.small}) {
- width: 140px;
- }
- `;
- const EventsReprocessedColumn = styled(ToolbarHeader)`
- margin: 0 ${space(2)};
- ${p => p.theme.overflowEllipsis};
- width: 75px;
- @media (min-width: ${p => p.theme.breakpoints.small}) {
- width: 140px;
- }
- `;
- const ProgressColumn = styled(ToolbarHeader)`
- margin: 0 ${space(2)};
- display: none;
- @media (min-width: ${p => p.theme.breakpoints.small}) {
- display: block;
- width: 160px;
- }
- `;
|