Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_tabs.vue « components « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66d30c10362cbb68ed3337b48ea4977074149d84 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<script>
import { GlTabs, GlTab } from '@gitlab/ui';
import { __ } from '~/locale';
import { failedJobsTabName, jobsTabName, needsTabName, testReportTabName } from '../constants';
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'),
    },
  },
  tabNames: {
    needs: needsTabName,
    jobs: jobsTabName,
    failures: failedJobsTabName,
    tests: testReportTabName,
  },
  components: {
    Dag,
    GlTab,
    GlTabs,
    JobsApp,
    FailedJobsApp: JobsApp,
    PipelineGraphWrapper,
    TestReports,
  },
  inject: ['defaultTabValue'],
  methods: {
    isActive(tabName) {
      return tabName === this.defaultTabValue;
    },
  },
};
</script>

<template>
  <gl-tabs>
    <gl-tab ref="pipelineTab" :title="$options.i18n.tabs.pipelineTitle" data-testid="pipeline-tab">
      <pipeline-graph-wrapper />
    </gl-tab>
    <gl-tab
      ref="dagTab"
      :title="$options.i18n.tabs.needsTitle"
      :active="isActive($options.tabNames.needs)"
      data-testid="dag-tab"
    >
      <dag />
    </gl-tab>
    <gl-tab
      :title="$options.i18n.tabs.jobsTitle"
      :active="isActive($options.tabNames.jobs)"
      data-testid="jobs-tab"
    >
      <jobs-app />
    </gl-tab>
    <gl-tab
      :title="$options.i18n.tabs.failedJobsTitle"
      :active="isActive($options.tabNames.failures)"
      data-testid="failed-jobs-tab"
    >
      <failed-jobs-app />
    </gl-tab>
    <gl-tab
      :title="$options.i18n.tabs.testsTitle"
      :active="isActive($options.tabNames.tests)"
      data-testid="tests-tab"
    >
      <test-reports />
    </gl-tab>
    <slot></slot>
  </gl-tabs>
</template>