2018-12-13 13:39:08 +05:30
|
|
|
import Vue from 'vue';
|
2022-01-26 12:08:38 +05:30
|
|
|
import VueApollo from 'vue-apollo';
|
|
|
|
import createDefaultClient from '~/lib/graphql';
|
|
|
|
import BridgeApp from './bridge/app.vue';
|
2018-12-13 13:39:08 +05:30
|
|
|
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-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
|
|
|
|
|
|
|
const initializeBridgePage = (el) => {
|
2022-03-02 08:16:31 +05:30
|
|
|
const {
|
|
|
|
buildId,
|
|
|
|
downstreamPipelinePath,
|
|
|
|
emptyStateIllustrationPath,
|
|
|
|
pipelineIid,
|
|
|
|
projectFullPath,
|
|
|
|
} = el.dataset;
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
Vue.use(VueApollo);
|
|
|
|
const apolloProvider = new VueApollo({
|
|
|
|
defaultClient: createDefaultClient(),
|
|
|
|
});
|
|
|
|
|
|
|
|
return new Vue({
|
|
|
|
el,
|
|
|
|
apolloProvider,
|
|
|
|
provide: {
|
2022-03-02 08:16:31 +05:30
|
|
|
buildId,
|
|
|
|
downstreamPipelinePath,
|
2022-01-26 12:08:38 +05:30
|
|
|
emptyStateIllustrationPath,
|
2022-03-02 08:16:31 +05:30
|
|
|
pipelineIid,
|
|
|
|
projectFullPath,
|
2022-01-26 12:08:38 +05:30
|
|
|
},
|
|
|
|
render(h) {
|
|
|
|
return h(BridgeApp);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const jobElement = document.getElementById('js-job-page');
|
|
|
|
const bridgeElement = document.getElementById('js-bridge-page');
|
|
|
|
|
|
|
|
if (jobElement) {
|
|
|
|
initializeJobPage(jobElement);
|
|
|
|
} else {
|
|
|
|
initializeBridgePage(bridgeElement);
|
|
|
|
}
|
|
|
|
};
|