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/observability/constants.js')
-rw-r--r--app/assets/javascripts/observability/constants.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/assets/javascripts/observability/constants.js b/app/assets/javascripts/observability/constants.js
index b0a0941779d..83eaea185e5 100644
--- a/app/assets/javascripts/observability/constants.js
+++ b/app/assets/javascripts/observability/constants.js
@@ -1,23 +1,5 @@
import { __ } from '~/locale';
-export const MESSAGE_EVENT_TYPE = Object.freeze({
- GOUI_LOADED: 'GOUI_LOADED',
- GOUI_ROUTE_UPDATE: 'GOUI_ROUTE_UPDATE',
-});
-
-export const OBSERVABILITY_ROUTES = Object.freeze({
- DASHBOARDS: 'observability/dashboards',
- EXPLORE: 'observability/explore',
- MANAGE: 'observability/manage',
-});
-
-export const SKELETON_VARIANTS_BY_ROUTE = Object.freeze({
- [OBSERVABILITY_ROUTES.DASHBOARDS]: 'dashboards',
- [OBSERVABILITY_ROUTES.EXPLORE]: 'explore',
- [OBSERVABILITY_ROUTES.MANAGE]: 'manage',
-});
-
-export const SKELETON_VARIANT_EMBED = 'embed';
export const SKELETON_SPINNER_VARIANT = 'spinner';
export const SKELETON_STATE = Object.freeze({
@@ -33,13 +15,3 @@ export const DEFAULT_TIMERS = Object.freeze({
export const TIMEOUT_ERROR_LABEL = __('Unable to load the page');
export const TIMEOUT_ERROR_MESSAGE = __('Reload the page to try again.');
-
-export const INLINE_EMBED_DIMENSIONS = Object.freeze({
- HEIGHT: '366px',
- WIDTH: '768px',
-});
-
-export const FULL_APP_DIMENSIONS = Object.freeze({
- HEIGHT: '100%',
- WIDTH: '100%',
-});