123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- 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 {CheckInStatus} from 'sentry/views/monitors/types';
- import {statusToText, tickStyle} from 'sentry/views/monitors/utils';
- import type {JobTickData, TimeWindowConfig} from './types';
- interface Props extends Omit<TooltipProps, 'title'> {
- jobTick: JobTickData;
- timeWindowConfig: TimeWindowConfig;
- }
- export function CheckInTooltip({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 = (
- <Fragment>
- <TooltipTimeLabel>
- <DateTime date={startTs * 1000} format={dateLabelFormat} />
- {!representsSingleJob && (
- <Fragment>
- <Text>{'\u2014'}</Text>
- <DateTime date={endTs * 1000} format={dateLabelFormat} />
- </Fragment>
- )}
- </TooltipTimeLabel>
- <StatusCountContainer>
- {/* Visually hidden but kept here for accessibility */}
- <HiddenHeader>
- <tr>
- <td>{t('Status')}</td>
- <td>{t('Environment')}</td>
- <td>{t('Count')}</td>
- </tr>
- </HiddenHeader>
- <tbody>
- {Object.entries(envMapping).map(([envName, statusCounts]) =>
- Object.entries(statusCounts).map(
- ([status, count]) =>
- count > 0 && (
- <tr key={`${envName}:${status}`}>
- {/* TODO(davidenwang): fix types to remove "as" here */}
- <StatusLabel status={status as CheckInStatus}>
- {statusToText[status]}
- </StatusLabel>
- {/* TODO(davidenwang): handle long env names */}
- <EnvLabel>{envName}</EnvLabel>
- <StatusCount>{count}</StatusCount>
- </tr>
- )
- )
- )}
- </tbody>
- </StatusCountContainer>
- </Fragment>
- );
- return (
- <Tooltip title={tooltipTitle} skipWrapper {...props}>
- {children}
- </Tooltip>
- );
- }
- 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)};
- `;
|