Fixed dialog transitions

pull/496/head
Cagatay Civici 2020-09-24 15:24:43 +03:00
parent 680db0a923
commit 3d2d2a7a0f
1 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<div :ref="maskRef" :class="maskClass" v-if="visible" @click="onMaskClick"> <div :ref="maskRef" :class="maskClass" v-if="containerVisible" @click="onMaskClick">
<transition name="p-dialog" @before-enter="onBeforeEnter" @enter="onEnter" @before-leave="onBeforeLeave" @leave="onLeave" @after-leave="onAfterLeave" appear> <transition name="p-dialog" @before-enter="onBeforeEnter" @enter="onEnter" @before-leave="onBeforeLeave" @leave="onLeave" @after-leave="onAfterLeave" appear>
<div :ref="containerRef" :class="dialogClass" v-if="containerVisible" v-bind="$attrs" role="dialog" :aria-labelledby="ariaLabelledById" :aria-modal="modal" @click.stop> <div :ref="containerRef" :class="dialogClass" v-if="visible" v-bind="$attrs" role="dialog" :aria-labelledby="ariaLabelledById" :aria-modal="modal" @click.stop>
<div class="p-dialog-header" v-if="showHeader"> <div class="p-dialog-header" v-if="showHeader">
<slot name="header"> <slot name="header">
<span :id="ariaLabelledById" class="p-dialog-title" v-if="header">{{header}}</span> <span :id="ariaLabelledById" class="p-dialog-title" v-if="header">{{header}}</span>
@ -80,7 +80,9 @@ export default {
container: null, container: null,
mask: null, mask: null,
updated() { updated() {
this.containerVisible = this.visible; if (this.visible) {
this.containerVisible = this.visible;
}
}, },
beforeUnmount() { beforeUnmount() {
this.unbindDocumentState(); this.unbindDocumentState();
@ -89,7 +91,7 @@ export default {
}, },
methods: { methods: {
close() { close() {
this.containerVisible = false; this.$emit('update:visible', false);
}, },
onBeforeEnter(el) { onBeforeEnter(el) {
if (this.autoZIndex) { if (this.autoZIndex) {
@ -110,7 +112,7 @@ export default {
this.$emit('hide'); this.$emit('hide');
}, },
onAfterLeave() { onAfterLeave() {
this.$emit('update:visible', false); this.containerVisible = false;
this.unbindDocumentState(); this.unbindDocumentState();
}, },
onMaskClick() { onMaskClick() {