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

98 lines
2.4 KiB
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2020-04-22 19:07:51 +05:30
import { GlTooltipDirective, GlDeprecatedButton, GlLoadingIcon } from '@gitlab/ui';
2018-10-15 14:42:47 +05:30
import axios from '~/lib/utils/axios_utils';
import { dasherize } from '~/lib/utils/text_utility';
import { __ } from '~/locale';
import createFlash from '~/flash';
import Icon from '~/vue_shared/components/icon.vue';
2018-05-09 12:01:36 +05:30
/**
2018-10-15 14:42:47 +05:30
* Renders either a cancel, retry or play icon button and handles the post request
*
* Used in:
* - mr widget mini pipeline graph: `mr_widget_pipeline.vue`
* - pipelines table
* - pipelines table in merge request page
* - pipelines table in commit page
2018-11-08 19:23:39 +05:30
* - pipelines detail page in big graph
2018-05-09 12:01:36 +05:30
*/
export default {
components: {
Icon,
2020-04-22 19:07:51 +05:30
GlDeprecatedButton,
2019-07-31 22:56:46 +05:30
GlLoadingIcon,
2018-05-09 12:01:36 +05:30
},
directives: {
2019-02-15 15:39:39 +05:30
GlTooltip: GlTooltipDirective,
2018-05-09 12:01:36 +05:30
},
props: {
tooltipText: {
type: String,
required: true,
},
link: {
type: String,
required: true,
},
actionIcon: {
type: String,
required: true,
},
},
2018-10-15 14:42:47 +05:30
data() {
return {
isDisabled: false,
2019-07-31 22:56:46 +05:30
isLoading: false,
2018-10-15 14:42:47 +05:30
};
},
2018-05-09 12:01:36 +05:30
computed: {
cssClass() {
const actionIconDash = dasherize(this.actionIcon);
return `${actionIconDash} js-icon-${actionIconDash}`;
},
},
methods: {
2018-10-15 14:42:47 +05:30
/**
* The request should not be handled here.
* However due to this component being used in several
* different apps it avoids repetition & complexity.
*
*/
2018-05-09 12:01:36 +05:30
onClickAction() {
2019-02-15 15:39:39 +05:30
this.$root.$emit('bv::hide::tooltip', `js-ci-action-${this.link}`);
2018-10-15 14:42:47 +05:30
this.isDisabled = true;
2019-07-31 22:56:46 +05:30
this.isLoading = true;
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
axios
.post(`${this.link}.json`)
2018-10-15 14:42:47 +05:30
.then(() => {
this.isDisabled = false;
2019-07-31 22:56:46 +05:30
this.isLoading = false;
2018-10-15 14:42:47 +05:30
this.$emit('pipelineActionRequestComplete');
})
.catch(() => {
this.isDisabled = false;
2019-07-31 22:56:46 +05:30
this.isLoading = false;
2018-10-15 14:42:47 +05:30
createFlash(__('An error occurred while making the request.'));
});
2017-08-17 22:00:37 +05:30
},
2018-05-09 12:01:36 +05:30
},
};
2017-08-17 22:00:37 +05:30
</script>
<template>
2020-04-22 19:07:51 +05:30
<gl-deprecated-button
2019-02-15 15:39:39 +05:30
:id="`js-ci-action-${link}`"
v-gl-tooltip="{ boundary: 'viewport' }"
2017-08-17 22:00:37 +05:30
:title="tooltipText"
2018-11-08 19:23:39 +05:30
:class="cssClass"
:disabled="isDisabled"
2019-12-26 22:10:19 +05:30
class="js-ci-action btn btn-blank btn-transparent ci-action-icon-container ci-action-icon-wrapper d-flex align-items-center justify-content-center"
2018-11-08 19:23:39 +05:30
@click="onClickAction"
2018-03-17 18:26:18 +05:30
>
2019-07-31 22:56:46 +05:30
<gl-loading-icon v-if="isLoading" class="js-action-icon-loading" />
<icon v-else :name="actionIcon" />
2020-04-22 19:07:51 +05:30
</gl-deprecated-button>
2017-08-17 22:00:37 +05:30
</template>