- Add username display in the `SiteHeader` component. - Update logout button text to include username. - Add `username` field in auth state. - Optimize token parsing logic to extract username information. - pre-commit fix
114 lines
3.7 KiB
TypeScript
114 lines
3.7 KiB
TypeScript
import Button from '@/components/ui/Button'
|
|
import { SiteInfo, webuiPrefix } from '@/lib/constants'
|
|
import AppSettings from '@/components/AppSettings'
|
|
import { TabsList, TabsTrigger } from '@/components/ui/Tabs'
|
|
import { useSettingsStore } from '@/stores/settings'
|
|
import { useAuthStore } from '@/stores/state'
|
|
import { cn } from '@/lib/utils'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { navigationService } from '@/services/navigation'
|
|
import { ZapIcon, GithubIcon, LogOutIcon } from 'lucide-react'
|
|
|
|
interface NavigationTabProps {
|
|
value: string
|
|
currentTab: string
|
|
children: React.ReactNode
|
|
}
|
|
|
|
function NavigationTab({ value, currentTab, children }: NavigationTabProps) {
|
|
return (
|
|
<TabsTrigger
|
|
value={value}
|
|
className={cn(
|
|
'cursor-pointer px-2 py-1 transition-all',
|
|
currentTab === value ? '!bg-emerald-400 !text-zinc-50' : 'hover:bg-background/60'
|
|
)}
|
|
>
|
|
{children}
|
|
</TabsTrigger>
|
|
)
|
|
}
|
|
|
|
function TabsNavigation() {
|
|
const currentTab = useSettingsStore.use.currentTab()
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="flex h-8 self-center">
|
|
<TabsList className="h-full gap-2">
|
|
<NavigationTab value="documents" currentTab={currentTab}>
|
|
{t('header.documents')}
|
|
</NavigationTab>
|
|
<NavigationTab value="knowledge-graph" currentTab={currentTab}>
|
|
{t('header.knowledgeGraph')}
|
|
</NavigationTab>
|
|
<NavigationTab value="retrieval" currentTab={currentTab}>
|
|
{t('header.retrieval')}
|
|
</NavigationTab>
|
|
<NavigationTab value="api" currentTab={currentTab}>
|
|
{t('header.api')}
|
|
</NavigationTab>
|
|
</TabsList>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default function SiteHeader() {
|
|
const { t } = useTranslation()
|
|
const { isGuestMode, coreVersion, apiVersion, username } = useAuthStore()
|
|
|
|
const versionDisplay = (coreVersion && apiVersion)
|
|
? `${coreVersion}/${apiVersion}`
|
|
: null;
|
|
|
|
const handleLogout = () => {
|
|
navigationService.navigateToLogin();
|
|
}
|
|
|
|
return (
|
|
<header className="border-border/40 bg-background/95 supports-[backdrop-filter]:bg-background/60 sticky top-0 z-50 flex h-10 w-full border-b px-4 backdrop-blur">
|
|
<a href={webuiPrefix} className="mr-6 flex items-center gap-2">
|
|
<ZapIcon className="size-4 text-emerald-400" aria-hidden="true" />
|
|
{/* <img src='/logo.png' className="size-4" /> */}
|
|
<span className="font-bold md:inline-block">{SiteInfo.name}</span>
|
|
{versionDisplay && (
|
|
<span className="ml-2 text-xs text-gray-500 dark:text-gray-400">
|
|
v{versionDisplay}
|
|
</span>
|
|
)}
|
|
</a>
|
|
|
|
<div className="flex h-10 flex-1 justify-center">
|
|
<TabsNavigation />
|
|
{isGuestMode && (
|
|
<div className="ml-2 self-center px-2 py-1 text-xs bg-amber-100 text-amber-800 dark:bg-amber-900 dark:text-amber-200 rounded-md">
|
|
{t('login.guestMode', 'Guest Mode')}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<nav className="flex items-center">
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="ghost" size="icon" side="bottom" tooltip={t('header.projectRepository')}>
|
|
<a href={SiteInfo.github} target="_blank" rel="noopener noreferrer">
|
|
<GithubIcon className="size-4" aria-hidden="true" />
|
|
</a>
|
|
</Button>
|
|
<AppSettings />
|
|
{!isGuestMode && (
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
side="bottom"
|
|
tooltip={`${t('header.logout')} (${username})`}
|
|
onClick={handleLogout}
|
|
>
|
|
<LogOutIcon className="size-4" aria-hidden="true" />
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
)
|
|
}
|