summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/cycle_analytics/index.js
blob: 615f96c3860901b3f6a00ef28f35ab6e0bb6b9eb (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
import Vue from 'vue';
import Translate from '../vue_shared/translate';
import CycleAnalytics from './components/base.vue';
import createStore from './store';

Vue.use(Translate);

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

  store.dispatch('initializeVsa', {
    projectId: parseInt(projectId, 10),
    groupPath,
    requestPath,
    fullPath,
    features: {
      cycleAnalyticsForGroups:
        (groupPath && gon?.licensed_features?.cycleAnalyticsForGroups) || false,
    },
  });

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