123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import {
- IconCheckmark,
- IconFire,
- IconTimer,
- IconUnsubscribed,
- IconWarning,
- } from 'sentry/icons';
- import {t} from 'sentry/locale';
- import type {Aliases} from 'sentry/utils/theme';
- import type {StatsBucket} from 'sentry/views/monitors/components/overviewTimeline/types';
- import type {MonitorStatus} from 'sentry/views/monitors/types';
- import {CheckInStatus} from 'sentry/views/monitors/types';
- // Orders the status in terms of ascending precedence for showing to the user
- export const CHECKIN_STATUS_PRECEDENT = [
- CheckInStatus.IN_PROGRESS,
- CheckInStatus.OK,
- CheckInStatus.MISSED,
- CheckInStatus.TIMEOUT,
- CheckInStatus.ERROR,
- ] satisfies Array<keyof StatsBucket>;
- export const statusIconColorMap: Record<
- MonitorStatus,
- {color: keyof Aliases; icon: React.ReactNode; label: string}
- > = {
- ok: {
- icon: <IconCheckmark color="successText" />,
- color: 'successText',
- label: t('Okay'),
- },
- error: {
- icon: <IconFire color="errorText" />,
- color: 'errorText',
- label: t('Error'),
- },
- timeout: {
- icon: <IconFire color="errorText" />,
- color: 'errorText',
- label: t('Timed Out'),
- },
- missed_checkin: {
- icon: <IconWarning color="warningText" />,
- color: 'warningText',
- label: t('Missed'),
- },
- active: {
- icon: <IconTimer color="subText" />,
- color: 'subText',
- label: t('Waiting For Check-In'),
- },
- disabled: {
- icon: <IconUnsubscribed color="subText" size="xs" />,
- color: 'subText',
- label: t('Muted'),
- },
- };
|