summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment_actions.vue
blob: 0b3fef9fcca552e2a9c1bd7fd607891aa4937cdf (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
<script>
  import Icon from '~/vue_shared/components/icon.vue';
  import eventHub from '../event_hub';
  import loadingIcon from '../../vue_shared/components/loading_icon.vue';
  import tooltip from '../../vue_shared/directives/tooltip';

  export default {
    directives: {
      tooltip,
    },
    components: {
      loadingIcon,
      Icon,
    },
    props: {
      actions: {
        type: Array,
        required: false,
        default: () => [],
      },
    },
    data() {
      return {
        isLoading: false,
      };
    },
    computed: {
      title() {
        return 'Deploy to...';
      },
    },
    methods: {
      onClickAction(endpoint) {
        this.isLoading = true;

        eventHub.$emit('postAction', endpoint);
      },

      isActionDisabled(action) {
        if (action.playable === undefined) {
          return false;
        }

        return !action.playable;
      },
    },
  };
</script>
<template>
  <div
    class="btn-group"
    role="group">
    <button
      v-tooltip
      type="button"
      class="dropdown btn btn-default dropdown-new js-dropdown-play-icon-container"
      data-container="body"
      data-toggle="dropdown"
      :title="title"
      :aria-label="title"
      :disabled="isLoading"
    >
      <span>
        <icon
          name="play"
          :size="12"
        />
        <i
          class="fa fa-caret-down"
          aria-hidden="true"
        >
        </i>
        <loading-icon v-if="isLoading" />
      </span>
    </button>

    <ul class="dropdown-menu dropdown-menu-right">
      <li
        v-for="(action, i) in actions"
        :key="i">
        <button
          type="button"
          class="js-manual-action-link no-btn btn"
          @click="onClickAction(action.play_path)"
          :class="{ disabled: isActionDisabled(action) }"
          :disabled="isActionDisabled(action)"
        >
          <icon
            name="play"
            :size="12"
          />
          <span>
            {{ action.name }}
          </span>
        </button>
      </li>
    </ul>
  </div>
</template>