summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/graph/graph_view_selector.vue
blob: f33e6290e37039c4656ec226c4946dd24fdcd198 (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
81
82
83
84
85
<script>
import { GlDropdown, GlDropdownItem, GlIcon, GlSprintf } from '@gitlab/ui';
import { __ } from '~/locale';
import { STAGE_VIEW, LAYER_VIEW } from './constants';

export default {
  name: 'GraphViewSelector',
  components: {
    GlDropdown,
    GlDropdownItem,
    GlIcon,
    GlSprintf,
  },
  props: {
    type: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      currentViewType: STAGE_VIEW,
    };
  },
  i18n: {
    labelText: __('Order jobs by'),
  },
  views: {
    [STAGE_VIEW]: {
      type: STAGE_VIEW,
      text: {
        primary: __('Stage'),
        secondary: __('View the jobs grouped into stages'),
      },
    },
    [LAYER_VIEW]: {
      type: LAYER_VIEW,
      text: {
        primary: __('%{codeStart}needs:%{codeEnd} relationships'),
        secondary: __('View what jobs are needed for a job to run'),
      },
    },
  },
  computed: {
    currentDropdownText() {
      return this.$options.views[this.type].text.primary;
    },
  },
  methods: {
    itemClick(type) {
      this.$emit('updateViewType', type);
    },
  },
};
</script>

<template>
  <div class="gl-display-flex gl-align-items-center gl-my-4">
    <span>{{ $options.i18n.labelText }}</span>
    <gl-dropdown data-testid="pipeline-view-selector" class="gl-ml-4">
      <template #button-content>
        <gl-sprintf :message="currentDropdownText">
          <template #code="{ content }">
            <code> {{ content }} </code>
          </template>
        </gl-sprintf>
        <gl-icon class="gl-px-2" name="angle-down" :size="16" />
      </template>
      <gl-dropdown-item
        v-for="view in $options.views"
        :key="view.type"
        :secondary-text="view.text.secondary"
        @click="itemClick(view.type)"
      >
        <b>
          <gl-sprintf :message="view.text.primary">
            <template #code="{ content }">
              <code> {{ content }} </code>
            </template>
          </gl-sprintf>
        </b>
      </gl-dropdown-item>
    </gl-dropdown>
  </div>
</template>