File: D:/web/matomo.circ/plugins/CoreHome/vue/src/MatomoDialog/MatomoDialog.vue
<!--
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>