refactor: use floating ui for dropdowns

This commit is contained in:
Zoe
2026-02-28 22:22:55 -06:00
parent 82ab72dae3
commit e0914b684a
17 changed files with 437 additions and 436 deletions
+76 -18
View File
@@ -1,9 +1,14 @@
<script setup lang="ts">
import { assert } from '~~/utils/assert';
import RowVirtualizerFixed from '~/components/RowVirtualizerFixed.vue';
import { useFloating, offset, flip, shift, autoUpdate } from '@floating-ui/vue';
const dropdownOpen = ref(false);
const dropdownTrigger = ref<HTMLElement | null>(null);
const dropdownContent = ref(null);
const activeMenuTopicId = ref<string | null>(null);
const route = useRoute();
const { openDropdown, dropdownState, closeDropdown } = useDropdown();
const { getAgent } = useAgents();
const triplit = useTriplitClient();
@@ -11,7 +16,6 @@ const triplit = useTriplitClient();
const navRef = ref<HTMLElement | null>(null);
const agentId = computed(() => route.params.id as string);
console.log(agentId.value);
const activeAgent = getAgent(agentId);
watch(agentId, () => {
if (navRef.value) {
@@ -23,6 +27,30 @@ const topics = computed(() => {
return activeAgent.value?.topics || [];
})
const { floatingStyles, placement } = useFloating(dropdownTrigger, dropdownContent, {
placement: 'bottom-end',
whileElementsMounted: autoUpdate,
middleware: [offset(6), flip(), shift({ padding: 10 })],
transform: false,
});
const transformOrigin = computed(() =>
placement.value.startsWith('top')
? 'transform-origin-bottom-center'
: 'transform-origin-top-center'
);
const closeDropdown = () => {
dropdownOpen.value = false;
activeMenuTopicId.value = null;
dropdownTrigger.value = null;
};
// Computed to get the topic data for the currently open menu
const menuTopic = computed(() =>
topics.value.find(t => t.id === activeMenuTopicId.value)
);
const topicsOpen = ref(true);
let activeAutoRenames = reactive(new Map<string, string>());
@@ -137,23 +165,14 @@ const handleNavClick = (e: MouseEvent) => {
case 'toggle-dropdown':
e.preventDefault();
e.stopPropagation();
if (dropdownState.open) {
if (activeMenuTopicId.value === topicId && dropdownOpen.value) {
closeDropdown();
return;
}
openDropdown(e, () => {
const topic = topics.value.find(t => t.id === topicId);
const isRenaming = activeAutoRenames.has(topicId) && topic?.renaming;
return [
isRenaming
? { label: 'Cancel Auto Rename', onClick: () => cancelAutoRename(topicId) }
: { label: 'Auto Rename', onClick: () => autoRenameTopic(topicId) },
{ label: 'Rename', disabled: isRenaming ?? false, onClick: () => startRename(topicId, topic?.name || '') },
{ label: 'Delete', danger: true, onClick: () => deleteTopic(topicId) }
];
}, { minWidth: '120px', placement: 'right' });
activeMenuTopicId.value = topicId;
dropdownTrigger.value = trigger;
dropdownOpen.value = true;
break;
}
}
@@ -205,7 +224,7 @@ onMounted(() => {
<div data-action="toggle-dropdown"
class="text-[var(--text-secondary)] shrink-0 opacity-0 group-hover:opacity-100 p-1 flex items-center justify-center rounded-md hover:bg-[var(--color-hover)] focus-visible:bg-[var(--color-hover)] transition-opacity duration-200 ease-[cubic-bezier(0.5,_1,_0.89,_1)]">
<span class="h-4.5 w-4.5 i-tabler-dots"></span>
<span class="pointer-events-none h-4.5 w-4.5 i-tabler-dots"></span>
</div>
</a>
</template>
@@ -213,7 +232,46 @@ onMounted(() => {
</div>
</Collapsible>
</div>
<Teleport to="body">
<Transition
enter-active-class="transition-[opacity,transform] duration-150 ease-[cubic-bezier(0.5,_1,_0.89,_1)]"
enter-from-class="opacity-0 scale-95 translate-y-1" enter-to-class="opacity-100 scale-100 translate-y-0"
leave-active-class="transition-[opacity,transform] duration-100 ease-[cubic-bezier(0.5,_1,_0.89,_1)]"
leave-from-class="opacity-100 scale-100 translate-y-0"
leave-to-class="opacity-0 scale-95 translate-y-1">
<div v-if="dropdownOpen" ref="dropdownContent" :style="floatingStyles" class="fixed z-15"
:class="transformOrigin">
<div v-click-outside="closeDropdown"
class="bg-[var(--bg-surface)] border border-[var(--color-border)] rounded-xl p-1.5 shadow-xl flex flex-col gap-1 min-w-40">
<!-- Dynamic content based on menuTopic -->
<template v-if="menuTopic">
<button v-if="menuTopic.renaming" @click="cancelAutoRename(menuTopic.id); closeDropdown()"
class="text-left px-3 py-1.5 text-sm rounded-lg hover:bg-[var(--color-hover)] transition-colors disabled:opacity-50">
Cancel Auto Rename
</button>
<button v-else @click="autoRenameTopic(menuTopic.id); closeDropdown()"
class="text-left px-3 py-1.5 text-sm rounded-lg hover:bg-[var(--color-hover)] transition-colors disabled:opacity-50">
Auto Rename
</button>
<button :disabled="menuTopic.renaming ?? false"
@click="startRename(menuTopic.id, menuTopic.name); closeDropdown()"
class="text-left px-3 py-1.5 text-sm rounded-lg hover:bg-[var(--color-hover)] transition-colors disabled:opacity-50">
Rename
</button>
<div class="h-px bg-[var(--color-border)] my-1" />
<button @click="deleteTopic(menuTopic.id); closeDropdown()"
class="text-left px-3 py-1.5 text-sm rounded-lg hover:bg-[var(--color-hover)] transition-colors disabled:opacity-50 text-red-500">
Delete
</button>
</template>
</div>
</div>
</Transition>
</Teleport>
</nav>
</template>
<!-- text-[var(--text-secondary)] hover:bg-[var(--color-hover)] focus-visible:bg-[var(--color-hover)] -->