import {Fragment} from 'react'; import styled from '@emotion/styled'; import DateTime from 'sentry/components/dateTime'; import Text from 'sentry/components/text'; import type {TooltipProps} from 'sentry/components/tooltip'; import {Tooltip} from 'sentry/components/tooltip'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type { JobTickData, TimeWindowOptions, } from 'sentry/views/monitors/components/overviewTimeline/types'; import type {CheckInStatus} from 'sentry/views/monitors/types'; import {statusToText, tickStyle} from 'sentry/views/monitors/utils'; interface Props extends Omit { jobTick: JobTickData; timeWindowConfig: TimeWindowOptions; } export function JobTickTooltip({jobTick, timeWindowConfig, children, ...props}: Props) { const {startTs, endTs, envMapping} = jobTick; const {dateLabelFormat} = timeWindowConfig; const capturedEnvs = Object.keys(envMapping); const representsSingleJob = capturedEnvs.length === 1 && Object.values(envMapping[capturedEnvs[0]]).reduce((sum, count) => sum + count, 0) === 1; const tooltipTitle = ( {!representsSingleJob && ( {'\u2014'} )} {/* Visually hidden but kept here for accessibility */} {t('Status')} {t('Environment')} {t('Count')} {Object.entries(envMapping).map(([envName, statusCounts]) => Object.entries(statusCounts).map( ([status, count]) => count > 0 && ( {/* TODO(davidenwang): fix types to remove "as" here */} {statusToText[status]} {/* TODO(davidenwang): handle long env names */} {envName} {count} ) ) )} ); return ( {children} ); } const StatusCountContainer = styled('table')` width: 100%; margin: 0; `; const TooltipTimeLabel = styled('div')` display: flex; margin-bottom: ${space(0.5)}; justify-content: center; `; const HiddenHeader = styled('thead')` display: block; overflow: hidden; height: 0; width: 0; `; const StatusLabel = styled('td')<{status: CheckInStatus}>` color: ${p => p.theme[tickStyle[p.status].labelColor]}; text-align: left; `; const StatusCount = styled('td')` font-variant-numeric: tabular-nums; `; const EnvLabel = styled('td')` padding: ${space(0.25)} ${space(0.5)}; `;