debian-mirror-gitlab/app/assets/javascripts/environments/components/environment_actions.vue

108 lines
2.7 KiB
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2020-01-01 13:55:28 +05:30
import { GlLoadingIcon } from '@gitlab/ui';
2019-09-30 21:07:59 +05:30
import { __, s__, sprintf } from '~/locale';
2018-12-13 13:39:08 +05:30
import { formatTime } from '~/lib/utils/datetime_utility';
2018-11-18 11:00:15 +05:30
import Icon from '~/vue_shared/components/icon.vue';
import eventHub from '../event_hub';
import tooltip from '../../vue_shared/directives/tooltip';
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
export default {
directives: {
tooltip,
},
components: {
Icon,
2018-12-13 13:39:08 +05:30
GlLoadingIcon,
2018-11-18 11:00:15 +05:30
},
props: {
actions: {
type: Array,
required: false,
default: () => [],
2017-08-17 22:00:37 +05:30
},
2018-11-18 11:00:15 +05:30
},
data() {
return {
isLoading: false,
};
},
computed: {
title() {
2019-09-30 21:07:59 +05:30
return __('Deploy to...');
2018-03-17 18:26:18 +05:30
},
2018-11-18 11:00:15 +05:30
},
methods: {
2018-12-13 13:39:08 +05:30
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 it's timer finishes.",
),
{ jobName: action.name },
);
2019-12-04 20:38:33 +05:30
// https://gitlab.com/gitlab-org/gitlab-foss/issues/52156
2018-12-13 13:39:08 +05:30
// eslint-disable-next-line no-alert
if (!window.confirm(confirmationMessage)) {
return;
}
}
2018-11-18 11:00:15 +05:30
this.isLoading = true;
2017-08-17 22:00:37 +05:30
2018-12-13 13:39:08 +05:30
eventHub.$emit('postAction', { endpoint: action.playPath });
2018-11-18 11:00:15 +05:30
},
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
isActionDisabled(action) {
if (action.playable === undefined) {
return false;
}
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
return !action.playable;
2017-08-17 22:00:37 +05:30
},
2018-12-13 13:39:08 +05:30
remainingTime(action) {
const remainingMilliseconds = new Date(action.scheduledAt).getTime() - Date.now();
return formatTime(Math.max(0, remainingMilliseconds));
},
2018-11-18 11:00:15 +05:30
},
};
2017-08-17 22:00:37 +05:30
</script>
<template>
2019-02-15 15:39:39 +05:30
<div class="btn-group" role="group">
2017-08-17 22:00:37 +05:30
<button
2017-09-10 17:25:29 +05:30
v-tooltip
2018-11-08 19:23:39 +05:30
:title="title"
:aria-label="title"
:disabled="isLoading"
2017-08-17 22:00:37 +05:30
type="button"
2018-12-13 13:39:08 +05:30
class="dropdown btn btn-default dropdown-new js-environment-actions-dropdown"
2017-08-17 22:00:37 +05:30
data-container="body"
data-toggle="dropdown"
2018-03-17 18:26:18 +05:30
>
2017-08-17 22:00:37 +05:30
<span>
2019-09-30 21:07:59 +05:30
<icon name="play" />
<icon name="chevron-down" />
2018-12-05 23:21:45 +05:30
<gl-loading-icon v-if="isLoading" />
2017-08-17 22:00:37 +05:30
</span>
</button>
2018-11-08 19:23:39 +05:30
<ul class="dropdown-menu dropdown-menu-right">
2019-02-15 15:39:39 +05:30
<li v-for="(action, i) in actions" :key="i">
2017-08-17 22:00:37 +05:30
<button
2018-11-08 19:23:39 +05:30
:class="{ disabled: isActionDisabled(action) }"
:disabled="isActionDisabled(action)"
2017-08-17 22:00:37 +05:30
type="button"
2018-12-13 13:39:08 +05:30
class="js-manual-action-link no-btn btn d-flex align-items-center"
2019-03-02 22:35:43 +05:30
@click="onClickAction(action)"
2018-03-17 18:26:18 +05:30
>
2019-09-30 21:07:59 +05:30
<span class="flex-fill">{{ action.name }}</span>
2019-02-15 15:39:39 +05:30
<span v-if="action.scheduledAt" class="text-secondary">
2019-09-30 21:07:59 +05:30
<icon name="clock" />
{{ remainingTime(action) }}
2018-12-13 13:39:08 +05:30
</span>
2017-08-17 22:00:37 +05:30
</button>
</li>
</ul>
</div>
</template>