debian-mirror-gitlab/app/assets/javascripts/ide/components/cannot_push_code_alert.vue
2021-04-29 21:17:54 +05:30

41 lines
752 B
Vue

<script>
import { GlAlert, GlButton } from '@gitlab/ui';
export default {
components: {
GlAlert,
GlButton,
},
props: {
message: {
type: String,
required: true,
},
action: {
type: Object,
required: false,
default: null,
},
},
computed: {
hasAction() {
return Boolean(this.action?.href);
},
actionButtonMethod() {
return this.action?.isForm ? 'post' : null;
},
},
};
</script>
<template>
<gl-alert :dismissible="false">
{{ message }}
<template v-if="hasAction" #actions>
<gl-button variant="confirm" :href="action.href" :data-method="actionButtonMethod">
{{ action.text }}
</gl-button>
</template>
</gl-alert>
</template>