52 lines
3.0 KiB
Vue
52 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
const route = useRoute();
|
|
const { agents, getAgent } = await useAgents();
|
|
|
|
const agentId = computed(() => route.params.id as string);
|
|
const activeAgent = getAgent(agentId);
|
|
|
|
const { isHovered } = useSidenavContext();
|
|
</script>
|
|
|
|
<template>
|
|
<header class="flex items-center rounded-lg overflow-hidden flex-1 min-w-0">
|
|
<div :style="isHovered ? 'width: 32px;' : 'width: 0px;'"
|
|
:class="['flex flex-shrink-0 transform-origin-left-center items-center overflow-hidden transition-all duration-150 ease-[cubic-bezier(0.5,_1,_0.89,_1)]', isHovered ? 'opacity-100 scale-100' : 'opacity-0 scale-95']">
|
|
<NuxtLink to="/"
|
|
class="flex @hover:bg-[var(--color-hover)] focus-visible:bg-[var(--color-hover)] rounded-lg decoration-none transition-inherit text-[var(--text-secondary)] p-1.5">
|
|
<span class="i-mynaui-chevron-left text-4.5"></span>
|
|
</NuxtLink>
|
|
</div>
|
|
|
|
<Dropdown placement="bottom" dropdown-class="max-w-48">
|
|
<template #default="{ toggle, setRef }">
|
|
<button :ref="setRef" @click="toggle"
|
|
class="shrink-1 max-w-full min-w-0 transition duration-200 pr-2 cursor-pointer @hover:bg-[var(--color-hover)] focus-visible:bg-[var(--color-hover)] rounded-lg">
|
|
<div class="pointer-events-none flex items-center gap-1.5 max-w-full">
|
|
<div
|
|
:class="['w-[28px] h-[28px] flex-shrink-0 rounded-lg overflow-hidden bg-[var(--bg-surface)] flex items-center justify-center', activeAgent?.imageUrl ? '' : 'border border-[var(--color-border)]']">
|
|
<img v-if="activeAgent?.imageUrl" :src="activeAgent.imageUrl"
|
|
class="w-full h-full object-cover" />
|
|
<span v-else class="h-4 w-4 i-mynaui-check-hexagon text-[var(--color-accent)]"></span>
|
|
</div>
|
|
<span
|
|
class="min-w-0 text-sm font-medium text-ellipsis overflow-hidden text-[var(--text-primary)] whitespace-nowrap">
|
|
{{ activeAgent?.name }}
|
|
</span>
|
|
<div class="shrink-0 w-4 h-4 text-[var(--text-secondary)]">
|
|
<span
|
|
class="i-mynaui-chevron-up-down inline-block text-4 transform-origin-center-left duration-150 ease-[cubic-bezier(0.5,_1,_0.89,_1)] transition-all"></span>
|
|
</div>
|
|
</div>
|
|
</button>
|
|
</template>
|
|
|
|
<template #dropdown="{ close }">
|
|
<button v-for="agent in agents" :key="agent.id" @click="navigateTo(`/agent/${agent.id}`); close()"
|
|
class="truncate block w-full text-left px-3 py-1.5 items-center gap-1 @hover:bg-[var(--color-hover)] rounded-lg transition-colors duration-150">
|
|
{{ agent.name }}
|
|
</button>
|
|
</template>
|
|
</Dropdown>
|
|
</header>
|
|
</template> |