Тема в NavUser вместо ModeToggle в header; общие kpi-cols для KPI/Quick Actions; WEB-01 → user-reui; skill 42d70dcc3d и design contract. Co-authored-by: Cursor <[email protected]>
230 lines
6.8 KiB
TypeScript
230 lines
6.8 KiB
TypeScript
import { Link } from '@tanstack/react-router'
|
|
import { useEffect, useState } from 'react'
|
|
import { useTheme } from 'next-themes'
|
|
import {
|
|
ChevronsUpDownIcon,
|
|
ExternalLinkIcon,
|
|
LogOutIcon,
|
|
MonitorIcon,
|
|
MoonIcon,
|
|
PaletteIcon,
|
|
SettingsIcon,
|
|
SunIcon,
|
|
} from 'lucide-react'
|
|
|
|
import { cn } from '@evobgp/ui/lib/utils'
|
|
import { Avatar, AvatarFallback } from '@evobgp/ui/components/avatar'
|
|
import { Button } from '@evobgp/ui/components/button'
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuGroup,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from '@evobgp/ui/components/dropdown-menu'
|
|
import {
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
useSidebar,
|
|
} from '@evobgp/ui/components/sidebar'
|
|
|
|
import { setToken as setApiToken, TOKEN_STORAGE_KEY } from '@/lib/api-client'
|
|
import {
|
|
authPortalUrl,
|
|
clearPortalToken,
|
|
getClaims,
|
|
isAuthEnabled,
|
|
redirectToPortalLogout,
|
|
resetPortalHandoff,
|
|
} from '@/lib/auth'
|
|
|
|
/** Sidebar footer account menu — ReUI app-shell-1 NavUser. @see https://reui.io/preview/base/app-shell-1 */
|
|
|
|
const THEMES = [
|
|
{
|
|
value: 'light',
|
|
label: 'Светлая',
|
|
icon: <SunIcon className="size-3.5" aria-hidden />,
|
|
},
|
|
{
|
|
value: 'dark',
|
|
label: 'Тёмная',
|
|
icon: <MoonIcon className="size-3.5" aria-hidden />,
|
|
},
|
|
{
|
|
value: 'system',
|
|
label: 'Системная',
|
|
icon: <MonitorIcon className="size-3.5" aria-hidden />,
|
|
},
|
|
] as const
|
|
|
|
function ThemeSegmentedToggle() {
|
|
const { theme, setTheme } = useTheme()
|
|
const [mounted, setMounted] = useState(false)
|
|
|
|
useEffect(() => {
|
|
setMounted(true)
|
|
}, [])
|
|
|
|
const currentTheme = mounted ? (theme ?? 'system') : 'system'
|
|
|
|
return (
|
|
<div
|
|
role="radiogroup"
|
|
aria-label="Тема"
|
|
className="bg-muted/60 inline-flex items-center gap-0.5 rounded-full p-0.5"
|
|
onClick={(e) => e.stopPropagation()}
|
|
onPointerDown={(e) => e.stopPropagation()}
|
|
>
|
|
{THEMES.map(({ value, label, icon }) => {
|
|
const isActive = currentTheme === value
|
|
return (
|
|
<Button
|
|
key={value}
|
|
type="button"
|
|
role="radio"
|
|
aria-checked={isActive}
|
|
aria-label={label}
|
|
variant="ghost"
|
|
size="icon-xs"
|
|
onClick={() => setTheme(value)}
|
|
className={cn(
|
|
'rounded-full',
|
|
isActive
|
|
? 'bg-background text-foreground shadow-sm'
|
|
: 'text-muted-foreground hover:text-foreground',
|
|
)}
|
|
>
|
|
{icon}
|
|
</Button>
|
|
)
|
|
})}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function initials(source: string): string {
|
|
const base = source.trim()
|
|
if (!base) return '?'
|
|
const parts = base.split(/\s+/).filter(Boolean)
|
|
if (parts.length >= 2) {
|
|
return `${parts[0]![0] ?? ''}${parts[1]![0] ?? ''}`.toUpperCase()
|
|
}
|
|
return base.slice(0, 2).toUpperCase()
|
|
}
|
|
|
|
export function NavUser() {
|
|
const { isMobile } = useSidebar()
|
|
const authOn = isAuthEnabled()
|
|
const claims = getClaims()
|
|
|
|
const name = claims?.name?.trim() || (authOn ? 'Пользователь' : 'Гость')
|
|
const email =
|
|
claims?.email?.trim() || (authOn ? '' : 'локальный API-токен')
|
|
const fallback = initials(name || email)
|
|
|
|
function handleSignOut() {
|
|
if (authOn) {
|
|
clearPortalToken()
|
|
resetPortalHandoff()
|
|
redirectToPortalLogout()
|
|
return
|
|
}
|
|
setApiToken(null)
|
|
if (typeof window !== 'undefined') {
|
|
window.localStorage.removeItem(TOKEN_STORAGE_KEY)
|
|
window.location.assign('/settings?tab=connection&reason=token-required')
|
|
}
|
|
}
|
|
|
|
return (
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger
|
|
render={
|
|
<SidebarMenuButton
|
|
size="lg"
|
|
className="data-popup-open:bg-sidebar-accent data-popup-open:text-sidebar-accent-foreground"
|
|
/>
|
|
}
|
|
>
|
|
<Avatar className="size-8 rounded-lg">
|
|
<AvatarFallback className="rounded-lg text-xs">{fallback}</AvatarFallback>
|
|
</Avatar>
|
|
<div className="grid flex-1 text-left text-sm leading-tight">
|
|
<span className="truncate font-semibold">{name}</span>
|
|
<span className="truncate text-xs text-muted-foreground">
|
|
{email || '—'}
|
|
</span>
|
|
</div>
|
|
<ChevronsUpDownIcon className="ml-auto size-4" />
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
className="w-(--anchor-width) min-w-56 rounded-lg"
|
|
side={isMobile ? 'bottom' : 'right'}
|
|
align="end"
|
|
sideOffset={4}
|
|
>
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuLabel className="flex items-center gap-2 py-2 font-normal text-foreground">
|
|
<Avatar className="size-8 rounded-lg">
|
|
<AvatarFallback className="rounded-lg text-xs">
|
|
{fallback}
|
|
</AvatarFallback>
|
|
</Avatar>
|
|
<div className="grid min-w-0 flex-1 text-left text-sm leading-tight">
|
|
<span className="truncate font-semibold">{name}</span>
|
|
<span className="truncate text-xs text-muted-foreground">
|
|
{email || '—'}
|
|
</span>
|
|
</div>
|
|
</DropdownMenuLabel>
|
|
</DropdownMenuGroup>
|
|
|
|
<DropdownMenuSeparator />
|
|
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuItem
|
|
nativeButton={false}
|
|
render={<Link to="/settings" search={{ tab: 'connection' }} />}
|
|
>
|
|
<SettingsIcon aria-hidden />
|
|
Настройки UI
|
|
</DropdownMenuItem>
|
|
{authOn ? (
|
|
<DropdownMenuItem
|
|
nativeButton={false}
|
|
render={<a href={authPortalUrl()} />}
|
|
>
|
|
<ExternalLinkIcon aria-hidden />
|
|
Открыть Auth Portal
|
|
</DropdownMenuItem>
|
|
) : null}
|
|
<DropdownMenuItem className="cursor-default focus:bg-transparent">
|
|
<PaletteIcon aria-hidden />
|
|
Тема
|
|
<div className="ml-auto">
|
|
<ThemeSegmentedToggle />
|
|
</div>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuGroup>
|
|
|
|
<DropdownMenuSeparator />
|
|
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuItem onClick={handleSignOut}>
|
|
<LogOutIcon aria-hidden />
|
|
{authOn ? 'Выйти' : 'Сбросить токен'}
|
|
</DropdownMenuItem>
|
|
</DropdownMenuGroup>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
)
|
|
}
|