79240bc1c3
- AvatarImage con fallback a iniciales - grayscale en avatar (como la demo) - Estructura footer idéntica a shadcn-vue.com
63 lines
2.0 KiB
Vue
63 lines
2.0 KiB
Vue
<script setup lang="ts">
|
|
import { useAuthStore } from '@/stores/auth'
|
|
import {
|
|
ChevronsUpDown,
|
|
LogOut,
|
|
} from 'lucide-vue-next'
|
|
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from '@/components/ui/dropdown-menu'
|
|
import {
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
useSidebar,
|
|
} from '@/components/ui/sidebar'
|
|
|
|
const auth = useAuthStore()
|
|
const { isMobile } = useSidebar()
|
|
|
|
const initials = (auth.user?.name || 'U').split(' ').map(n => n[0]).join('').slice(0, 2).toUpperCase()
|
|
const avatarSrc = '/Evil_Morty_Profile_Icon.webp'
|
|
</script>
|
|
|
|
<template>
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<SidebarMenuButton
|
|
size="lg"
|
|
class="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground"
|
|
>
|
|
<Avatar class="h-8 w-8 rounded-lg grayscale">
|
|
<AvatarImage :src="avatarSrc" :alt="auth.user?.name || 'Usuario'" />
|
|
<AvatarFallback class="rounded-lg">{{ initials }}</AvatarFallback>
|
|
</Avatar>
|
|
<div class="grid flex-1 text-left text-sm leading-tight">
|
|
<span class="truncate font-medium">{{ auth.user?.name || 'Usuario' }}</span>
|
|
<span class="truncate text-xs text-muted-foreground">{{ auth.user?.email }}</span>
|
|
</div>
|
|
<ChevronsUpDown class="ml-auto size-4" />
|
|
</SidebarMenuButton>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
class="w-[--reka-dropdown-menu-trigger-width] min-w-56 rounded-lg"
|
|
:side="isMobile ? 'bottom' : 'right'"
|
|
:align="'end'"
|
|
:side-offset="4"
|
|
>
|
|
<DropdownMenuItem class="gap-2 text-muted-foreground" @click="auth.logout()">
|
|
<LogOut class="size-4" />
|
|
Cerrar sesión
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
</template>
|