import type {TickStyle} from 'sentry/components/checkInTimeline/types'; import {t} from 'sentry/locale'; import {CheckStatus} from 'sentry/views/alerts/rules/uptime/types'; // Orders the status in terms of ascending precedence for showing to the user export const checkStatusPrecedent: CheckStatus[] = [ CheckStatus.FAILURE, CheckStatus.MISSED_WINDOW, CheckStatus.SUCCESS, ]; export const statusToText: Record = { [CheckStatus.SUCCESS]: t('Success'), [CheckStatus.FAILURE]: t('Failed'), [CheckStatus.MISSED_WINDOW]: t('Unknown'), }; export const tickStyle: Record = { [CheckStatus.SUCCESS]: { labelColor: 'green400', tickColor: 'green300', }, [CheckStatus.FAILURE]: { labelColor: 'red400', tickColor: 'red300', }, [CheckStatus.MISSED_WINDOW]: { labelColor: 'gray400', tickColor: 'gray300', hatchTick: 'gray200', }, };