summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_projects/constants.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/import_projects/constants.js')
-rw-r--r--app/assets/javascripts/import_projects/constants.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/app/assets/javascripts/import_projects/constants.js b/app/assets/javascripts/import_projects/constants.js
deleted file mode 100644
index ad33ca158d2..00000000000
--- a/app/assets/javascripts/import_projects/constants.js
+++ /dev/null
@@ -1,48 +0,0 @@
-import { __ } from '../locale';
-
-// The `scheduling` status is only present on the client-side,
-// it is used as the status when we are requesting to start an import.
-
-export const STATUSES = {
- FINISHED: 'finished',
- FAILED: 'failed',
- SCHEDULED: 'scheduled',
- STARTED: 'started',
- NONE: 'none',
- SCHEDULING: 'scheduling',
-};
-
-const STATUS_MAP = {
- [STATUSES.FINISHED]: {
- icon: 'success',
- text: __('Done'),
- textClass: 'text-success',
- },
- [STATUSES.FAILED]: {
- icon: 'failed',
- text: __('Failed'),
- textClass: 'text-danger',
- },
- [STATUSES.SCHEDULED]: {
- icon: 'pending',
- text: __('Scheduled'),
- textClass: 'text-warning',
- },
- [STATUSES.STARTED]: {
- icon: 'running',
- text: __('Running…'),
- textClass: 'text-info',
- },
- [STATUSES.NONE]: {
- icon: 'created',
- text: __('Not started'),
- textClass: 'text-muted',
- },
- [STATUSES.SCHEDULING]: {
- loadingIcon: true,
- text: __('Scheduling'),
- textClass: 'text-warning',
- },
-};
-
-export default STATUS_MAP;