summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment_actions.vue
blob: a2448520a5f6695b24944cd40466f98a776c7159 (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
<script>
import playIconSvg from 'icons/_icon_play.svg';
import eventHub from '../event_hub';
import loadingIcon from '../../vue_shared/components/loading_icon.vue';

export default {
  props: {
    actions: {
      type: Array,
      required: false,
      default: () => [],
    },
  },

  components: {
    loadingIcon,
  },

  data() {
    return {
      playIconSvg,
      isLoading: false,
    };
  },

  computed: {
    title() {
      return 'Deploy to...';
    },
  },

  methods: {
    onClickAction(endpoint) {
      this.isLoading = true;

      $(this.$refs.tooltip).tooltip('destroy');

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

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

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

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