import styled from '@emotion/styled'; import type {Location} from 'history'; import Link from 'sentry/components/links/link'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {PageFilters} from 'sentry/types'; import {HealthStatsPeriodOption} from 'sentry/types'; import withPageFilters from 'sentry/utils/withPageFilters'; type Props = { location: Location; selection: PageFilters; }; function ReleaseCardStatsPeriod({location, selection}: Props) { const activePeriod = location.query.healthStatsPeriod || HealthStatsPeriodOption.TWENTY_FOUR_HOURS; const {pathname, query} = location; return ( {selection.datetime.period !== HealthStatsPeriodOption.TWENTY_FOUR_HOURS && ( {t('24h')} )} {selection.datetime.start ? t('Custom') : selection.datetime.period ?? t('14d')} ); } const Wrapper = styled('div')` display: grid; grid-auto-flow: column; grid-column-gap: ${space(0.75)}; flex: 1; justify-content: flex-end; text-align: right; margin-left: ${space(0.5)}; `; const Period = styled(Link)<{selected: boolean}>` color: ${p => (p.selected ? p.theme.gray400 : p.theme.gray300)}; &:hover, &:focus { color: ${p => (p.selected ? p.theme.gray400 : p.theme.gray300)}; } `; export default withPageFilters(ReleaseCardStatsPeriod);