50 lines
1.3 KiB
Vue
50 lines
1.3 KiB
Vue
<script>
|
|
import { GlTabs, GlTab } from '@gitlab/ui';
|
|
import { __ } from '~/locale';
|
|
import PipelineGraphWrapper from './graph/graph_component_wrapper.vue';
|
|
import Dag from './dag/dag.vue';
|
|
import JobsApp from './jobs/jobs_app.vue';
|
|
import TestReports from './test_reports/test_reports.vue';
|
|
|
|
export default {
|
|
i18n: {
|
|
tabs: {
|
|
failedJobsTitle: __('Failed Jobs'),
|
|
jobsTitle: __('Jobs'),
|
|
needsTitle: __('Needs'),
|
|
pipelineTitle: __('Pipeline'),
|
|
testsTitle: __('Tests'),
|
|
},
|
|
},
|
|
components: {
|
|
Dag,
|
|
GlTab,
|
|
GlTabs,
|
|
JobsApp,
|
|
FailedJobsApp: JobsApp,
|
|
PipelineGraphWrapper,
|
|
TestReports,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<gl-tabs>
|
|
<gl-tab :title="$options.i18n.tabs.pipelineTitle" data-testid="pipeline-tab">
|
|
<pipeline-graph-wrapper />
|
|
</gl-tab>
|
|
<gl-tab :title="$options.i18n.tabs.needsTitle" data-testid="dag-tab">
|
|
<dag />
|
|
</gl-tab>
|
|
<gl-tab :title="$options.i18n.tabs.jobsTitle" data-testid="jobs-tab">
|
|
<jobs-app />
|
|
</gl-tab>
|
|
<gl-tab :title="$options.i18n.tabs.failedJobsTitle" data-testid="failed-jobs-tab">
|
|
<failed-jobs-app />
|
|
</gl-tab>
|
|
<gl-tab :title="$options.i18n.tabs.testsTitle" data-testid="tests-tab">
|
|
<test-reports />
|
|
</gl-tab>
|
|
<slot></slot>
|
|
</gl-tabs>
|
|
</template>
|