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

104 lines
2.7 KiB
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
2021-03-11 19:13:27 +05:30
import { GlDropdown, GlDropdownItem, GlIcon, GlTooltipDirective } from '@gitlab/ui';
import createFlash from '~/flash';
2019-10-12 21:52:04 +05:30
import axios from '~/lib/utils/axios_utils';
import { s__, __, sprintf } from '~/locale';
2019-02-15 15:39:39 +05:30
import GlCountdown from '~/vue_shared/components/gl_countdown.vue';
2020-07-28 23:09:34 +05:30
import eventHub from '../../event_hub';
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
GlCountdown,
2021-03-11 19:13:27 +05:30
GlDropdown,
GlDropdownItem,
GlIcon,
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__(
2021-02-22 17:27:13 +05:30
'DelayedJobs|Are you sure you want to run %{jobName} immediately? Otherwise this job will run automatically after its timer finishes.',
2018-12-05 23:21:45 +05:30
),
{ jobName: action.name },
);
2019-12-04 20:38:33 +05:30
// https://gitlab.com/gitlab-org/gitlab-foss/issues/52156
2018-12-05 23:21:45 +05:30
// 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
2019-10-12 21:52:04 +05:30
/**
* Ideally, the component would not make an api call directly.
* However, in order to use the eventhub and know when to
* toggle back the `isLoading` property we'd need an ID
* to track the request with a wacther - since this component
* is rendered at least 20 times in the same page, moving the
* api call directly here is the most performant solution
*/
axios
.post(`${action.path}.json`)
.then(() => {
this.isLoading = false;
eventHub.$emit('updateTable');
})
.catch(() => {
this.isLoading = false;
2021-03-11 19:13:27 +05:30
createFlash({ message: __('An error occurred while making the request.') });
2019-10-12 21:52:04 +05:30
});
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>
2021-03-11 19:13:27 +05:30
<gl-dropdown
v-gl-tooltip
:title="__('Run manual or delayed jobs')"
:loading="isLoading"
data-testid="pipelines-manual-actions-dropdown"
right
2021-04-17 20:07:23 +05:30
lazy
2021-03-11 19:13:27 +05:30
icon="play"
>
<gl-dropdown-item
v-for="action in actions"
:key="action.path"
:disabled="isActionDisabled(action)"
@click="onClickAction(action)"
2018-03-17 18:26:18 +05:30
>
2021-03-11 19:13:27 +05:30
<div class="gl-display-flex gl-justify-content-space-between gl-flex-wrap">
{{ action.name }}
<span v-if="action.scheduled_at">
<gl-icon name="clock" />
<gl-countdown :end-date-string="action.scheduled_at" />
</span>
</div>
</gl-dropdown-item>
</gl-dropdown>
2017-09-10 17:25:29 +05:30
</template>