mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +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>
126 lines
3.6 KiB
Vue
126 lines
3.6 KiB
Vue
<script setup>
|
|
import { ref, watch, computed } from 'vue';
|
|
import { useKeyboardNavigableList } from 'dashboard/composables/useKeyboardNavigableList';
|
|
|
|
const props = defineProps({
|
|
items: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'canned',
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['mentionSelect']);
|
|
|
|
const mentionsListContainerRef = ref(null);
|
|
const selectedIndex = ref(0);
|
|
|
|
const adjustScroll = () => {
|
|
const container = mentionsListContainerRef.value;
|
|
const item = container.querySelector(`#mention-item-${selectedIndex.value}`);
|
|
if (item) {
|
|
const itemTop = item.offsetTop;
|
|
const itemBottom = itemTop + item.offsetHeight;
|
|
const containerTop = container.scrollTop;
|
|
const containerBottom = containerTop + container.offsetHeight;
|
|
if (itemTop < containerTop) {
|
|
container.scrollTop = itemTop;
|
|
} else if (itemBottom + 34 > containerBottom) {
|
|
container.scrollTop = itemBottom - container.offsetHeight + 34;
|
|
}
|
|
}
|
|
};
|
|
|
|
const onSelect = () => {
|
|
emit('mentionSelect', props.items[selectedIndex.value]);
|
|
};
|
|
|
|
useKeyboardNavigableList({
|
|
items: computed(() => props.items),
|
|
onSelect,
|
|
adjustScroll,
|
|
selectedIndex,
|
|
});
|
|
|
|
watch(
|
|
() => props.items,
|
|
newItems => {
|
|
if (newItems.length < selectedIndex.value + 1) {
|
|
selectedIndex.value = 0;
|
|
}
|
|
}
|
|
);
|
|
|
|
watch(selectedIndex, adjustScroll);
|
|
|
|
const onHover = index => {
|
|
selectedIndex.value = index;
|
|
};
|
|
|
|
const onListItemSelection = index => {
|
|
selectedIndex.value = index;
|
|
onSelect();
|
|
};
|
|
|
|
const variableKey = (item = {}) => {
|
|
return props.type === 'variable' ? `{{${item.label}}}` : `/${item.label}`;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
ref="mentionsListContainerRef"
|
|
class="bg-white dark:bg-slate-800 rounded-md overflow-auto absolute w-full z-20 pb-0 shadow-md left-0 bottom-full max-h-[9.75rem] border border-solid border-slate-100 dark:border-slate-700 mention--box"
|
|
>
|
|
<ul class="mb-0 vertical dropdown menu">
|
|
<woot-dropdown-item
|
|
v-for="(item, index) in items"
|
|
:id="`mention-item-${index}`"
|
|
:key="item.key"
|
|
class="!mb-0"
|
|
@mouseover="onHover(index)"
|
|
>
|
|
<button
|
|
class="flex group flex-col gap-0.5 overflow-hidden cursor-pointer items-start rounded-none py-2.5 px-2.5 justify-center w-full h-full text-left hover:bg-woot-50 dark:hover:bg-woot-800 border-x-0 border-t-0 border-b border-solid border-slate-100 dark:border-slate-700"
|
|
:class="{
|
|
' bg-woot-25 dark:bg-woot-800': index === selectedIndex,
|
|
}"
|
|
@click="onListItemSelection(index)"
|
|
>
|
|
<p
|
|
class="max-w-full min-w-0 mb-0 overflow-hidden text-sm font-medium text-slate-900 dark:text-slate-100 group-hover:text-woot-500 dark:group-hover:text-woot-500 text-ellipsis whitespace-nowrap"
|
|
:class="{
|
|
'text-woot-500 dark:text-woot-500': index === selectedIndex,
|
|
}"
|
|
>
|
|
{{ item.description }}
|
|
</p>
|
|
<p
|
|
class="max-w-full min-w-0 mb-0 overflow-hidden text-xs text-slate-500 dark:text-slate-300 group-hover:text-woot-500 dark:group-hover:text-woot-500 text-ellipsis whitespace-nowrap"
|
|
:class="{
|
|
'text-woot-500 dark:text-woot-500': index === selectedIndex,
|
|
}"
|
|
>
|
|
{{ variableKey(item) }}
|
|
</p>
|
|
</button>
|
|
</woot-dropdown-item>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.mention--box {
|
|
.dropdown-menu__item:last-child > button {
|
|
@apply border-0;
|
|
}
|
|
}
|
|
|
|
.canned-item__button::v-deep .button__content {
|
|
@apply overflow-hidden text-ellipsis whitespace-nowrap;
|
|
}
|
|
</style>
|