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

monitoring_app.js « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08543fa6eb3682e4e3d64314bf4b16be6a79b438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import Vue from 'vue';
import { GlToast } from '@gitlab/ui';
import { parseBoolean } from '~/lib/utils/common_utils';
import { getParameterValues } from '~/lib/utils/url_utility';
import { createStore } from './stores';
import createRouter from './router';

Vue.use(GlToast);

export default (props = {}) => {
  const el = document.getElementById('prometheus-graphs');

  if (el && el.dataset) {
    const [currentDashboard] = getParameterValues('dashboard');

    const {
      deploymentsEndpoint,
      dashboardEndpoint,
      dashboardsEndpoint,
      projectPath,
      logsPath,
      currentEnvironmentName,
      dashboardTimezone,
      metricsDashboardBasePath,
      ...dataProps
    } = el.dataset;

    const store = createStore({
      currentDashboard,
      deploymentsEndpoint,
      dashboardEndpoint,
      dashboardsEndpoint,
      dashboardTimezone,
      projectPath,
      logsPath,
      currentEnvironmentName,
    });

    // HTML attributes are always strings, parse other types.
    dataProps.hasMetrics = parseBoolean(dataProps.hasMetrics);
    dataProps.customMetricsAvailable = parseBoolean(dataProps.customMetricsAvailable);
    dataProps.prometheusAlertsAvailable = parseBoolean(dataProps.prometheusAlertsAvailable);

    const router = createRouter(metricsDashboardBasePath);

    // eslint-disable-next-line no-new
    new Vue({
      el,
      store,
      router,
      data() {
        return {
          dashboardProps: { ...dataProps, ...props },
        };
      },
      template: `<router-view :dashboardProps="dashboardProps"/>`,
    });
  }
};