summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/pipeline_tabs.vue
blob: 62c785d7ad25c3ed74bbe87959c75d1416dcf351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<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>