mirror of https://github.com/rancher/dashboard.git
104 lines
2.0 KiB
Vue
104 lines
2.0 KiB
Vue
<script>
|
|
import AsyncButton from '@/components/AsyncButton';
|
|
import Card from '@/components/Card';
|
|
import Banner from '@/components/Banner';
|
|
import { exceptionToErrorsArray } from '@/utils/error';
|
|
|
|
export default {
|
|
components: {
|
|
Card,
|
|
AsyncButton,
|
|
Banner,
|
|
},
|
|
props: {
|
|
resources: {
|
|
type: Array,
|
|
required: true
|
|
}
|
|
},
|
|
data() {
|
|
return { errors: [] };
|
|
},
|
|
computed: {
|
|
config() {
|
|
return this.resources[0];
|
|
},
|
|
applyAction() {
|
|
return this.config.applyAction;
|
|
},
|
|
applyMode() {
|
|
return this.config.applyMode || 'create';
|
|
},
|
|
title() {
|
|
return this.config.title;
|
|
},
|
|
body() {
|
|
return this.config.body;
|
|
},
|
|
|
|
},
|
|
methods: {
|
|
close() {
|
|
this.$emit('close');
|
|
},
|
|
|
|
async apply(buttonDone) {
|
|
try {
|
|
await this.applyAction(buttonDone);
|
|
this.close();
|
|
} catch (err) {
|
|
console.error(err); // eslint-disable-line
|
|
this.errors = exceptionToErrorsArray(err);
|
|
buttonDone(false);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Card class="prompt-restore" :show-highlight-border="false">
|
|
<h4 slot="title" class="text-default-text" v-html="title" />
|
|
|
|
<template slot="body">
|
|
<slot name="body">
|
|
<div class="pl-10 pr-10" style="min-height: 50px; display: flex;" v-html="body">
|
|
</div>
|
|
</slot>
|
|
</template>
|
|
|
|
<div slot="actions" class="bottom">
|
|
<Banner v-for="(err, i) in errors" :key="i" color="error" :label="err" />
|
|
<div class="buttons">
|
|
<button class="btn role-secondary mr-10" @click="close">
|
|
{{ t('generic.cancel') }}
|
|
</button>
|
|
|
|
<AsyncButton
|
|
:mode="applyMode"
|
|
@click="apply"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
</template>
|
|
<style lang='scss' scoped>
|
|
.prompt-restore {
|
|
margin: 0;
|
|
}
|
|
.bottom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
.banner {
|
|
margin-top: 0
|
|
}
|
|
.buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
</style>
|