summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment_actions.vue
blob: 98c95507168480d16621389e3453d577c4c96616 (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
100
101
102
103
104
105
106
<script>
import { GlDropdown, GlDropdownItem, GlIcon, GlTooltipDirective } from '@gitlab/ui';
import { formatTime } from '~/lib/utils/datetime_utility';
import { __, s__, sprintf } from '~/locale';
import eventHub from '../event_hub';
import actionMutation from '../graphql/mutations/action.mutation.graphql';

export default {
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  components: {
    GlDropdown,
    GlDropdownItem,
    GlIcon,
  },
  props: {
    actions: {
      type: Array,
      required: false,
      default: () => [],
    },
    graphql: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  data() {
    return {
      isLoading: false,
    };
  },
  computed: {
    title() {
      return __('Deploy to...');
    },
  },
  methods: {
    onClickAction(action) {
      if (action.scheduledAt) {
        const confirmationMessage = sprintf(
          s__(
            'DelayedJobs|Are you sure you want to run %{jobName} immediately? Otherwise this job will run automatically after its timer finishes.',
          ),
          { jobName: action.name },
        );
        // https://gitlab.com/gitlab-org/gitlab-foss/issues/52156
        // eslint-disable-next-line no-alert
        if (!window.confirm(confirmationMessage)) {
          return;
        }
      }

      this.isLoading = true;

      if (this.graphql) {
        this.$apollo.mutate({ mutation: actionMutation, variables: { action } });
      } else {
        eventHub.$emit('postAction', { endpoint: action.playPath });
      }
    },

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

      return !action.playable;
    },

    remainingTime(action) {
      const remainingMilliseconds = new Date(action.scheduledAt).getTime() - Date.now();
      return formatTime(Math.max(0, remainingMilliseconds));
    },
  },
};
</script>
<template>
  <gl-dropdown
    v-gl-tooltip
    :text="title"
    :title="title"
    :loading="isLoading"
    :aria-label="title"
    icon="play"
    text-sr-only
    right
    data-container="body"
    data-testid="environment-actions-button"
  >
    <gl-dropdown-item
      v-for="(action, i) in actions"
      :key="i"
      :disabled="isActionDisabled(action)"
      data-testid="manual-action-link"
      @click="onClickAction(action)"
    >
      <span class="gl-flex-grow-1">{{ action.name }}</span>
      <span v-if="action.scheduledAt" class="gl-text-gray-500 float-right">
        <gl-icon name="clock" />
        {{ remainingTime(action) }}
      </span>
    </gl-dropdown-item>
  </gl-dropdown>
</template>