mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
This PR has the following changes 1. Fix tab styles issue caused by adding an additional wrapper for getting an element ref on `ChatTypeTabs.vue` 2. Refactor `useKeyboardEvents` composable to not require an element ref. It will use a local abort controller to abort any listener --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
67 lines
1.6 KiB
Vue
67 lines
1.6 KiB
Vue
<script setup>
|
|
import { ref } from 'vue';
|
|
import { useKeyboardEvents } from 'dashboard/composables/useKeyboardEvents';
|
|
|
|
defineProps({
|
|
placement: {
|
|
type: String,
|
|
default: 'top',
|
|
},
|
|
});
|
|
|
|
const dropdownMenuRef = ref(null);
|
|
|
|
const dropdownMenuButtons = () => {
|
|
return dropdownMenuRef.value.querySelectorAll(
|
|
'ul.dropdown li.dropdown-menu__item .button'
|
|
);
|
|
};
|
|
|
|
const getActiveButtonIndex = menuButtons => {
|
|
const focusedButton = dropdownMenuRef.value.querySelector(
|
|
'ul.dropdown li.dropdown-menu__item .button:focus'
|
|
);
|
|
return Array.from(menuButtons).indexOf(focusedButton);
|
|
};
|
|
|
|
const focusButton = (menuButtons, newIndex) => {
|
|
if (menuButtons.length === 0) return;
|
|
menuButtons[newIndex].focus();
|
|
};
|
|
|
|
const focusPreviousButton = menuButtons => {
|
|
const activeIndex = getActiveButtonIndex(menuButtons);
|
|
const newIndex = activeIndex >= 1 ? activeIndex - 1 : menuButtons.length - 1;
|
|
focusButton(menuButtons, newIndex);
|
|
};
|
|
|
|
const focusNextButton = menuButtons => {
|
|
const activeIndex = getActiveButtonIndex(menuButtons);
|
|
const newIndex = activeIndex === menuButtons.length - 1 ? 0 : activeIndex + 1;
|
|
focusButton(menuButtons, newIndex);
|
|
};
|
|
|
|
const keyboardEvents = {
|
|
ArrowUp: {
|
|
action: () => focusPreviousButton(dropdownMenuButtons()),
|
|
allowOnFocusedInput: true,
|
|
},
|
|
ArrowDown: {
|
|
action: () => focusNextButton(dropdownMenuButtons()),
|
|
allowOnFocusedInput: true,
|
|
},
|
|
};
|
|
|
|
useKeyboardEvents(keyboardEvents);
|
|
</script>
|
|
|
|
<template>
|
|
<ul
|
|
ref="dropdownMenuRef"
|
|
class="dropdown menu vertical"
|
|
:class="[placement && `dropdown--${placement}`]"
|
|
>
|
|
<slot />
|
|
</ul>
|
|
</template>
|