feat(auth): enhance header links with dynamic navigation and add setLinks method to store

This commit is contained in:
2026-02-25 01:50:27 +08:00
parent 0be8c66754
commit 8aad3bcb9b
3 changed files with 22 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ import { RouterProvider, createRouter } from '@tanstack/react-router'
import { routeTree } from './routeTree.gen'
import './index.css'
import { getDynamicBasename } from './modules/basename'
import './agents/index.ts';
// Set up a Router instance
const router = createRouter({
routeTree,

View File

@@ -51,18 +51,27 @@ export const BaseHeader = (props: { main?: React.ComponentType | null }) => {
return (
<>
<div className="flex gap-2 text-lg w-full h-12 items-center justify-between bg-gray-200">
<div className='px-2'>
<div className='px-2 flex items-center gap-1'>
{
store.links.map(link => (
<Link
key={link.key || link.title}
to={link.href}
className="px-3 py-1.5 text-sm text-gray-600 hover:text-gray-900 hover:bg-gray-100 rounded-lg transition-colors"
<div key={link.key || link.title}
className="flex items-center justify-center gap-1 p-2 text-sm text-gray-600 hover:text-gray-900 hover:bg-gray-100 rounded-lg transition-colors"
onClick={() => {
if (!link.href) return;
if (link.href.startsWith('http') || link.isRoot) {
window.open(link.href, '_blank');
return;
}
navigate({
to: link.href
})
}}
>
{link.key === 'home' && <Home className="w-4 h-4 mr-1" />}
{link.icon && <span className="mr-1">{link.icon}</span>}
{link.title}
</Link>
{link.key === 'home' && <Home className="w-4 h-4" />}
{link.icon && <>{link.icon}</>}
{!link.icon && link.title}
</div>
))
}
</div>

View File

@@ -34,6 +34,7 @@ export type LayoutStore = {
};
setLoginPageConfig: (config: Partial<LayoutStore['loginPageConfig']>) => void;
links: HeaderLink[];
setLinks: (links: HeaderLink[]) => void;
};
type HeaderLink = {
title?: string;
@@ -41,6 +42,7 @@ type HeaderLink = {
description?: string;
icon?: React.ReactNode;
key?: string;
isRoot?: boolean;
};
export const useLayoutStore = create<LayoutStore>((set, get) => ({
@@ -100,4 +102,5 @@ export const useLayoutStore = create<LayoutStore>((set, get) => ({
loginPageConfig: { ...state.loginPageConfig, ...config },
})),
links: [{ title: '', href: '/', key: 'home' }],
setLinks: (links) => set({ links }),
}));