forked from didirus/AstralRinth
* chore: fix typo in status message * feat(labrinth): overhaul malware scanner report storage and routes * chore: address some review comments * feat: add Delphi to Docker Compose `with-delphi` profile * chore: fix unused import Clippy lint * feat(labrinth/delphi): use PAT token authorization with project read scopes * chore: expose file IDs in version queries * fix: accept null decompiled source payloads from Delphi * tweak(labrinth): expose base62 file IDs more consistently for Delphi * feat(labrinth/delphi): support new Delphi report severity field * chore(labrinth): run `cargo sqlx prepare` to fix Docker build errors * tweak: add route for fetching Delphi issue type schema, abstract Labrinth away from issue types * chore: run `cargo sqlx prepare` * chore: fix typo on frontend generated state file message * feat: update to use new Delphi issue schema * wip: tech review endpoints * wip: add ToSchema for dependent types * wip: report issues return * wip * wip: returning more data * wip * Fix up db query * Delphi configuration to talk to Labrinth * Get Delphi working with Labrinth * Add Delphi dummy fixture * Better Delphi logging * Improve utoipa for tech review routes * Add more sorting options for tech review queue * Oops join * New routes for fetching issues and reports * Fix which kind of ID is returned in tech review endpoints * Deduplicate tech review report rows * Reduce info sent for projects * Fetch more thread info * Address PR comments * fix ci * fix postgres version mismatch * fix version creation * Implement routes * fix up tech review * Allow adding a moderation comment to Delphi rejections * fix up rebase * exclude rejected projects from tech review * add status change msg to tech review thread * cargo sqlx prepare * also ignore withheld projects * More filtering on issue search * wip: report routes * Fix up for build * cargo sqlx prepare * fix thread message privacy * New tech review search route * submit route * details have statuses now * add default to drid status * dedup issue details * fix sqlx query on empty files * fixes * Dedupe issue detail statuses and message on entering tech rev * Fix qa issues * Fix qa issues * fix review comments * typos * fix ci * feat: tech review frontend (#4781) * chore: fix typo in status message * feat(labrinth): overhaul malware scanner report storage and routes * chore: address some review comments * feat: add Delphi to Docker Compose `with-delphi` profile * chore: fix unused import Clippy lint * feat(labrinth/delphi): use PAT token authorization with project read scopes * chore: expose file IDs in version queries * fix: accept null decompiled source payloads from Delphi * tweak(labrinth): expose base62 file IDs more consistently for Delphi * feat(labrinth/delphi): support new Delphi report severity field * chore(labrinth): run `cargo sqlx prepare` to fix Docker build errors * tweak: add route for fetching Delphi issue type schema, abstract Labrinth away from issue types * chore: run `cargo sqlx prepare` * chore: fix typo on frontend generated state file message * feat: update to use new Delphi issue schema * wip: tech review endpoints * wip: add ToSchema for dependent types * wip: report issues return * wip * wip: returning more data * wip * Fix up db query * Delphi configuration to talk to Labrinth * Get Delphi working with Labrinth * Add Delphi dummy fixture * Better Delphi logging * Improve utoipa for tech review routes * Add more sorting options for tech review queue * Oops join * New routes for fetching issues and reports * Fix which kind of ID is returned in tech review endpoints * Deduplicate tech review report rows * Reduce info sent for projects * Fetch more thread info * Address PR comments * fix ci * fix ci * fix postgres version mismatch * fix version creation * Implement routes * feat: batch scan alert * feat: layout * feat: introduce surface variables * fix: theme selector * feat: rough draft of tech review card * feat: tab switcher * feat: batch scan btn * feat: api-client module for tech review * draft: impl * feat: auto icons * fix: layout issues * feat: fixes to code blocks + flag labels * feat: temp remove mock data * fix: search sort types * fix: intl & lint * chore: re-enable mock data * fix: flag badges + auto open first issue in file tab * feat: update for new routes * fix: more qa issues * feat: lazy load sources * fix: re-enable auth middleware * feat: impl threads * fix: lint & severity * feat: download btn + switch to using NavTabs with new local mode option * feat: re-add toplevel btns * feat: reports page consistency * fix: consistency on project queue * fix: icons + sizing * fix: colors and gaps * fix: impl endpoints * feat: load all flags on file tab * feat: thread generics changes * feat: more qa * feat: fix collapse * fix: qa * feat: msg modal * fix: ISO import * feat: qa fixes * fix: empty state basic * fix: collapsible region * fix: collapse thread by default * feat: rough draft of new process/flow * fix labrinth build * fix thread message privacy * New tech review search route * feat: qa fixes * feat: QA changes * fix: verdict on detail not whole issue * fix: lint + intl * fix: lint * fix: thread message for tech rev verdict * feat: use anim frames * fix: exports + typecheck * polish: qa changes * feat: qa * feat: qa polish * feat: fix malic modal * fix: lint * fix: qa + lint * fix: pagination * fix: lint * fix: qa * intl extract * fix ci --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: Alejandro González <me@alegon.dev> Co-authored-by: aecsocket <aecsocket@tutanota.com> --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: Alejandro González <me@alegon.dev> Co-authored-by: Calum H. <contact@cal.engineer>
564 lines
14 KiB
Vue
564 lines
14 KiB
Vue
<template>
|
|
<div ref="containerRef" class="relative inline-block w-full">
|
|
<span
|
|
ref="triggerRef"
|
|
role="button"
|
|
tabindex="0"
|
|
class="relative cursor-pointer flex min-h-5 w-full items-center justify-between overflow-hidden rounded-xl bg-button-bg px-4 py-2.5 text-left transition-all duration-200 text-button-text hover:bg-button-bgHover active:bg-button-bgActive"
|
|
:class="[
|
|
triggerClasses,
|
|
{
|
|
'z-[9999]': isOpen,
|
|
'rounded-b-none': shouldRoundBottomCorners,
|
|
'rounded-t-none': shouldRoundTopCorners,
|
|
'cursor-not-allowed opacity-50': disabled,
|
|
},
|
|
]"
|
|
:aria-expanded="isOpen"
|
|
:aria-haspopup="listbox ? 'listbox' : 'menu'"
|
|
:aria-disabled="disabled || undefined"
|
|
@click="handleTriggerClick"
|
|
@keydown="handleTriggerKeydown"
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<slot name="prefix"></slot>
|
|
<span class="text-primary font-semibold leading-tight">
|
|
<slot name="selected">{{ triggerText }}</slot>
|
|
</span>
|
|
</div>
|
|
<div class="flex items-center gap-1">
|
|
<slot name="suffix"></slot>
|
|
<ChevronLeftIcon
|
|
v-if="showChevron"
|
|
class="size-5 shrink-0 transition-transform duration-300"
|
|
:class="isOpen ? (openDirection === 'down' ? 'rotate-90' : '-rotate-90') : '-rotate-90'"
|
|
/>
|
|
</div>
|
|
</span>
|
|
|
|
<Teleport to="#teleports">
|
|
<div
|
|
v-if="isOpen"
|
|
ref="dropdownRef"
|
|
class="fixed z-[9999] flex flex-col overflow-hidden rounded-[14px] bg-surface-4 !border-solid border-0 shadow-2xl"
|
|
:class="[
|
|
shouldRoundBottomCorners
|
|
? 'rounded-t-none !border-t-[1px] !border-t-surface-5'
|
|
: 'rounded-b-none !border-b-[1px] !border-b-surface-5',
|
|
]"
|
|
:style="dropdownStyle"
|
|
:role="listbox ? 'listbox' : 'menu'"
|
|
@mousedown.stop
|
|
@keydown="handleDropdownKeydown"
|
|
>
|
|
<div v-if="searchable" class="p-4">
|
|
<div class="iconified-input w-full border-surface-5 border-[1px] border-solid rounded-xl">
|
|
<SearchIcon aria-hidden="true" />
|
|
<input
|
|
ref="searchInputRef"
|
|
v-model="searchQuery"
|
|
type="text"
|
|
:placeholder="searchPlaceholder"
|
|
class=""
|
|
@keydown.stop="handleSearchKeydown"
|
|
@input="emit('searchInput', searchQuery)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-if="searchable && filteredOptions.length > 0" class="h-px bg-surface-5"></div>
|
|
|
|
<div
|
|
v-if="filteredOptions.length > 0"
|
|
ref="optionsContainerRef"
|
|
class="flex flex-col gap-2 overflow-y-auto p-3"
|
|
:style="{ maxHeight: `${maxHeight}px` }"
|
|
>
|
|
<template v-for="(item, index) in filteredOptions" :key="item.key">
|
|
<div v-if="item.type === 'divider'" class="h-px bg-surface-5"></div>
|
|
<component
|
|
:is="item.type === 'link' ? 'a' : 'span'"
|
|
v-else
|
|
:ref="(el: HTMLElement) => setOptionRef(el as HTMLElement, index)"
|
|
:href="item.type === 'link' && !item.disabled ? item.href : undefined"
|
|
:target="item.type === 'link' && !item.disabled ? item.target : undefined"
|
|
:role="listbox ? 'option' : 'menuitem'"
|
|
:aria-selected="listbox && item.value === modelValue"
|
|
:aria-disabled="item.disabled || undefined"
|
|
:data-focused="focusedIndex === index"
|
|
class="flex items-center gap-2.5 cursor-pointer rounded-xl p-3 text-left transition-colors duration-150 text-contrast hover:bg-surface-5 focus:bg-surface-5"
|
|
:class="getOptionClasses(item, index)"
|
|
tabindex="-1"
|
|
@click="handleOptionClick(item, index)"
|
|
@mouseenter="!item.disabled && (focusedIndex = index)"
|
|
>
|
|
<slot :name="`option-${item.value}`" :item="item">
|
|
<div class="flex items-center gap-2">
|
|
<component :is="item.icon" v-if="item.icon" class="h-5 w-5" />
|
|
<span
|
|
class="font-semibold leading-tight"
|
|
:class="item.value === modelValue ? 'text-contrast' : 'text-primary'"
|
|
>
|
|
{{ item.label }}
|
|
</span>
|
|
</div>
|
|
</slot>
|
|
</component>
|
|
</template>
|
|
</div>
|
|
|
|
<div v-else-if="searchQuery" class="p-4 mb-2 text-center text-sm text-secondary">
|
|
{{ noOptionsMessage }}
|
|
</div>
|
|
</div>
|
|
</Teleport>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" generic="T">
|
|
import { ChevronLeftIcon, SearchIcon } from '@modrinth/assets'
|
|
import { onClickOutside } from '@vueuse/core'
|
|
import {
|
|
type Component,
|
|
computed,
|
|
nextTick,
|
|
onMounted,
|
|
onUnmounted,
|
|
ref,
|
|
useSlots,
|
|
watch,
|
|
} from 'vue'
|
|
|
|
export interface ComboboxOption<T> {
|
|
value: T
|
|
label: string
|
|
icon?: Component
|
|
disabled?: boolean
|
|
class?: string
|
|
type?: 'button' | 'link' | 'divider'
|
|
href?: string
|
|
target?: string
|
|
action?: () => void
|
|
}
|
|
|
|
const DROPDOWN_VIEWPORT_MARGIN = 8
|
|
const DEFAULT_MAX_HEIGHT = 300
|
|
|
|
function isDropdownOption<T>(
|
|
opt: ComboboxOption<T> | { type: 'divider' },
|
|
): opt is ComboboxOption<T> {
|
|
return 'value' in opt
|
|
}
|
|
|
|
function isDivider<T>(opt: ComboboxOption<T> | { type: 'divider' }): opt is { type: 'divider' } {
|
|
return opt.type === 'divider'
|
|
}
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
modelValue?: T
|
|
options: (ComboboxOption<T> | { type: 'divider' })[]
|
|
placeholder?: string
|
|
disabled?: boolean
|
|
searchable?: boolean
|
|
searchPlaceholder?: string
|
|
listbox?: boolean
|
|
showChevron?: boolean
|
|
maxHeight?: number
|
|
displayValue?: string
|
|
extraPosition?: 'top' | 'bottom'
|
|
triggerClass?: string
|
|
forceDirection?: 'up' | 'down'
|
|
noOptionsMessage?: string
|
|
disableSearchFilter?: boolean
|
|
}>(),
|
|
{
|
|
placeholder: 'Select an option',
|
|
disabled: false,
|
|
searchable: false,
|
|
searchPlaceholder: 'Search...',
|
|
listbox: true,
|
|
showChevron: true,
|
|
maxHeight: DEFAULT_MAX_HEIGHT,
|
|
extraPosition: 'bottom',
|
|
noOptionsMessage: 'No results found',
|
|
},
|
|
)
|
|
|
|
const emit = defineEmits<{
|
|
'update:modelValue': [value: T]
|
|
select: [option: ComboboxOption<T>]
|
|
open: []
|
|
close: []
|
|
searchInput: [query: string]
|
|
}>()
|
|
|
|
const slots = useSlots()
|
|
|
|
const isOpen = ref(false)
|
|
const searchQuery = ref('')
|
|
const focusedIndex = ref(-1)
|
|
const containerRef = ref<HTMLElement>()
|
|
const triggerRef = ref<HTMLElement>()
|
|
const dropdownRef = ref<HTMLElement>()
|
|
const searchInputRef = ref<HTMLInputElement>()
|
|
const optionsContainerRef = ref<HTMLElement>()
|
|
const optionRefs = ref<(HTMLElement | null)[]>([])
|
|
const rafId = ref<number | null>(null)
|
|
|
|
const dropdownStyle = ref({
|
|
top: '0px',
|
|
left: '0px',
|
|
width: '0px',
|
|
})
|
|
|
|
const openDirection = ref<'down' | 'up'>('down')
|
|
|
|
const triggerClasses = computed(() => {
|
|
const classes = [props.triggerClass]
|
|
if (isOpen.value) {
|
|
if (props.extraPosition === 'bottom' && slots?.extra) {
|
|
classes.push('!rounded-b-none')
|
|
} else if (props.extraPosition === 'top' && slots?.extra) {
|
|
classes.push('!rounded-t-none')
|
|
}
|
|
}
|
|
return classes
|
|
})
|
|
|
|
const selectedOption = computed<ComboboxOption<T> | undefined>(() => {
|
|
return props.options.find(
|
|
(opt): opt is ComboboxOption<T> => isDropdownOption(opt) && opt.value === props.modelValue,
|
|
)
|
|
})
|
|
|
|
const triggerText = computed(() => {
|
|
if (props.displayValue !== undefined) return props.displayValue
|
|
if (selectedOption.value) return selectedOption.value.label
|
|
return props.placeholder
|
|
})
|
|
|
|
const optionsWithKeys = computed(() => {
|
|
return props.options.map((opt, index) => ({
|
|
...opt,
|
|
key: isDivider(opt) ? `divider-${index}` : `option-${opt.value}`,
|
|
}))
|
|
})
|
|
|
|
const filteredOptions = computed(() => {
|
|
if (!searchQuery.value || !props.searchable || props.disableSearchFilter) {
|
|
return optionsWithKeys.value
|
|
}
|
|
|
|
const query = searchQuery.value.toLowerCase()
|
|
return optionsWithKeys.value.filter((opt) => {
|
|
if (isDivider(opt)) return false
|
|
return opt.label.toLowerCase().includes(query)
|
|
})
|
|
})
|
|
|
|
const shouldRoundBottomCorners = computed(() => isOpen.value && openDirection.value === 'down')
|
|
const shouldRoundTopCorners = computed(() => isOpen.value && openDirection.value === 'up')
|
|
|
|
function getOptionClasses(item: ComboboxOption<T> & { key: string }, index: number) {
|
|
return [
|
|
item.class,
|
|
{
|
|
'bg-surface-5':
|
|
(props.listbox && item.value === props.modelValue) ||
|
|
(focusedIndex.value === index && !(props.listbox && item.value === props.modelValue)),
|
|
'cursor-not-allowed opacity-50 pointer-events-none': item.disabled,
|
|
},
|
|
]
|
|
}
|
|
|
|
function setOptionRef(el: HTMLElement | null, index: number) {
|
|
optionRefs.value[index] = el
|
|
}
|
|
|
|
function setInitialFocus() {
|
|
focusedIndex.value = props.listbox
|
|
? props.options.findIndex((opt) => isDropdownOption(opt) && opt.value === props.modelValue)
|
|
: -1
|
|
|
|
if (focusedIndex.value >= 0 && optionRefs.value[focusedIndex.value]) {
|
|
optionRefs.value[focusedIndex.value]?.scrollIntoView({ block: 'center' })
|
|
}
|
|
}
|
|
|
|
function focusSearchInput() {
|
|
if (props.searchable && searchInputRef.value) {
|
|
searchInputRef.value.focus()
|
|
}
|
|
}
|
|
|
|
function determineOpenDirection(
|
|
triggerRect: DOMRect,
|
|
dropdownRect: DOMRect,
|
|
viewportHeight: number,
|
|
): 'up' | 'down' {
|
|
if (props.forceDirection) {
|
|
return props.forceDirection
|
|
}
|
|
|
|
const hasSpaceBelow =
|
|
triggerRect.bottom + dropdownRect.height + DROPDOWN_VIEWPORT_MARGIN <= viewportHeight
|
|
const hasSpaceAbove = triggerRect.top - dropdownRect.height - DROPDOWN_VIEWPORT_MARGIN > 0
|
|
|
|
return !hasSpaceBelow && hasSpaceAbove ? 'up' : 'down'
|
|
}
|
|
|
|
function calculateVerticalPosition(
|
|
triggerRect: DOMRect,
|
|
dropdownRect: DOMRect,
|
|
direction: 'up' | 'down',
|
|
): number {
|
|
return direction === 'up' ? triggerRect.top - dropdownRect.height : triggerRect.bottom
|
|
}
|
|
|
|
function calculateHorizontalPosition(
|
|
triggerRect: DOMRect,
|
|
dropdownRect: DOMRect,
|
|
viewportWidth: number,
|
|
): number {
|
|
let left = triggerRect.left
|
|
|
|
if (left + dropdownRect.width > viewportWidth - DROPDOWN_VIEWPORT_MARGIN) {
|
|
left = Math.max(
|
|
DROPDOWN_VIEWPORT_MARGIN,
|
|
viewportWidth - dropdownRect.width - DROPDOWN_VIEWPORT_MARGIN,
|
|
)
|
|
}
|
|
|
|
return left
|
|
}
|
|
|
|
async function updateDropdownPosition() {
|
|
if (!triggerRef.value || !dropdownRef.value) return
|
|
|
|
await nextTick()
|
|
|
|
const triggerRect = triggerRef.value.getBoundingClientRect()
|
|
const dropdownRect = dropdownRef.value.getBoundingClientRect()
|
|
const viewportHeight = window.innerHeight
|
|
const viewportWidth = window.innerWidth
|
|
|
|
const direction = determineOpenDirection(triggerRect, dropdownRect, viewportHeight)
|
|
const top = calculateVerticalPosition(triggerRect, dropdownRect, direction)
|
|
const left = calculateHorizontalPosition(triggerRect, dropdownRect, viewportWidth)
|
|
|
|
dropdownStyle.value = {
|
|
top: `${top}px`,
|
|
left: `${left}px`,
|
|
width: `${triggerRect.width}px`,
|
|
}
|
|
|
|
openDirection.value = direction
|
|
}
|
|
|
|
async function openDropdown() {
|
|
if (props.disabled || isOpen.value) return
|
|
|
|
isOpen.value = true
|
|
searchQuery.value = ''
|
|
|
|
emit('open')
|
|
|
|
await nextTick()
|
|
await updateDropdownPosition()
|
|
|
|
setInitialFocus()
|
|
focusSearchInput()
|
|
startPositionTracking()
|
|
}
|
|
|
|
function closeDropdown() {
|
|
if (!isOpen.value) return
|
|
|
|
stopPositionTracking()
|
|
isOpen.value = false
|
|
searchQuery.value = ''
|
|
focusedIndex.value = -1
|
|
emit('close')
|
|
|
|
nextTick(() => {
|
|
triggerRef.value?.focus()
|
|
})
|
|
}
|
|
|
|
function handleTriggerClick() {
|
|
if (isOpen.value) {
|
|
closeDropdown()
|
|
} else {
|
|
openDropdown()
|
|
}
|
|
}
|
|
|
|
function handleOptionClick(option: ComboboxOption<T>, index: number) {
|
|
if (option.disabled || option.type === 'divider') return
|
|
|
|
focusedIndex.value = index
|
|
|
|
if (option.action) {
|
|
option.action()
|
|
}
|
|
|
|
if (props.listbox && option.value !== undefined) {
|
|
emit('update:modelValue', option.value)
|
|
}
|
|
|
|
emit('select', option)
|
|
|
|
if (option.type !== 'link') {
|
|
closeDropdown()
|
|
}
|
|
}
|
|
|
|
function findNextFocusableOption(currentIndex: number, direction: 'next' | 'previous'): number {
|
|
const length = filteredOptions.value.length
|
|
let index = currentIndex
|
|
let option
|
|
|
|
do {
|
|
index = direction === 'next' ? (index + 1) % length : (index - 1 + length) % length
|
|
option = filteredOptions.value[index]
|
|
} while (isDivider(option) || option.disabled)
|
|
|
|
return index
|
|
}
|
|
|
|
function focusOption(index: number) {
|
|
if (index < 0 || index >= filteredOptions.value.length) return
|
|
|
|
const option = filteredOptions.value[index]
|
|
if (isDivider(option) || option.disabled) return
|
|
|
|
focusedIndex.value = index
|
|
optionRefs.value[index]?.focus()
|
|
optionRefs.value[index]?.scrollIntoView({ block: 'nearest' })
|
|
}
|
|
|
|
function focusNextOption() {
|
|
const nextIndex = findNextFocusableOption(focusedIndex.value, 'next')
|
|
focusOption(nextIndex)
|
|
}
|
|
|
|
function focusPreviousOption() {
|
|
const prevIndex = findNextFocusableOption(focusedIndex.value, 'previous')
|
|
focusOption(prevIndex)
|
|
}
|
|
|
|
function handleTriggerKeydown(event: KeyboardEvent) {
|
|
switch (event.key) {
|
|
case 'Enter':
|
|
case ' ':
|
|
case 'ArrowDown':
|
|
event.preventDefault()
|
|
openDropdown()
|
|
break
|
|
case 'ArrowUp':
|
|
event.preventDefault()
|
|
openDropdown()
|
|
break
|
|
}
|
|
}
|
|
|
|
function handleDropdownKeydown(event: KeyboardEvent) {
|
|
switch (event.key) {
|
|
case 'Escape':
|
|
event.preventDefault()
|
|
closeDropdown()
|
|
break
|
|
case 'ArrowDown':
|
|
event.preventDefault()
|
|
focusNextOption()
|
|
break
|
|
case 'ArrowUp':
|
|
event.preventDefault()
|
|
focusPreviousOption()
|
|
break
|
|
case 'Enter':
|
|
case ' ':
|
|
event.preventDefault()
|
|
if (focusedIndex.value >= 0) {
|
|
const option = filteredOptions.value[focusedIndex.value]
|
|
if (!isDivider(option)) {
|
|
handleOptionClick(option, focusedIndex.value)
|
|
}
|
|
}
|
|
break
|
|
case 'Tab':
|
|
event.preventDefault()
|
|
if (event.shiftKey) {
|
|
focusPreviousOption()
|
|
} else {
|
|
focusNextOption()
|
|
}
|
|
break
|
|
}
|
|
}
|
|
|
|
function handleSearchKeydown(event: KeyboardEvent) {
|
|
if (event.key === 'Escape') {
|
|
event.preventDefault()
|
|
closeDropdown()
|
|
} else if (event.key === 'ArrowDown') {
|
|
event.preventDefault()
|
|
focusNextOption()
|
|
} else if (event.key === 'ArrowUp') {
|
|
event.preventDefault()
|
|
focusPreviousOption()
|
|
}
|
|
}
|
|
|
|
function handleWindowResize() {
|
|
if (isOpen.value) {
|
|
updateDropdownPosition()
|
|
}
|
|
}
|
|
|
|
function startPositionTracking() {
|
|
function track() {
|
|
updateDropdownPosition()
|
|
rafId.value = requestAnimationFrame(track)
|
|
}
|
|
rafId.value = requestAnimationFrame(track)
|
|
}
|
|
|
|
function stopPositionTracking() {
|
|
if (rafId.value !== null) {
|
|
cancelAnimationFrame(rafId.value)
|
|
rafId.value = null
|
|
}
|
|
}
|
|
|
|
onClickOutside(
|
|
dropdownRef,
|
|
() => {
|
|
closeDropdown()
|
|
},
|
|
{ ignore: [triggerRef] },
|
|
)
|
|
|
|
onMounted(() => {
|
|
window.addEventListener('resize', handleWindowResize)
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
window.removeEventListener('resize', handleWindowResize)
|
|
stopPositionTracking()
|
|
})
|
|
|
|
watch(isOpen, (value) => {
|
|
if (value) {
|
|
updateDropdownPosition()
|
|
}
|
|
})
|
|
|
|
watch(filteredOptions, () => {
|
|
if (isOpen.value) {
|
|
updateDropdownPosition()
|
|
}
|
|
})
|
|
</script>
|