mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
72 lines
1.5 KiB
Vue
72 lines
1.5 KiB
Vue
<template>
|
|
<modal :show.sync="show" :on-close="cancel">
|
|
<div class="h-auto overflow-auto flex flex-col">
|
|
<woot-modal-header :header-title="title" :header-content="description" />
|
|
<div class="flex flex-row justify-end gap-2 py-4 px-6 w-full">
|
|
<woot-button variant="clear" @click="cancel">
|
|
{{ cancelLabel }}
|
|
</woot-button>
|
|
<woot-button @click="confirm">
|
|
{{ confirmLabel }}
|
|
</woot-button>
|
|
</div>
|
|
</div>
|
|
</modal>
|
|
</template>
|
|
<script>
|
|
import Modal from '../../Modal.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Modal,
|
|
},
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: 'This is a title',
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: 'This is your description',
|
|
},
|
|
confirmLabel: {
|
|
type: String,
|
|
default: 'Yes',
|
|
},
|
|
cancelLabel: {
|
|
type: String,
|
|
default: 'No',
|
|
},
|
|
},
|
|
data: () => ({
|
|
show: false,
|
|
resolvePromise: undefined,
|
|
rejectPromise: undefined,
|
|
}),
|
|
|
|
methods: {
|
|
showConfirmation() {
|
|
this.show = true;
|
|
return new Promise((resolve, reject) => {
|
|
this.resolvePromise = resolve;
|
|
this.rejectPromise = reject;
|
|
});
|
|
},
|
|
confirm() {
|
|
this.resolvePromise(true);
|
|
this.show = false;
|
|
},
|
|
|
|
cancel() {
|
|
this.resolvePromise(false);
|
|
this.show = false;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.modal-container .modal-footer {
|
|
padding: var(--space-normal) var(--space-medium);
|
|
}
|
|
</style>
|