BigW Consortium Gitlab

environment_actions.vue 1.83 KB
Newer Older
1 2 3
<script>
import playIconSvg from 'icons/_icon_play.svg';
import eventHub from '../event_hub';
4
import loadingIcon from '../../vue_shared/components/loading_icon.vue';
5 6 7 8 9 10 11 12 13 14

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

15 16 17 18
  components: {
    loadingIcon,
  },

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  data() {
    return {
      playIconSvg,
      isLoading: false,
    };
  },

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

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

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

38
      eventHub.$emit('postAction', endpoint);
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
    },

    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"/>
69
        <loading-icon v-if="isLoading" />
70 71 72
      </span>
    </button>

73
    <ul class="dropdown-menu dropdown-menu-align-right">
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
      <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>