Fixed #5055 - Calendar: When use with Datatable filter, the calendar would show at the bottom of the page.

pull/5128/head
mertsincan 2024-01-21 11:56:17 +00:00
parent ae81a90b73
commit e3d9f41926
3 changed files with 11 additions and 4 deletions

View File

@ -112,6 +112,7 @@ const BaseDirective = {
el.$instance = el._$instances[name]; // pass instance data to hooks
el.$instance[hook]?.(el, binding, vnode, prevVnode); // handle hook in directive implementation
el[`$${name}`] = el.$instance; // expose all options with $<directive_name>
BaseDirective._hook(name, hook, el, binding, vnode, prevVnode); // handle hooks during directive uses (global and self-definition)
};

View File

@ -22,12 +22,12 @@
<component :is="filterClearIconTemplate || 'FilterSlashIcon'" v-bind="getColumnPT('filterClearIcon')" />
</button>
<Portal>
<transition name="p-connected-overlay" @enter="onOverlayEnter" @leave="onOverlayLeave" @after-leave="onOverlayAfterLeave" v-bind="getColumnPT('transition')">
<transition name="p-connected-overlay" @enter="onOverlayEnter" @after-enter="onOverlayAfterEnter" @leave="onOverlayLeave" @after-leave="onOverlayAfterLeave" v-bind="getColumnPT('transition')">
<div
v-if="overlayVisible"
:ref="overlayRef"
:id="overlayId"
v-focustrap="{ autoFocus: true }"
v-focustrap
:aria-modal="overlayVisible"
role="dialog"
:class="[cx('filterOverlay'), filterMenuClass]"
@ -550,6 +550,9 @@ export default {
OverlayEventBus.on('overlay-click', this.overlayEventListener);
},
onOverlayAfterEnter() {
this.overlay?.$focustrap?.autoFocus();
},
onOverlayLeave() {
this.onOverlayHide();
},

View File

@ -8,7 +8,7 @@ const FocusTrap = BaseFocusTrap.extend('focustrap', {
if (!disabled) {
this.createHiddenFocusableElements(el, binding);
this.bind(el, binding);
this.autoFocus(el, binding);
this.autoElementFocus(el, binding);
}
el.setAttribute('data-pd-focustrap', true);
@ -64,7 +64,10 @@ const FocusTrap = BaseFocusTrap.extend('focustrap', {
el.$_pfocustrap_focusinlistener && el.removeEventListener('focusin', el.$_pfocustrap_focusinlistener) && (el.$_pfocustrap_focusinlistener = null);
el.$_pfocustrap_focusoutlistener && el.removeEventListener('focusout', el.$_pfocustrap_focusoutlistener) && (el.$_pfocustrap_focusoutlistener = null);
},
autoFocus(el, binding) {
autoFocus(options) {
this.autoElementFocus(this.$el, { value: { ...options, autoFocus: true } });
},
autoElementFocus(el, binding) {
const { autoFocusSelector = '', firstFocusableSelector = '', autoFocus = false } = binding.value || {};
let focusableElement = DomHandler.getFirstFocusableElement(el, `[autofocus]${this.getComputedSelector(autoFocusSelector)}`);