debian-mirror-gitlab/app/assets/javascripts/clusters/components/uninstall_application_button.vue

35 lines
734 B
Vue
Raw Normal View History

2019-07-31 22:56:46 +05:30
<script>
import LoadingButton from '~/vue_shared/components/loading_button.vue';
import { APPLICATION_STATUS } from '~/clusters/constants';
2019-09-30 21:07:59 +05:30
import { __ } from '~/locale';
2019-07-31 22:56:46 +05:30
const { UPDATING, UNINSTALLING } = APPLICATION_STATUS;
export default {
components: {
LoadingButton,
},
props: {
status: {
type: String,
required: true,
},
},
computed: {
disabled() {
return [UNINSTALLING, UPDATING].includes(this.status);
},
loading() {
return this.status === UNINSTALLING;
},
label() {
2019-09-30 21:07:59 +05:30
return this.loading ? __('Uninstalling') : __('Uninstall');
2019-07-31 22:56:46 +05:30
},
},
};
</script>
<template>
<loading-button :label="label" :disabled="disabled" :loading="loading" />
</template>