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/logs/stores/state.js')
-rw-r--r--app/assets/javascripts/logs/stores/state.js56
1 files changed, 0 insertions, 56 deletions
diff --git a/app/assets/javascripts/logs/stores/state.js b/app/assets/javascripts/logs/stores/state.js
deleted file mode 100644
index ee17e8ecef2..00000000000
--- a/app/assets/javascripts/logs/stores/state.js
+++ /dev/null
@@ -1,56 +0,0 @@
-import { convertToFixedRange } from '~/lib/utils/datetime_range';
-import { timeRanges, defaultTimeRange } from '~/vue_shared/constants';
-
-export default () => ({
- /**
- * Full text search
- */
- search: '',
-
- /**
- * Time range (Show last)
- */
- timeRange: {
- options: timeRanges,
- // Selected time range, can be fixed or relative
- selected: defaultTimeRange,
- // Current time range, must be fixed
- current: convertToFixedRange(defaultTimeRange),
-
- invalidWarning: false,
- },
-
- /**
- * Environments list information
- */
- environments: {
- options: [],
- isLoading: false,
- current: null,
- fetchError: false,
- },
-
- /**
- * Jobs with logs
- */
- logs: {
- lines: [],
- isLoading: false,
- /**
- * Logs `cursor` represents the current pagination position,
- * Should be sent in next batch (page) of logs to be fetched
- */
- cursor: null,
- isComplete: false,
-
- fetchError: false,
- },
-
- /**
- * Pods list information
- */
- pods: {
- options: [],
- current: null,
- },
-});