summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/stages_dropdown.vue
blob: d6d64fa32f78cfb039f6c72ff10eb2126b3b7786 (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
86
87
88
89
90
91
92
93
94
95
96
97
<script>
  import CiIcon from '~/vue_shared/components/ci_icon.vue';
  import Icon from '~/vue_shared/components/icon.vue';

  import { sprintf, __ } from '~/locale';

  export default {
    components: {
      CiIcon,
      Icon,
    },
    props: {
      pipelineId: {
        type: Number,
        required: true,
      },
      pipelinePath: {
        type: String,
        required: true,
      },
      pipelineRef: {
        type: String,
        required: true,
      },
      pipelineRefPath: {
        type: String,
        required: true,
      },
      stages: {
        type: Array,
        required: true,
      },
      pipelineStatus: {
        type: Object,
        required: true,
      },
    },
    data() {
      return {
        selectedStage: this.stages.length > 0 ? this.stages[0].name : __('More'),
      };
    },
    computed: {
      pipelineLink() {
        return sprintf(__('Pipeline %{pipelineLinkStart} #%{pipelineId} %{pipelineLinkEnd} from %{pipelineLinkRefStart} %{pipelineRef} %{pipelineLinkRefEnd}'), {
          pipelineLinkStart: `<a href=${this.pipelinePath} class="js-pipeline-path link-commit">`,
          pipelineId: this.pipelineId,
          pipelineLinkEnd: '</a>',
          pipelineLinkRefStart: `<a href=${this.pipelineRefPath} class="link-commit ref-name">`,
          pipelineRef: this.pipelineRef,
          pipelineLinkRefEnd: '</a>',
        }, false);
      },
    },
    methods: {
      onStageClick(stage) {
        // todo: consider moving into store
        this.selectedStage = stage.name;

        // update dropdown with jobs
        // jobs container is a new component.
        this.$emit('requestSidebarStageDropdown', stage);
      },
    },
  };
</script>
<template>
  <div class="block-last">
    <ci-icon :status="pipelineStatus" />

    <p v-html="pipelineLink"></p>

    <div class="dropdown">
      <button
        type="button"
        data-toggle="dropdown"
      >
        {{ selectedStage }}
        <icon name="chevron-down" />
      </button>
      <ul class="dropdown-menu">
        <li
          v-for="(stage, index) in stages"
          :key="index"
        >
          <button
            type="button"
            class="stage-item"
            @click="onStageClick(stage)"
          >
            {{ stage.name }}
          </button>
        </li>
      </ul>
    </div>
  </div>
</template>