ebaa7f3c50
ci/woodpecker/manual/woodpecker Pipeline was successful
- 移除未使用的YAML锚点定义 - 替换commands字段中的锚点引用为实际值 - 移除有问题的通知步骤 - 修复测试文件中的问题 - 添加新的测试用例和配置文件
154 lines
4.9 KiB
TypeScript
154 lines
4.9 KiB
TypeScript
'use client';
|
|
|
|
import { useSession, signOut } from 'next-auth/react';
|
|
import Link from 'next/link';
|
|
import { usePathname, useRouter } from 'next/navigation';
|
|
import {
|
|
FileText,
|
|
Settings,
|
|
Users,
|
|
LayoutDashboard,
|
|
LogOut,
|
|
Menu,
|
|
X,
|
|
Activity
|
|
} from 'lucide-react';
|
|
import { useState, useEffect } from 'react';
|
|
|
|
const navigation = [
|
|
{ name: '仪表盘', href: '/admin', icon: LayoutDashboard },
|
|
{ name: '内容管理', href: '/admin/content', icon: FileText },
|
|
{ name: '配置中心', href: '/admin/settings', icon: Settings },
|
|
{ name: '用户管理', href: '/admin/users', icon: Users },
|
|
{ name: '审计日志', href: '/admin/logs', icon: Activity },
|
|
];
|
|
|
|
export default function AdminLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const { data: session, status } = useSession();
|
|
const pathname = usePathname();
|
|
const router = useRouter();
|
|
const [sidebarOpen, setSidebarOpen] = useState(false);
|
|
const [mounted, setMounted] = useState(false);
|
|
|
|
const isLoginPage = pathname === '/admin/login';
|
|
|
|
useEffect(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (mounted && status === 'unauthenticated' && !isLoginPage) {
|
|
router.push('/admin/login');
|
|
}
|
|
}, [mounted, status, isLoginPage, router]);
|
|
|
|
if (!mounted) {
|
|
return null;
|
|
}
|
|
|
|
if (isLoginPage) {
|
|
return <div className="min-h-screen bg-gradient-to-br from-gray-50 to-gray-100">{children}</div>;
|
|
}
|
|
|
|
if (status === 'loading') {
|
|
return null;
|
|
}
|
|
|
|
if (status === 'unauthenticated') {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50">
|
|
<div className="lg:hidden fixed top-0 left-0 right-0 z-40 bg-white border-b border-gray-200 px-4 py-3 flex items-center justify-between">
|
|
<Link href="/admin" className="text-xl font-bold text-[#C41E3A]">
|
|
睿新致遠 后台管理
|
|
</Link>
|
|
<button
|
|
onClick={() => setSidebarOpen(!sidebarOpen)}
|
|
className="p-2 rounded-md text-gray-600 hover:bg-gray-100"
|
|
>
|
|
{sidebarOpen ? <X className="h-6 w-6" /> : <Menu className="h-6 w-6" />}
|
|
</button>
|
|
</div>
|
|
|
|
{sidebarOpen && (
|
|
<div
|
|
className="lg:hidden fixed inset-0 z-30 bg-black/50"
|
|
onClick={() => setSidebarOpen(false)}
|
|
/>
|
|
)}
|
|
|
|
<aside className={`
|
|
fixed top-0 left-0 z-30 h-full w-64 bg-white border-r border-gray-200 transform transition-transform duration-300 ease-in-out
|
|
lg:translate-x-0
|
|
${sidebarOpen ? 'translate-x-0' : '-translate-x-full'}
|
|
`}>
|
|
<div className="h-full flex flex-col">
|
|
<div className="h-16 flex items-center px-6 border-b border-gray-200">
|
|
<Link href="/admin" className="text-xl font-bold text-[#C41E3A]">
|
|
睿新致遠 后台管理
|
|
</Link>
|
|
</div>
|
|
|
|
<nav className="flex-1 px-4 py-6 space-y-1 overflow-y-auto">
|
|
{navigation.map((item) => {
|
|
const isActive = pathname === item.href ||
|
|
(item.href !== '/admin' && pathname.startsWith(item.href));
|
|
return (
|
|
<Link
|
|
key={item.name}
|
|
href={item.href}
|
|
onClick={() => setSidebarOpen(false)}
|
|
className={`
|
|
flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium transition-colors
|
|
${isActive
|
|
? 'bg-[#C41E3A] text-white'
|
|
: 'text-gray-700 hover:bg-gray-100'
|
|
}
|
|
`}
|
|
>
|
|
<item.icon className="h-5 w-5" />
|
|
{item.name}
|
|
</Link>
|
|
);
|
|
})}
|
|
</nav>
|
|
|
|
<div className="p-4 border-t border-gray-200">
|
|
<div className="flex items-center gap-3 px-4 py-3">
|
|
<div className="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center text-gray-600 font-medium">
|
|
{session?.user?.name?.[0] || 'U'}
|
|
</div>
|
|
<div className="flex-1 min-w-0">
|
|
<p className="text-sm font-medium text-gray-900 truncate">
|
|
{session?.user?.name}
|
|
</p>
|
|
<p className="text-xs text-gray-500 truncate">
|
|
{session?.user?.isAdmin ? '管理员' : '用户'}
|
|
</p>
|
|
</div>
|
|
<button
|
|
onClick={() => signOut({ callbackUrl: '/admin/login' })}
|
|
className="p-2 text-gray-400 hover:text-gray-600 hover:bg-gray-100 rounded-lg"
|
|
title="退出登录"
|
|
>
|
|
<LogOut className="h-5 w-5" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
|
|
<main className="lg:ml-64 min-h-screen">
|
|
<div className="p-6 lg:p-8 pt-20 lg:pt-8">
|
|
{children}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
} |