Refactor #4433 - OverlayPanel

pull/4476/head
Tuğçe Küçükoğlu 2023-09-19 13:23:50 +03:00
parent 5a1ce104c5
commit 66cfbe54fc
3 changed files with 30 additions and 8 deletions

View File

@ -76,6 +76,10 @@ const OverlayPanelEvents = [
{
name: 'hide',
description: 'Callback to invoke before the overlay is hidden.'
},
{
name: 'container',
description: 'Custom container template.'
}
];

View File

@ -191,6 +191,21 @@ export interface OverlayPanelEmits {
* Callback to invoke when the overlay is hidden.
*/
hide(): void;
/**
* Custom container slot.
* @param {Object} scope - container slot's params.
*/
container(scope: {
/**
* Close overlay panel function.
*/
onClose: () => void;
/**
* Close button keydown function.
* @param {Event} event - Browser event
*/
onKeydown: (event: Event) => void;
}): VNode[];
}
/**

View File

@ -2,6 +2,8 @@
<Portal :appendTo="appendTo">
<transition name="p-overlaypanel" @enter="onEnter" @leave="onLeave" @after-leave="onAfterLeave" v-bind="ptm('transition')">
<div v-if="visible" :ref="containerRef" v-focustrap role="dialog" :aria-modal="visible" @click="onOverlayClick" :class="cx('root')" v-bind="{ ...$attrs, ...ptm('root') }">
<slot v-if="$slots.container" name="container" :onClose="hide" :onKeydown="(event) => onButtonKeydown(event)"></slot>
<template v-else>
<div :class="cx('content')" @click="onContentClick" @mousedown="onContentClick" @keydown="onContentKeydown" v-bind="ptm('content')">
<slot></slot>
</div>
@ -10,6 +12,7 @@
<component :is="closeIcon ? 'span' : 'TimesIcon'" :class="[cx('closeIcon'), closeIcon]" v-bind="ptm('closeIcon')"></component>
</slot>
</button>
</template>
</div>
</transition>
</Portal>