debian-mirror-gitlab/app/assets/javascripts/pipelines/components/pipelines_actions.vue

110 lines
2.6 KiB
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
2018-12-05 23:21:45 +05:30
import { s__, sprintf } from '~/locale';
import { formatTime } from '~/lib/utils/datetime_utility';
2018-11-08 19:23:39 +05:30
import eventHub from '../event_hub';
import icon from '../../vue_shared/components/icon.vue';
import tooltip from '../../vue_shared/directives/tooltip';
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
export default {
directives: {
tooltip,
},
components: {
icon,
},
props: {
actions: {
type: Array,
required: true,
2017-09-10 17:25:29 +05:30
},
2018-11-08 19:23:39 +05:30
},
data() {
return {
isLoading: false,
};
},
methods: {
2018-12-05 23:21:45 +05:30
onClickAction(action) {
if (action.scheduled_at) {
const confirmationMessage = sprintf(
s__(
"DelayedJobs|Are you sure you want to run %{jobName} immediately? This job will run automatically after it's timer finishes.",
),
{ jobName: action.name },
);
// https://gitlab.com/gitlab-org/gitlab-ce/issues/52156
// eslint-disable-next-line no-alert
if (!window.confirm(confirmationMessage)) {
return;
}
}
2018-11-08 19:23:39 +05:30
this.isLoading = true;
2017-09-10 17:25:29 +05:30
2018-12-05 23:21:45 +05:30
eventHub.$emit('postAction', action.path);
2018-11-08 19:23:39 +05:30
},
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
isActionDisabled(action) {
if (action.playable === undefined) {
return false;
}
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
return !action.playable;
2017-09-10 17:25:29 +05:30
},
2018-12-05 23:21:45 +05:30
remainingTime(action) {
const remainingMilliseconds = new Date(action.scheduled_at).getTime() - Date.now();
return formatTime(Math.max(0, remainingMilliseconds));
},
2018-11-08 19:23:39 +05:30
},
};
2017-09-10 17:25:29 +05:30
</script>
<template>
<div class="btn-group">
<button
v-tooltip
2018-11-08 19:23:39 +05:30
:disabled="isLoading"
2017-09-10 17:25:29 +05:30
type="button"
class="dropdown-new btn btn-default js-pipeline-dropdown-manual-actions"
title="Manual job"
data-toggle="dropdown"
data-placement="top"
aria-label="Manual job"
2018-03-17 18:26:18 +05:30
>
<icon
name="play"
class="icon-play"
/>
2017-09-10 17:25:29 +05:30
<i
class="fa fa-caret-down"
aria-hidden="true">
</i>
2018-12-05 23:21:45 +05:30
<gl-loading-icon v-if="isLoading" />
2017-09-10 17:25:29 +05:30
</button>
2018-11-08 19:23:39 +05:30
<ul class="dropdown-menu dropdown-menu-right">
2018-03-17 18:26:18 +05:30
<li
2018-12-05 23:21:45 +05:30
v-for="action in actions"
:key="action.path"
2018-03-17 18:26:18 +05:30
>
2017-09-10 17:25:29 +05:30
<button
2018-11-08 19:23:39 +05:30
:class="{ disabled: isActionDisabled(action) }"
:disabled="isActionDisabled(action)"
2017-09-10 17:25:29 +05:30
type="button"
class="js-pipeline-action-link no-btn btn"
2018-12-05 23:21:45 +05:30
@click="onClickAction(action)"
2018-03-17 18:26:18 +05:30
>
{{ action.name }}
2018-12-05 23:21:45 +05:30
<span
v-if="action.scheduled_at"
class="pull-right"
>
<icon name="clock" />
{{ remainingTime(action) }}
</span>
2017-09-10 17:25:29 +05:30
</button>
</li>
</ul>
</div>
</template>