summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/graph/dropdown_action_component.vue
blob: 19cafff4e1c6e098f6d0ac6be9eb9a68625d9d5c (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
<script>
  import getActionIcon from '../../../vue_shared/ci_action_icons';
  import tooltipMixin from '../../../vue_shared/mixins/tooltip';

  /**
   * Renders either a cancel, retry or play icon pointing to the given path.
   * TODO: Remove UJS from here and use an async request instead.
   */
  export default {
    props: {
      tooltipText: {
        type: String,
        required: true,
      },

      link: {
        type: String,
        required: true,
      },

      actionMethod: {
        type: String,
        required: true,
      },

      actionIcon: {
        type: String,
        required: true,
      },
    },

    mixins: [
      tooltipMixin,
    ],

    computed: {
      actionIconSvg() {
        return getActionIcon(this.actionIcon);
      },
    },
  };
</script>
<template>
  <a
    :data-method="actionMethod"
    :title="tooltipText"
    :href="link"
    ref="tooltip"
    rel="nofollow"
    class="ci-action-icon-wrapper js-ci-status-icon"
    data-toggle="tooltip"
    data-container="body"
    v-html="actionIconSvg"
    aria-label="Job's action">
  </a>
</template>