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

index.js « cycle_analytics « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42d6700fae14d10f64062d99588ad35fd2d6b5cf (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
import Vue from 'vue';
import Translate from '../vue_shared/translate';
import CycleAnalytics from './components/base.vue';
import CycleAnalyticsService from './cycle_analytics_service';
import CycleAnalyticsStore from './cycle_analytics_store';

Vue.use(Translate);

const createCycleAnalyticsService = (requestPath) =>
  new CycleAnalyticsService({
    requestPath,
  });

export default () => {
  const el = document.querySelector('#js-cycle-analytics');
  const { noAccessSvgPath, noDataSvgPath } = el.dataset;

  // eslint-disable-next-line no-new
  new Vue({
    el,
    name: 'CycleAnalytics',
    render: (createElement) =>
      createElement(CycleAnalytics, {
        props: {
          noDataSvgPath,
          noAccessSvgPath,
          store: CycleAnalyticsStore,
          service: createCycleAnalyticsService(el.dataset.requestPath),
        },
      }),
  });
};