File size: 1,703 Bytes
7929f62 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <!--
Matomo - free/libre analytics platform
@link https://matomo.org
@license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
-->
<template>
<div v-show="modelValue" ref="root">
<slot></slot>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import Matomo from '../Matomo/Matomo';
export default defineComponent({
props: {
/**
* Whether the modal is displayed or not;
*/
modelValue: {
type: Boolean,
required: true,
},
options: {
type: Object,
required: false,
default: () => ({}),
},
},
emits: ['yes', 'no', 'closeEnd', 'close', 'validation', 'update:modelValue'],
activated() {
this.$emit('update:modelValue', false);
},
watch: {
modelValue(newValue, oldValue) {
if (newValue) {
const slotElement = (this.$refs.root as HTMLElement).firstElementChild as HTMLElement;
Matomo.helper.modalConfirm(slotElement, {
yes: () => { this.$emit('yes'); },
no: () => { this.$emit('no'); },
validation: () => { this.$emit('validation'); },
}, {
onCloseEnd: () => {
// materialize removes the child element, so we move it back to the slot
(this.$refs.root as HTMLElement).appendChild(slotElement);
this.$emit('update:modelValue', false);
this.$emit('closeEnd');
},
...this.options,
});
} else if (newValue === false && oldValue === true) {
// the user closed the dialog, e.g. by pressing Esc or clicking away from it
$('.modal.open').modal('close');
this.$emit('close');
}
},
},
});
</script>
|