summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_pipelines_index/pipeline_actions.js
blob: 583d6915a8530c2151b61b82313666d594d3def2 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* global Vue, Flash, gl */
/* eslint-disable no-param-reassign,  no-alert */
const playIconSvg = require('icons/_icon_play.svg');

((gl) => {
  gl.VuePipelineActions = Vue.extend({
    props: ['pipeline'],
    computed: {
      actions() {
        return this.pipeline.details.manual_actions.length > 0;
      },
      artifacts() {
        return this.pipeline.details.artifacts.length > 0;
      },
    },
    methods: {
      download(name) {
        return `Download ${name} artifacts`;
      },

      /**
       * Shows a dialog when the user clicks in the cancel button.
       * We need to prevent the default behavior and stop propagation because the
       * link relies on UJS.
       *
       * @param  {Event} event
       */
      confirmAction(event) {
        if (!confirm('Are you sure you want to cancel this pipeline?')) {
          event.preventDefault();
          event.stopPropagation();
        }
      },
    },

    data() {
      return { playIconSvg };
    },

    template: `
      <td class="pipeline-actions">
        <div class="pull-right">
          <div class="btn-group">
            <div class="btn-group" v-if="actions">
              <button
                class="dropdown-toggle btn btn-default has-tooltip js-pipeline-dropdown-manual-actions"
                data-toggle="dropdown"
                title="Manual job"
                data-placement="top"
                data-container="body"
                aria-label="Manual job">
                <span v-html="playIconSvg" aria-hidden="true"></span>
                <i class="fa fa-caret-down" aria-hidden="true"></i>
              </button>
              <ul class="dropdown-menu dropdown-menu-align-right">
                <li v-for='action in pipeline.details.manual_actions'>
                  <a
                    rel="nofollow"
                    data-method="post"
                    :href="action.path" >
                    <span v-html="playIconSvg" aria-hidden="true"></span>
                    <span>{{action.name}}</span>
                  </a>
                </li>
              </ul>
            </div>

            <div class="btn-group" v-if="artifacts">
              <button
                class="dropdown-toggle btn btn-default build-artifacts has-tooltip js-pipeline-dropdown-download"
                title="Artifacts"
                data-placement="top"
                data-container="body"
                data-toggle="dropdown"
                aria-label="Artifacts">
                <i class="fa fa-download" aria-hidden="true"></i>
                <i class="fa fa-caret-down" aria-hidden="true"></i>
              </button>
              <ul class="dropdown-menu dropdown-menu-align-right">
                <li v-for='artifact in pipeline.details.artifacts'>
                  <a
                    rel="nofollow"
                    :href="artifact.path">
                    <i class="fa fa-download" aria-hidden="true"></i>
                    <span>{{download(artifact.name)}}</span>
                  </a>
                </li>
              </ul>
            </div>
            <div class="btn-group" v-if="pipeline.flags.retryable">
              <a
                class="btn btn-default btn-retry has-tooltip"
                title="Retry"
                rel="nofollow"
                data-method="post"
                data-placement="top"
                data-container="body"
                data-toggle="dropdown"
                :href='pipeline.retry_path'
                aria-label="Retry">
                <i class="fa fa-repeat" aria-hidden="true"></i>
              </a>
            </div>
            <div class="btn-group" v-if="pipeline.flags.cancelable">
              <a
                class="btn btn-remove has-tooltip"
                title="Cancel"
                rel="nofollow"
                data-method="post"
                data-placement="top"
                data-container="body"
                data-toggle="dropdown"
                :href='pipeline.cancel_path'
                aria-label="Cancel">
                <i class="fa fa-remove" aria-hidden="true"></i>
              </a>
            </div>
          </div>
        </div>
      </td>
    `,
  });
})(window.gl || (window.gl = {}));