mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
108 lines
2.4 KiB
Vue
108 lines
2.4 KiB
Vue
<template>
|
|
<ds-modal :title="title" :is-open="isOpen" @cancel="cancel">
|
|
<transition name="ds-transition-fade">
|
|
<ds-flex v-if="success" class="hc-modal-success" centered>
|
|
<sweetalert-icon icon="success" />
|
|
</ds-flex>
|
|
</transition>
|
|
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<p v-html="message" />
|
|
|
|
<template slot="footer">
|
|
<base-button
|
|
class="cancel"
|
|
:danger="!modalData.buttons.confirm.danger"
|
|
:icon="modalData.buttons.cancel.icon"
|
|
@click="cancel"
|
|
>
|
|
{{ $t(modalData.buttons.cancel.textIdent) }}
|
|
</base-button>
|
|
|
|
<base-button
|
|
:danger="modalData.buttons.confirm.danger"
|
|
class="confirm"
|
|
:icon="modalData.buttons.confirm.icon"
|
|
:loading="loading"
|
|
@click="confirm"
|
|
>
|
|
{{ $t(modalData.buttons.confirm.textIdent) }}
|
|
</base-button>
|
|
</template>
|
|
</ds-modal>
|
|
</template>
|
|
|
|
<script>
|
|
import { SweetalertIcon } from 'vue-sweetalert-icons'
|
|
|
|
export default {
|
|
name: 'ConfirmModal',
|
|
components: {
|
|
SweetalertIcon,
|
|
},
|
|
props: {
|
|
name: { type: String, default: '' },
|
|
type: { type: String, required: true },
|
|
modalData: { type: Object, required: true },
|
|
id: { type: String, required: true },
|
|
},
|
|
data() {
|
|
return {
|
|
isOpen: true,
|
|
success: false,
|
|
loading: false,
|
|
}
|
|
},
|
|
computed: {
|
|
title() {
|
|
return this.$t(this.modalData.titleIdent)
|
|
},
|
|
message() {
|
|
return this.$t(this.modalData.messageIdent, this.modalData.messageParams)
|
|
},
|
|
},
|
|
methods: {
|
|
async cancel() {
|
|
await this.modalData.buttons.cancel.callback()
|
|
this.isOpen = false
|
|
setTimeout(() => {
|
|
this.$emit('close')
|
|
}, 1000)
|
|
},
|
|
async confirm() {
|
|
this.loading = true
|
|
try {
|
|
await this.modalData.buttons.confirm.callback()
|
|
this.success = true
|
|
setTimeout(() => {
|
|
this.isOpen = false
|
|
setTimeout(() => {
|
|
this.success = false
|
|
this.$emit('close')
|
|
}, 500)
|
|
}, 1500)
|
|
} catch (err) {
|
|
this.isOpen = false
|
|
} finally {
|
|
this.loading = false
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.hc-modal-success {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: #fff;
|
|
opacity: 1;
|
|
z-index: $z-index-modal;
|
|
border-radius: $border-radius-x-large;
|
|
}
|
|
</style>
|