1234567891011121314151617181920212223242526272829303132 |
- 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, string> = {
- [CheckStatus.SUCCESS]: t('Success'),
- [CheckStatus.FAILURE]: t('Failed'),
- [CheckStatus.MISSED_WINDOW]: t('Unknown'),
- };
- export const tickStyle: Record<CheckStatus, TickStyle> = {
- [CheckStatus.SUCCESS]: {
- labelColor: 'green400',
- tickColor: 'green300',
- },
- [CheckStatus.FAILURE]: {
- labelColor: 'red400',
- tickColor: 'red300',
- },
- [CheckStatus.MISSED_WINDOW]: {
- labelColor: 'gray400',
- tickColor: 'gray300',
- hatchTick: 'gray200',
- },
- };
|