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

108 lines
2.5 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';
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';
2019-01-03 12:48:30 +05:30
import tooltip from '../../vue_shared/directives/tooltip';
import GlCountdown from '~/vue_shared/components/gl_countdown.vue';
import { GlLoadingIcon } from '@gitlab-org/gitlab-ui';
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
export default {
directives: {
2019-01-03 12:48:30 +05:30
tooltip,
2018-11-08 19:23:39 +05:30
},
components: {
2018-12-13 13:39:08 +05:30
Icon,
GlCountdown,
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-01-03 12:48:30 +05:30
<button
v-tooltip
2018-11-08 19:23:39 +05:30
:disabled="isLoading"
2019-01-03 12:48:30 +05:30
type="button"
2017-09-10 17:25:29 +05:30
class="dropdown-new btn btn-default js-pipeline-dropdown-manual-actions"
title="Manual job"
data-toggle="dropdown"
2019-01-03 12:48:30 +05:30
data-placement="top"
2017-09-10 17:25:29 +05:30
aria-label="Manual job"
2018-03-17 18:26:18 +05:30
>
2019-01-03 12:48:30 +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-01-03 12:48:30 +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-01-03 12:48:30 +05:30
<li
v-for="action in actions"
:key="action.path"
>
<button
2018-11-08 19:23:39 +05:30
:class="{ disabled: isActionDisabled(action) }"
:disabled="isActionDisabled(action)"
2019-01-03 12:48:30 +05:30
type="button"
2017-09-10 17:25:29 +05:30
class="js-pipeline-action-link no-btn btn"
2019-01-03 12:48:30 +05:30
@click="onClickAction(action)"
2018-03-17 18:26:18 +05:30
>
{{ action.name }}
2019-01-03 12:48:30 +05:30
<span
v-if="action.scheduled_at"
class="pull-right"
>
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-01-03 12:48:30 +05:30
</button>
2017-09-10 17:25:29 +05:30
</li>
</ul>
</div>
</template>