summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment_actions.js
blob: 2ffef5f238d772c36da84c7a12ba694e5dac6a99 (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
/* global Flash */
/* eslint-disable no-new */

import playIconSvg from 'icons/_icon_play.svg';
import eventHub from '../event_hub';

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

    service: {
      type: Object,
      required: true,
    },
  },

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

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

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

      this.service.postAction(endpoint)
      .then(() => {
        this.isLoading = false;
        eventHub.$emit('refreshEnvironments');
      })
      .catch(() => {
        this.isLoading = false;
        new Flash('An error occured while making the request.');
      });
    },
  },

  template: `
    <div class="btn-group" role="group">
      <button
        class="dropdown btn btn-default dropdown-new js-dropdown-play-icon-container has-tooltip"
        data-container="body"
        data-toggle="dropdown"
        :title="title"
        :aria-label="title"
        :disabled="isLoading">
        <span>
          <span v-html="playIconSvg"></span>
          <i class="fa fa-caret-down" aria-hidden="true"></i>
          <i v-if="isLoading" class="fa fa-spinner fa-spin" aria-hidden="true"></i>
        </span>
      </button>

      <ul class="dropdown-menu dropdown-menu-align-right">
        <li v-for="action in actions">
          <button
            @click="onClickAction(action.play_path)"
            class="js-manual-action-link no-btn">
            ${playIconSvg}
            <span>
              {{action.name}}
            </span>
          </button>
        </li>
      </ul>
  </div>
  `,
};