debian-mirror-gitlab/app/assets/javascripts/environments/components/environment_pin.vue
2022-04-04 11:22:00 +05:30

46 lines
981 B
Vue

<script>
/**
* Renders a prevent auto-stop button.
* Used in environments table.
*/
import { GlDropdownItem } from '@gitlab/ui';
import { __ } from '~/locale';
import eventHub from '../event_hub';
import cancelAutoStopMutation from '../graphql/mutations/cancel_auto_stop.mutation.graphql';
export default {
components: {
GlDropdownItem,
},
props: {
autoStopUrl: {
type: String,
required: true,
},
graphql: {
type: Boolean,
required: false,
default: false,
},
},
methods: {
onPinClick() {
if (this.graphql) {
this.$apollo.mutate({
mutation: cancelAutoStopMutation,
variables: { autoStopUrl: this.autoStopUrl },
});
} else {
eventHub.$emit('cancelAutoStop', this.autoStopUrl);
}
},
},
title: __('Prevent auto-stopping'),
};
</script>
<template>
<gl-dropdown-item @click="onPinClick">
{{ $options.title }}
</gl-dropdown-item>
</template>