85 lines
2.6 KiB
JavaScript
85 lines
2.6 KiB
JavaScript
import createFlash from '~/flash';
|
|
import { __, s__ } from '~/locale';
|
|
import createDagApp from './pipeline_details_dag';
|
|
import { createPipelinesDetailApp } from './pipeline_details_graph';
|
|
import { createPipelineHeaderApp } from './pipeline_details_header';
|
|
import { createPipelineJobsApp } from './pipeline_details_jobs';
|
|
import { createPipelineFailedJobsApp } from './pipeline_details_failed_jobs';
|
|
import { apolloProvider } from './pipeline_shared_client';
|
|
import { createTestDetails } from './pipeline_test_details';
|
|
|
|
const SELECTORS = {
|
|
PIPELINE_DETAILS: '.js-pipeline-details-vue',
|
|
PIPELINE_GRAPH: '#js-pipeline-graph-vue',
|
|
PIPELINE_HEADER: '#js-pipeline-header-vue',
|
|
PIPELINE_TABS: '#js-pipeline-tabs',
|
|
PIPELINE_TESTS: '#js-pipeline-tests-detail',
|
|
PIPELINE_JOBS: '#js-pipeline-jobs-vue',
|
|
PIPELINE_FAILED_JOBS: '#js-pipeline-failed-jobs-vue',
|
|
};
|
|
|
|
export default async function initPipelineDetailsBundle() {
|
|
const { dataset } = document.querySelector(SELECTORS.PIPELINE_DETAILS);
|
|
|
|
try {
|
|
createPipelineHeaderApp(SELECTORS.PIPELINE_HEADER, apolloProvider, dataset.graphqlResourceEtag);
|
|
} catch {
|
|
createFlash({
|
|
message: __('An error occurred while loading a section of this page.'),
|
|
});
|
|
}
|
|
|
|
if (gon.features?.pipelineTabsVue) {
|
|
const { createAppOptions } = await import('ee_else_ce/pipelines/pipeline_tabs');
|
|
const { createPipelineTabs } = await import('./pipeline_tabs');
|
|
|
|
try {
|
|
const appOptions = createAppOptions(SELECTORS.PIPELINE_TABS, apolloProvider);
|
|
createPipelineTabs(appOptions);
|
|
} catch {
|
|
createFlash({
|
|
message: __('An error occurred while loading a section of this page.'),
|
|
});
|
|
}
|
|
} else {
|
|
try {
|
|
createPipelinesDetailApp(SELECTORS.PIPELINE_GRAPH, apolloProvider, dataset);
|
|
} catch {
|
|
createFlash({
|
|
message: __('An error occurred while loading the pipeline.'),
|
|
});
|
|
}
|
|
|
|
try {
|
|
createDagApp(apolloProvider);
|
|
} catch {
|
|
createFlash({
|
|
message: __('An error occurred while loading the Needs tab.'),
|
|
});
|
|
}
|
|
|
|
try {
|
|
createTestDetails(SELECTORS.PIPELINE_TESTS);
|
|
} catch {
|
|
createFlash({
|
|
message: __('An error occurred while loading the Test Reports tab.'),
|
|
});
|
|
}
|
|
|
|
try {
|
|
createPipelineJobsApp(SELECTORS.PIPELINE_JOBS);
|
|
} catch {
|
|
createFlash({
|
|
message: __('An error occurred while loading the Jobs tab.'),
|
|
});
|
|
}
|
|
|
|
try {
|
|
createPipelineFailedJobsApp(SELECTORS.PIPELINE_FAILED_JOBS);
|
|
} catch {
|
|
createFlash({
|
|
message: s__('Jobs|An error occurred while loading the Failed Jobs tab.'),
|
|
});
|
|
}
|
|
}
|
|
}
|