summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/cycle_analytics/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/cycle_analytics/index.js')
-rw-r--r--app/assets/javascripts/cycle_analytics/index.js50
1 files changed, 0 insertions, 50 deletions
diff --git a/app/assets/javascripts/cycle_analytics/index.js b/app/assets/javascripts/cycle_analytics/index.js
deleted file mode 100644
index 3da8696edeb..00000000000
--- a/app/assets/javascripts/cycle_analytics/index.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import Vue from 'vue';
-import {
- extractFilterQueryParameters,
- extractPaginationQueryParameters,
-} from '~/analytics/shared/utils';
-import Translate from '../vue_shared/translate';
-import CycleAnalytics from './components/base.vue';
-import createStore from './store';
-import { buildCycleAnalyticsInitialData } from './utils';
-
-Vue.use(Translate);
-
-export default () => {
- const store = createStore();
- const el = document.querySelector('#js-cycle-analytics');
- const { noAccessSvgPath, noDataSvgPath } = el.dataset;
- const initialData = buildCycleAnalyticsInitialData({ ...el.dataset, gon });
-
- const pagination = extractPaginationQueryParameters(window.location.search);
- const {
- selectedAuthor,
- selectedMilestone,
- selectedAssigneeList,
- selectedLabelList,
- } = extractFilterQueryParameters(window.location.search);
-
- store.dispatch('initializeVsa', {
- ...initialData,
- selectedAuthor,
- selectedMilestone,
- selectedAssigneeList,
- selectedLabelList,
- pagination,
- });
-
- // eslint-disable-next-line no-new
- new Vue({
- el,
- name: 'CycleAnalytics',
- apolloProvider: {},
- store,
- render: (createElement) =>
- createElement(CycleAnalytics, {
- props: {
- noDataSvgPath,
- noAccessSvgPath,
- },
- }),
- });
-};