Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/incidents/constants.js')
-rw-r--r--app/assets/javascripts/incidents/constants.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/assets/javascripts/incidents/constants.js b/app/assets/javascripts/incidents/constants.js
new file mode 100644
index 00000000000..02d8172533d
--- /dev/null
+++ b/app/assets/javascripts/incidents/constants.js
@@ -0,0 +1,37 @@
+import { s__, __ } from '~/locale';
+
+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'),
+ searchPlaceholder: __('Search results…'),
+ emptyState: {
+ title: s__('IncidentManagement|Display your incidents in a dedicated view'),
+ description: s__(
+ 'IncidentManagement|All alerts promoted to incidents will automatically be displayed within the list. You can also create a new incident using the button below.',
+ ),
+ },
+};
+
+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',
+ },
+];
+
+export const INCIDENT_SEARCH_DELAY = 300;
+export const DEFAULT_PAGE_SIZE = 10;