172 lines
7.1 KiB
Vue
172 lines
7.1 KiB
Vue
<script setup lang="ts">
|
|
import { DialogType } from '~/composables/useDialog';
|
|
|
|
const { close: closeSidebar, open, sidebarWidth, resize, saveWidth } = useSidebar();
|
|
const route = useRoute();
|
|
|
|
const isResizing = ref(false);
|
|
const startX = ref(0);
|
|
const initialWidth = ref(0);
|
|
|
|
const isMouseOver = ref(false);
|
|
const isFocused = ref(false);
|
|
const lastInteraction = ref<'mouse' | 'keyboard' | null>(null);
|
|
|
|
const isHovering = computed(() =>
|
|
isMouseOver.value || (isFocused.value && lastInteraction.value === 'keyboard')
|
|
);
|
|
const sidenavRef = ref<HTMLElement | null>(null);
|
|
|
|
provideSidenavContext({
|
|
isHovered: isHovering,
|
|
sidebarWidth: sidebarWidth,
|
|
isOpen: open,
|
|
close: () => {
|
|
closeSidebar();
|
|
},
|
|
});
|
|
|
|
const trackInteraction = (interaction: 'mouse' | 'keyboard') => {
|
|
lastInteraction.value = interaction;
|
|
};
|
|
|
|
const onFocusOut = (e: FocusEvent) => {
|
|
const isMovingOutside = sidenavRef.value && !sidenavRef.value.contains(e.relatedTarget as Node);
|
|
if (isMovingOutside) {
|
|
isFocused.value = false;
|
|
}
|
|
};
|
|
|
|
const { openDialog } = useDialog();
|
|
|
|
const onResizeStart = (event: MouseEvent) => {
|
|
isResizing.value = true;
|
|
startX.value = event.clientX;
|
|
initialWidth.value = sidebarWidth.value;
|
|
document.body.style.cursor = 'col-resize';
|
|
document.body.style.userSelect = 'none';
|
|
};
|
|
|
|
const onResizeMove = (event: MouseEvent) => {
|
|
if (!isResizing.value) return;
|
|
if (resizeAnimationFrame) return;
|
|
|
|
resizeAnimationFrame = requestAnimationFrame(() => {
|
|
const deltaX = event.clientX - startX.value;
|
|
const newWidth = initialWidth.value + deltaX;
|
|
resize(newWidth);
|
|
resizeAnimationFrame = null;
|
|
});
|
|
};
|
|
|
|
const onResizeEnd = () => {
|
|
if (!isResizing.value) return;
|
|
|
|
isResizing.value = false;
|
|
document.body.style.cursor = '';
|
|
document.body.style.userSelect = '';
|
|
saveWidth();
|
|
};
|
|
|
|
let resizeAnimationFrame: number | null = null;
|
|
|
|
const trackInteractionMouse = () => trackInteraction('mouse');
|
|
const trackInteractionKeyboard = (e: KeyboardEvent) => {
|
|
if (e.key === 'Tab') trackInteraction('keyboard');
|
|
};
|
|
|
|
onMounted(() => {
|
|
document.addEventListener('mousemove', onResizeMove);
|
|
document.addEventListener('mouseup', onResizeEnd);
|
|
|
|
// NEW: Track global interactions
|
|
document.addEventListener('mousedown', trackInteractionMouse);
|
|
document.addEventListener('keydown', trackInteractionKeyboard);
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
document.removeEventListener('mousemove', onResizeMove);
|
|
document.removeEventListener('mouseup', onResizeEnd);
|
|
|
|
// NEW: Cleanup listeners
|
|
document.removeEventListener('mousedown', trackInteractionMouse);
|
|
document.removeEventListener('keydown', trackInteractionKeyboard);
|
|
});
|
|
|
|
const navKind = computed(() => {
|
|
if (route.path === '/') return 'home';
|
|
if (route.path.startsWith('/agent/')) return 'agent';
|
|
return null;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative pl-2">
|
|
<aside ref="sidenavRef" :class="[
|
|
'h-full max-w-fit background-[var(--bg-base)] overflow-hidden will-change-width text-[var(--text-secondary)] select-none transition-[width,margin] duration-250 ease-[cubic-bezier(0.5,_1,_0.89,_1)]',
|
|
open ? 'w-full mr-2' : 'w-0 mr-0',
|
|
isResizing ? 'transition-none' : ''
|
|
]" :style="open ? { width: `${sidebarWidth}px` } : {}" @mouseenter="isMouseOver = true"
|
|
@mouseleave="isMouseOver = false" @focusin="isFocused = true" @focusout="onFocusOut">
|
|
<div :style="{ minWidth: `${sidebarWidth}px` }" class="flex flex-col h-full justify-between">
|
|
<div class="flex flex-col h-full max-h-full overflow-y-hidden">
|
|
<!-- Header -->
|
|
<div
|
|
class="z-25 bg-[var(--bg-base)] relative flex flex-row gap-2 justify-between items-center shrink-0 pb-1.5 h-11 pt-2">
|
|
|
|
<SidenavHeader v-if="navKind === 'home'" />
|
|
<SidenavHeaderAgent v-else-if="navKind === 'agent'" />
|
|
|
|
<div class="flex items-center justify-end text-[var(--text-secondary)] gap-0.5">
|
|
<div :style="isHovering ? 'width: 32px;' : 'width: 0px;'"
|
|
:class="['flex-shrink-0 overflow-hidden rounded-lg transition-all duration-150 ease-[cubic-bezier(0.5,_1,_0.89,_1)] transform-origin-center-right']">
|
|
<Tooltip :hotkey="['ctrl', '[']">
|
|
<button aria-label="close sidebar" @click="closeSidebar" :class="[
|
|
'flex text-5 h-8 w-8 items-center justify-center hover:bg-[var(--color-hover)] focus-visible:bg-[var(--color-hover)] bg-transparent transition-inherit',
|
|
]">
|
|
<span
|
|
class="i-mynaui-panel-left-close text-5 transition-inherit transform-origin-right-center"
|
|
:class="isHovering ? 'opacity-100 scale-100' : 'opacity-0 scale-95'"></span>
|
|
</button>
|
|
</Tooltip>
|
|
</div>
|
|
<div v-if="navKind === 'agent'" class="flex-shrink-0 overflow-hidden rounded-lg">
|
|
<Tooltip :hotkey="['ctrl', 'alt', 'n']">
|
|
<NuxtLink aria-label="Start a new topic" :to="`/agent/${route.params.id}`" :class="[
|
|
'flex text-5 h-8 w-8 items-center justify-center hover:bg-[var(--color-hover)] focus-visible:bg-[var(--color-hover)] bg-transparent text-inherit',
|
|
]">
|
|
<span class="i-mynaui-book-plus text-5"></span>
|
|
</NuxtLink>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Main Menu -->
|
|
<SidenavNavHome v-if="navKind === 'home'" />
|
|
<SidenavNavAgent v-else-if="navKind === 'agent'" />
|
|
</div>
|
|
|
|
<div class="flex justify-between pt-2 z-25 bg-[var(--bg-base)] pb-2">
|
|
<div class="flex">
|
|
<Tooltip :hotkey="['ctrl', ',']">
|
|
<button @click="openDialog(DialogType.Settings)"
|
|
class="flex items-center justify-center h-7 w-7 cursor-pointer hover:bg-[var(--color-hover)] focus-visible:bg-[var(--color-hover)] rounded-lg transition-colors text-[var(--text-secondary)] active:text-[var(--text-primary)]">
|
|
<span class="i-mynaui-cog-four text-5"></span>
|
|
</button>
|
|
</Tooltip>
|
|
</div>
|
|
|
|
<div class="flex justify-end gap-1">
|
|
<ThemeSwitcher size="small" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</aside>
|
|
<!-- resize handle -->
|
|
<div @mousedown="onResizeStart" class="absolute top-0 right-0 bottom-0 p-1 cursor-ew-resize">
|
|
</div>
|
|
</div>
|
|
</template>
|