debian-mirror-gitlab/app/assets/javascripts/incidents/constants.js

77 lines
2.5 KiB
JavaScript
Raw Normal View History

2021-01-03 14:25:43 +05:30
/* eslint-disable @gitlab/require-i18n-strings */
import { s__ } from '~/locale';
2020-10-24 23:57:45 +05:30
export const I18N = {
errorMsg: s__('IncidentManagement|There was an error displaying the incidents.'),
noIncidents: s__('IncidentManagement|No incidents to display.'),
unassigned: s__('IncidentManagement|Unassigned'),
createIncidentBtnLabel: s__('IncidentManagement|Create incident'),
unPublished: s__('IncidentManagement|Unpublished'),
2022-05-07 20:08:51 +05:30
noEscalationStatus: s__('IncidentManagement|None'),
2020-10-24 23:57:45 +05:30
emptyState: {
title: s__('IncidentManagement|Display your incidents in a dedicated view'),
2020-11-24 15:15:51 +05:30
emptyClosedTabTitle: s__('IncidentManagement|There are no closed incidents'),
2020-10-24 23:57:45 +05:30
description: s__(
2021-12-11 22:18:48 +05:30
'IncidentManagement|All alerts promoted to incidents are automatically displayed within the list. You can also create a new incident using the button below.',
),
cannotCreateIncidentDescription: s__(
'IncidentManagement|All alerts promoted to incidents are automatically displayed within the list.',
2020-10-24 23:57:45 +05:30
),
},
};
export const INCIDENT_STATUS_TABS = [
{
title: s__('IncidentManagement|Open'),
status: 'OPENED',
filters: 'opened',
},
{
title: s__('IncidentManagement|Closed'),
status: 'CLOSED',
filters: 'closed',
},
{
title: s__('IncidentManagement|All'),
status: 'ALL',
filters: 'all',
},
];
2022-05-07 20:08:51 +05:30
export const ESCALATION_STATUSES = {
TRIGGERED: s__('AlertManagement|Triggered'),
ACKNOWLEDGED: s__('AlertManagement|Acknowledged'),
RESOLVED: s__('AlertManagement|Resolved'),
};
2020-10-24 23:57:45 +05:30
2020-11-24 15:15:51 +05:30
export const DEFAULT_PAGE_SIZE = 20;
2021-01-03 14:25:43 +05:30
export const TH_CREATED_AT_TEST_ID = { 'data-testid': 'incident-management-created-at-sort' };
export const TH_SEVERITY_TEST_ID = { 'data-testid': 'incident-management-severity-sort' };
export const TH_INCIDENT_SLA_TEST_ID = { 'data-testid': 'incident-management-sla' };
export const TH_PUBLISHED_TEST_ID = { 'data-testid': 'incident-management-published-sort' };
export const INCIDENT_DETAILS_PATH = 'incident';
/**
* Tracks snowplow event when user clicks create new incident
*/
export const trackIncidentCreateNewOptions = {
category: 'Incident Management',
action: 'create_incident_button_clicks',
};
/**
* Tracks snowplow event when user views incidents list
*/
export const trackIncidentListViewsOptions = {
category: 'Incident Management',
action: 'view_incidents_list',
};
/**
* Tracks snowplow event when user views incident details
*/
export const trackIncidentDetailsViewsOptions = {
category: 'Incident Management',
action: 'view_incident_details',
};