gitlab-org--gitlab-foss/app/assets/javascripts/pipelines/pipeline_tabs.js

116 lines
3.1 KiB
JavaScript

import Vue from 'vue';
import VueRouter from 'vue-router';
import Vuex from 'vuex';
import VueApollo from 'vue-apollo';
import PipelineTabs from 'ee_else_ce/pipelines/components/pipeline_tabs.vue';
import { parseBoolean } from '~/lib/utils/common_utils';
import createTestReportsStore from './stores/test_reports';
import { getPipelineDefaultTab, reportToSentry } from './utils';
Vue.use(VueApollo);
Vue.use(VueRouter);
Vue.use(Vuex);
export const createAppOptions = (selector, apolloProvider, router) => {
const el = document.querySelector(selector);
if (!el) return null;
const { dataset } = el;
const {
canGenerateCodequalityReports,
codequalityReportDownloadPath,
codequalityBlobPath,
codequalityProjectPath,
downloadablePathForReportType,
exposeSecurityDashboard,
exposeLicenseScanningData,
failedJobsCount,
failedJobsSummary,
fullPath,
graphqlResourceEtag,
pipelineIid,
pipelineProjectPath,
totalJobCount,
licenseManagementApiUrl,
licenseManagementSettingsPath,
licensesApiPath,
canManageLicenses,
summaryEndpoint,
suiteEndpoint,
blobPath,
hasTestReport,
emptyDagSvgPath,
emptyStateImagePath,
artifactsExpiredImagePath,
isFullCodequalityReportAvailable,
testsCount,
} = dataset;
// TODO remove projectPath variable once https://gitlab.com/gitlab-org/gitlab/-/issues/371641 is resolved
const projectPath = fullPath;
const defaultTabValue = getPipelineDefaultTab(window.location.href);
return {
el,
components: {
PipelineTabs,
},
apolloProvider,
store: new Vuex.Store({
modules: {
testReports: createTestReportsStore({
blobPath,
summaryEndpoint,
suiteEndpoint,
}),
},
}),
router,
provide: {
canGenerateCodequalityReports: parseBoolean(canGenerateCodequalityReports),
codequalityReportDownloadPath,
codequalityBlobPath,
codequalityProjectPath,
isFullCodequalityReportAvailable: parseBoolean(isFullCodequalityReportAvailable),
projectPath,
defaultTabValue,
downloadablePathForReportType,
exposeSecurityDashboard: parseBoolean(exposeSecurityDashboard),
exposeLicenseScanningData: parseBoolean(exposeLicenseScanningData),
failedJobsCount,
failedJobsSummary: JSON.parse(failedJobsSummary),
fullPath,
graphqlResourceEtag,
pipelineIid,
pipelineProjectPath,
totalJobCount,
licenseManagementApiUrl,
licenseManagementSettingsPath,
licensesApiPath,
canManageLicenses: parseBoolean(canManageLicenses),
summaryEndpoint,
suiteEndpoint,
blobPath,
hasTestReport,
emptyDagSvgPath,
emptyStateImagePath,
artifactsExpiredImagePath,
testsCount,
},
errorCaptured(err, _vm, info) {
reportToSentry('pipeline_tabs', `error: ${err}, info: ${info}`);
},
render(createElement) {
return createElement(PipelineTabs);
},
};
};
export const createPipelineTabs = (options) => {
if (!options) return;
// eslint-disable-next-line no-new
new Vue(options);
};