135 lines
4.3 KiB
Vue
135 lines
4.3 KiB
Vue
|
|
<template>
|
||
|
|
<Portal v-if="fullScreen">
|
||
|
|
<div v-if="containerVisible" :ref="maskRef" :class="[cx('mask'), maskClass]" role="dialog" :aria-modal="fullScreen ? 'true' : undefined" v-bind="ptm('mask')">
|
||
|
|
<transition name="p-galleria" @before-enter="onBeforeEnter" @enter="onEnter" @before-leave="onBeforeLeave" @leave="onLeave" @after-leave="onAfterLeave" appear v-bind="ptm('transition')">
|
||
|
|
<GalleriaContent v-if="visible" :ref="containerRef" v-focustrap @mask-hide="maskHide" :templates="$slots" @activeitem-change="onActiveItemChange" :pt="pt" :unstyled="unstyled"
|
||
|
|
v-bind="$props" />
|
||
|
|
</transition>
|
||
|
|
</div>
|
||
|
|
</Portal>
|
||
|
|
<GalleriaContent v-else :templates="$slots" @activeitem-change="onActiveItemChange" :pt="pt" :unstyled="unstyled" v-bind="$props" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { addClass, focus } from '@primeuix/utils/dom';
|
||
|
|
import { ZIndex } from '@primeuix/utils/zindex';
|
||
|
|
import FocusTrap from 'primevue/focustrap';
|
||
|
|
import Portal from 'primevue/portal';
|
||
|
|
import { blockBodyScroll, unblockBodyScroll } from 'primevue/utils';
|
||
|
|
import BaseGalleria from './BaseGalleria.vue';
|
||
|
|
import GalleriaContent from './GalleriaContent.vue';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'Galleria',
|
||
|
|
extends: BaseGalleria,
|
||
|
|
inheritAttrs: false,
|
||
|
|
emits: ['update:activeIndex', 'update:visible'],
|
||
|
|
container: null,
|
||
|
|
mask: null,
|
||
|
|
documentKeydownListener: null,
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
containerVisible: this.visible,
|
||
|
|
target: null
|
||
|
|
};
|
||
|
|
},
|
||
|
|
updated() {
|
||
|
|
if (this.fullScreen && this.visible) {
|
||
|
|
this.containerVisible = this.visible;
|
||
|
|
}
|
||
|
|
},
|
||
|
|
beforeUnmount() {
|
||
|
|
if (this.fullScreen) {
|
||
|
|
unblockBodyScroll();
|
||
|
|
}
|
||
|
|
|
||
|
|
this.mask = null;
|
||
|
|
|
||
|
|
if (this.container) {
|
||
|
|
ZIndex.clear(this.container);
|
||
|
|
this.container = null;
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
onBeforeEnter(el) {
|
||
|
|
ZIndex.set('modal', el, this.baseZIndex || this.$primevue.config.zIndex.modal);
|
||
|
|
},
|
||
|
|
onEnter(el) {
|
||
|
|
this.target = document.activeElement;
|
||
|
|
this.mask.style.zIndex = String(parseInt(el.style.zIndex, 10) - 1);
|
||
|
|
blockBodyScroll();
|
||
|
|
this.focus();
|
||
|
|
this.bindGlobalListeners();
|
||
|
|
},
|
||
|
|
onBeforeLeave() {
|
||
|
|
!this.isUnstyled && addClass(this.mask, 'p-overlay-mask-leave-active');
|
||
|
|
},
|
||
|
|
onLeave() {
|
||
|
|
focus(this.target);
|
||
|
|
this.target = null;
|
||
|
|
},
|
||
|
|
onAfterLeave(el) {
|
||
|
|
ZIndex.clear(el);
|
||
|
|
this.containerVisible = false;
|
||
|
|
unblockBodyScroll();
|
||
|
|
this.unbindGlobalListeners();
|
||
|
|
},
|
||
|
|
onActiveItemChange(index) {
|
||
|
|
if (this.activeIndex !== index) {
|
||
|
|
this.$emit('update:activeIndex', index);
|
||
|
|
}
|
||
|
|
},
|
||
|
|
maskHide() {
|
||
|
|
this.$emit('update:visible', false);
|
||
|
|
},
|
||
|
|
containerRef(el) {
|
||
|
|
this.container = el;
|
||
|
|
},
|
||
|
|
maskRef(el) {
|
||
|
|
this.mask = el;
|
||
|
|
},
|
||
|
|
onKeyDown(event) {
|
||
|
|
if (event.code === 'Escape') {
|
||
|
|
this.maskHide();
|
||
|
|
}
|
||
|
|
},
|
||
|
|
bindDocumentKeyDownListener() {
|
||
|
|
if (!this.documentKeydownListener) {
|
||
|
|
this.documentKeydownListener = this.onKeyDown.bind(this);
|
||
|
|
window.document.addEventListener('keydown', this.documentKeydownListener);
|
||
|
|
}
|
||
|
|
},
|
||
|
|
unbindDocumentKeyDownListener() {
|
||
|
|
if (this.documentKeydownListener) {
|
||
|
|
window.document.removeEventListener('keydown', this.documentKeydownListener);
|
||
|
|
this.documentKeydownListener = null;
|
||
|
|
}
|
||
|
|
},
|
||
|
|
bindGlobalListeners() {
|
||
|
|
if (this.fullScreen) {
|
||
|
|
this.bindDocumentKeyDownListener();
|
||
|
|
}
|
||
|
|
},
|
||
|
|
unbindGlobalListeners() {
|
||
|
|
if (this.fullScreen) {
|
||
|
|
this.unbindDocumentKeyDownListener();
|
||
|
|
}
|
||
|
|
},
|
||
|
|
focus() {
|
||
|
|
let focusTarget = this.container.$el.querySelector('[autofocus]');
|
||
|
|
|
||
|
|
if (focusTarget) {
|
||
|
|
focusTarget.focus();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
components: {
|
||
|
|
GalleriaContent: GalleriaContent,
|
||
|
|
Portal: Portal
|
||
|
|
},
|
||
|
|
directives: {
|
||
|
|
focustrap: FocusTrap
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|