debian-mirror-gitlab/app/assets/javascripts/jobs/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-08-13 15:12:31 +05:30
import { GlToast } from '@gitlab/ui';
2018-12-13 13:39:08 +05:30
import Vue from 'vue';
import JobApp from './components/job_app.vue';
2020-03-13 15:44:24 +05:30
import createStore from './store';
2018-12-13 13:39:08 +05:30
2022-08-13 15:12:31 +05:30
Vue.use(GlToast);
2022-01-26 12:08:38 +05:30
const initializeJobPage = (element) => {
2020-03-13 15:44:24 +05:30
const store = createStore();
// Let's start initializing the store (i.e. fetching data) right away
store.dispatch('init', element.dataset);
2021-01-29 00:20:46 +05:30
const {
artifactHelpUrl,
deploymentHelpUrl,
runnerSettingsUrl,
subscriptionsMoreMinutesUrl,
endpoint,
pagePath,
logState,
buildStatus,
projectPath,
retryOutdatedJobDocsUrl,
} = element.dataset;
2018-12-13 13:39:08 +05:30
return new Vue({
el: element,
2020-03-13 15:44:24 +05:30
store,
2018-12-13 13:39:08 +05:30
components: {
JobApp,
},
2021-01-29 00:20:46 +05:30
provide: {
retryOutdatedJobDocsUrl,
},
2018-12-13 13:39:08 +05:30
render(createElement) {
return createElement('job-app', {
props: {
2020-11-24 15:15:51 +05:30
artifactHelpUrl,
2019-10-12 21:52:04 +05:30
deploymentHelpUrl,
runnerSettingsUrl,
2019-12-04 20:38:33 +05:30
subscriptionsMoreMinutesUrl,
2019-10-12 21:52:04 +05:30
endpoint,
pagePath,
logState,
buildStatus,
projectPath,
2018-12-13 13:39:08 +05:30
},
});
},
});
};
2022-01-26 12:08:38 +05:30
export default () => {
const jobElement = document.getElementById('js-job-page');
2022-08-13 15:12:31 +05:30
initializeJobPage(jobElement);
2022-01-26 12:08:38 +05:30
};