debian-mirror-gitlab/app/assets/javascripts/work_items/index.js
2023-07-09 08:55:56 +05:30

46 lines
1.2 KiB
JavaScript

import Vue from 'vue';
import VueApollo from 'vue-apollo';
import { parseBoolean } from '~/lib/utils/common_utils';
import { apolloProvider } from '~/graphql_shared/issuable_client';
import App from './components/app.vue';
import { createRouter } from './router';
Vue.use(VueApollo);
export const initWorkItemsRoot = () => {
const el = document.querySelector('#js-work-items');
const {
fullPath,
hasIssueWeightsFeature,
issuesListPath,
registerPath,
signInPath,
hasIterationsFeature,
hasOkrsFeature,
hasIssuableHealthStatusFeature,
newCommentTemplatePath,
reportAbusePath,
} = el.dataset;
return new Vue({
el,
name: 'WorkItemsRoot',
router: createRouter(el.dataset.fullPath),
apolloProvider,
provide: {
fullPath,
hasIssueWeightsFeature: parseBoolean(hasIssueWeightsFeature),
hasOkrsFeature: parseBoolean(hasOkrsFeature),
issuesListPath,
registerPath,
signInPath,
hasIterationsFeature: parseBoolean(hasIterationsFeature),
hasIssuableHealthStatusFeature: parseBoolean(hasIssuableHealthStatusFeature),
newCommentTemplatePath,
reportAbusePath,
},
render(createElement) {
return createElement(App);
},
});
};