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

94 lines
2.4 KiB
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
2019-02-15 15:39:39 +05:30
import { GlButton, GlTooltipDirective, GlLoadingIcon } from '@gitlab/ui';
2018-12-05 23:21:45 +05:30
import { s__, sprintf } from '~/locale';
2019-02-15 15:39:39 +05:30
import GlCountdown from '~/vue_shared/components/gl_countdown.vue';
2018-11-08 19:23:39 +05:30
import eventHub from '../event_hub';
2018-12-13 13:39:08 +05:30
import Icon from '../../vue_shared/components/icon.vue';
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
export default {
directives: {
2019-02-15 15:39:39 +05:30
GlTooltip: GlTooltipDirective,
2018-11-08 19:23:39 +05:30
},
components: {
2018-12-13 13:39:08 +05:30
Icon,
GlCountdown,
2019-02-15 15:39:39 +05:30
GlButton,
2018-12-13 13:39:08 +05:30
GlLoadingIcon,
2018-11-08 19:23:39 +05:30
},
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__(
2018-12-13 13:39:08 +05:30
"DelayedJobs|Are you sure you want to run %{jobName} immediately? Otherwise this job will run automatically after it's timer finishes.",
2018-12-05 23:21:45 +05:30
),
{ 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-11-08 19:23:39 +05:30
},
};
2017-09-10 17:25:29 +05:30
</script>
<template>
<div class="btn-group">
2019-07-07 11:18:12 +05:30
<button
2019-02-15 15:39:39 +05:30
v-gl-tooltip
2019-07-07 11:18:12 +05:30
type="button"
2018-11-08 19:23:39 +05:30
:disabled="isLoading"
2017-09-10 17:25:29 +05:30
class="dropdown-new btn btn-default js-pipeline-dropdown-manual-actions"
2019-07-07 11:18:12 +05:30
:title="__('Manual job')"
2017-09-10 17:25:29 +05:30
data-toggle="dropdown"
2019-07-07 11:18:12 +05:30
:aria-label="__('Manual job')"
2018-03-17 18:26:18 +05:30
>
2019-07-07 11:18:12 +05:30
<icon name="play" class="icon-play" />
<i class="fa fa-caret-down" aria-hidden="true"></i>
2018-12-05 23:21:45 +05:30
<gl-loading-icon v-if="isLoading" />
2019-07-07 11:18:12 +05:30
</button>
2017-09-10 17:25:29 +05:30
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 in actions" :key="action.path">
<gl-button
2018-11-08 19:23:39 +05:30
:class="{ disabled: isActionDisabled(action) }"
:disabled="isActionDisabled(action)"
2019-07-07 11:18:12 +05:30
class="js-pipeline-action-link no-btn btn d-flex align-items-center justify-content-between flex-wrap"
2019-03-02 22:35:43 +05:30
@click="onClickAction(action)"
2018-03-17 18:26:18 +05:30
>
{{ action.name }}
2019-07-07 11:18:12 +05:30
<span v-if="action.scheduled_at">
2018-12-05 23:21:45 +05:30
<icon name="clock" />
2018-12-13 13:39:08 +05:30
<gl-countdown :end-date-string="action.scheduled_at" />
2018-12-05 23:21:45 +05:30
</span>
2019-02-15 15:39:39 +05:30
</gl-button>
2017-09-10 17:25:29 +05:30
</li>
</ul>
</div>
</template>