forked from didirus/AstralRinth
* feat: start on tax compliance * feat: avarala1099 composable * fix: shouldShow should be managed on the page itself * refactor: move show logic to revenue page * feat: security practices rather than info * feat: withdraw page lock * fix: empty modal bug & lint issues * feat: hide behind feature flag * Use standard admonition components, make casing consistent * modal title * lint * feat: withdrawal check * feat: tax cap on withdrawals warning * feat: start on revenue page overhaul * feat: segment generation for bar * feat: tooltips and links * fix: tooltip border * feat: finish initial layout, start on withdraw modal * feat: start on withdrawal limit stage * feat: shade support for primary colors * feat: start on withdraw details stage * fix: convert swatches to hex * feat: payout method/region dropdown temporarily using multiselect * feat: fix modal open issues and use teleport dropdowns * feat: hide transactions section if there are no transactions * refactor: NavStack surfaces * feat: new dropdown component * feat: remove teleport dropdown modal in favour of new combobox component * fix: lint * refactor: dashboard sidebar layout * feat: cleanup * fix: niche bugs * fix: ComboBox styling * feat: first part of qa * feat: animate flash rather than tooltip * fix: lint * feat: qa border gradient * fix: seg hover flashes * feat: i18n * feat: i18n and final QA * fix: lint * feat: QA * fix: lint * fix: merge conflicts * fix: intl * fix: blue hover * fix: transfers page * feat: surface variables & gradients * feat: text vars * fix: lint * fix: intl * feat: stages * fix: lint * feat: region selection * feat: method selection btns * fix: flex col on transactions * feat: hook up method selection to ctx * feat: muralpay kyc stage info * wip: muralpay integration * Basic Mural Pay API bindings * Fix clippy * use dotenvy in muralpay example * Refactor payout creation code * wip: muralpay payout requests * Mural Pay payouts work * Fix clippy * feat: progress * fix: broken tax form stage logic * polish: tax form stage and method selection stage layout * add mural pay fees API * Work on payout fee API * Fees API for more payment methods * Fix CI * polish: muralpay qa * refactor: clean up combobox component * polish: change from critical -> warning admonition in MuralpayDetailsStage * Temporarily disable Venmo and PayPal methods from frontend * polish: clean up transaction component & page * polish: navbar qa, text color-contrast in chips type buttonstyled, mb on rev/index.vue page * fix: incorrectly using available balance as tax form withdraw limit after tax forms submitted * wip: counterparties * Start on counterparties and payment methods API * polish: combobox component * polish: fix broken scroll logic using a composable & web:fix * fix: lint * polish: various QA fixes * feat: hook up with backend (wip) * feat: draft muralpay rails dynamic logic * polish: modify rails to support backend changes * Mural Pay multiple methods when fetching * Don't send supported_countries to frontend * Mural Pay multiple methods when fetching * Don't send supported_countries to frontend * feat: fees & methods endpoint hookup * chore: remove duplicates fix * polish: qa changes + figma match * Add countries to muralpay fiat methods * Compile fix * Add exchange rate info to fees endpoint * Add fees to premium Tremendous options * polish: i18n and better document type dropdown -> id input labels * feat: tremendous * fix: lint & i18n * feat: reintroduce tin mismatch logic to index.vue * polish: qa * fix: i18n * feat: remove teleport dropdown menu - combobox should be used * fix: lint * fix: jsdoc * feat: checkbox for reward program terms * Add delivery email field to Tremendous payouts * Add Tremendous product category to payout methods * Add bank details API to muralpay * Fix CI * Fix CI * polish: qa changes * feat: i18n pass * feat: deduplicate methods endpoint & fix i18n issues * chore: deduplicate i18n strings into common-messages.ts * fix: lint * fix: i18n * feat: estimates * polish: more QA * Remove prepaid visa, compute fees properly for Tremendous methods * Add more details to Tremendous errors * feat: withdraw endpoint impl & internals refactor * Add more details to Tremendous errors * feat: completion stage * Add fees to Mural * feat: transactions page match figma * fix: i18n * polish: QA changes * polish: qa * Payout history route and bank details * polish: autofill and requirements checks * fix: i18n + lint * fix: fiat rail fees * polish: move scroll fade stuff into NewModal rather than just CreatorWithdrawModal * feat: simplify action btn logic & tax form error * fix: tax -> Tax form * Re-add legacy PayPal/Venmo options for US * feat: mobile responsiveness fixes for modal * fix: responsiveness issues * feat: navstack responsiveness * fix: responsiveness * move the mural bank details route * fix: generated state cleanup & bank details input * fix: lint & i18n * Add utoipa support to payout endpoints * address some PR comments * polish: qa * add CORS to new utoipa routes * feat: legacy paypal/venmo stage * polish: reset amount on back qa * revert: navstack mr changes * polish: loading indicator on method selection stage * fix: paypal modal doesnt reopen after auth * fix: lint & i18n * fix: paypal flow * polish: qa changes * fix: gitignore * polish: qa fixes * fix: payouts_available in payouts.rs * fix: bug when limit is zero * polish: qa changes * fix: qa stuff & muralpay sub-division fix * Immediately approve mural payouts * Add currency support to Tremendous payouts * Currency forex * add forex to tremendous fee request * polish: qa & currency support for paypal tremendous * polish: fx qa * feat: demo mode flag * fix: i18n & padding issues * polish: qa changes * fix: ml * Add Mural balance to bank balance info * polish: show warning for paypal international USD withdrawals + more currencies * Add more Tremendous currencies support * fix: colors on balance bars * fix: empty states * fix: pl-8 mobile issue * fix: hide see all * Transaction payouts available use the correct date * Address my own review comment * Address PR comments * Change Mural withdrawal limit to 3k * fix: empty state + paypal warning * maybe fix tremendous gift cards * Change how Mural minimum withdrawals are calculated * Tweak min/max withdrawal values * fix: segment brightness * fix: min & max for muralpay & legacy paypal * Fix some icon issues * more issues * fix user menu * fix: remove + network --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com> Co-authored-by: aecsocket <aecsocket@tutanota.com> Co-authored-by: Alejandro González <me@alegon.dev>
540 lines
14 KiB
Vue
540 lines
14 KiB
Vue
<template>
|
|
<div ref="containerRef" class="relative inline-block w-full">
|
|
<span
|
|
ref="triggerRef"
|
|
role="button"
|
|
tabindex="0"
|
|
class="max-h-[36px] 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"
|
|
/>
|
|
</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">
|
|
No results found
|
|
</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 DropdownOption<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: DropdownOption<T> | { type: 'divider' },
|
|
): opt is DropdownOption<T> {
|
|
return 'value' in opt
|
|
}
|
|
|
|
function isDivider<T>(opt: DropdownOption<T> | { type: 'divider' }): opt is { type: 'divider' } {
|
|
return opt.type === 'divider'
|
|
}
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
modelValue?: T
|
|
options: (DropdownOption<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'
|
|
}>(),
|
|
{
|
|
placeholder: 'Select an option',
|
|
disabled: false,
|
|
searchable: false,
|
|
searchPlaceholder: 'Search...',
|
|
listbox: true,
|
|
showChevron: true,
|
|
maxHeight: DEFAULT_MAX_HEIGHT,
|
|
extraPosition: 'bottom',
|
|
},
|
|
)
|
|
|
|
const emit = defineEmits<{
|
|
'update:modelValue': [value: T]
|
|
select: [option: DropdownOption<T>]
|
|
open: []
|
|
close: []
|
|
}>()
|
|
|
|
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 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<DropdownOption<T> | undefined>(() => {
|
|
return props.options.find(
|
|
(opt): opt is DropdownOption<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) {
|
|
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: DropdownOption<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()
|
|
}
|
|
|
|
function closeDropdown() {
|
|
if (!isOpen.value) return
|
|
|
|
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: DropdownOption<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()
|
|
}
|
|
}
|
|
|
|
onClickOutside(
|
|
dropdownRef,
|
|
() => {
|
|
closeDropdown()
|
|
},
|
|
{ ignore: [triggerRef] },
|
|
)
|
|
|
|
onMounted(() => {
|
|
window.addEventListener('resize', handleWindowResize)
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
window.removeEventListener('resize', handleWindowResize)
|
|
})
|
|
|
|
watch(isOpen, (value) => {
|
|
if (value) {
|
|
updateDropdownPosition()
|
|
}
|
|
})
|
|
|
|
watch(filteredOptions, () => {
|
|
if (isOpen.value) {
|
|
updateDropdownPosition()
|
|
}
|
|
})
|
|
</script>
|