135 lines
3.5 KiB
TypeScript
135 lines
3.5 KiB
TypeScript
import { useState } from 'react';
|
|
import { Layout, Menu, Button, theme, App } from 'antd';
|
|
import {
|
|
MenuFoldOutlined,
|
|
MenuUnfoldOutlined,
|
|
DashboardOutlined,
|
|
SettingOutlined,
|
|
LogoutOutlined,
|
|
} from '@ant-design/icons';
|
|
import { Outlet, useNavigate, useLocation } from 'react-router-dom';
|
|
import { useAuthStore } from '../stores/authStore';
|
|
import { adminAuthService } from '../services/adminAuthService';
|
|
|
|
const { Header, Sider, Content, Footer } = Layout;
|
|
|
|
const AdminLayout = () => {
|
|
const [collapsed, setCollapsed] = useState(false);
|
|
const {
|
|
token: { colorBgContainer, borderRadiusLG },
|
|
} = theme.useToken();
|
|
const navigate = useNavigate();
|
|
const location = useLocation();
|
|
const adminUser = useAuthStore((state) => state.adminUser);
|
|
const logout = useAuthStore((state) => state.logout);
|
|
const { message } = App.useApp();
|
|
|
|
const handleLogout = async () => {
|
|
try {
|
|
await adminAuthService.logout();
|
|
logout();
|
|
message.success('登出成功');
|
|
navigate('/admin/login');
|
|
} catch {
|
|
message.error('登出失败');
|
|
}
|
|
};
|
|
|
|
const menuItems = [
|
|
{
|
|
key: '/admin/dashboard',
|
|
icon: <DashboardOutlined />,
|
|
label: '工作台',
|
|
},
|
|
{
|
|
key: 'user',
|
|
icon: <SettingOutlined />,
|
|
label: '系统管理',
|
|
children: [
|
|
{
|
|
key: '/admin/users',
|
|
label: '用户管理',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<Layout style={{ minHeight: '100vh' }}>
|
|
<Sider trigger={null} collapsible collapsed={collapsed}>
|
|
<div
|
|
style={{
|
|
height: 32,
|
|
margin: 16,
|
|
background: 'rgba(255, 255, 255, 0.2)',
|
|
borderRadius: 6,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
color: 'white',
|
|
fontWeight: 'bold',
|
|
}}
|
|
>
|
|
{collapsed ? '运营' : '运营管理系统'}
|
|
</div>
|
|
<Menu
|
|
theme="dark"
|
|
mode="inline"
|
|
selectedKeys={[location.pathname]}
|
|
items={menuItems}
|
|
onClick={({ key }) => navigate(key)}
|
|
/>
|
|
</Sider>
|
|
<Layout>
|
|
<Header
|
|
style={{
|
|
padding: 0,
|
|
background: colorBgContainer,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
paddingRight: 24,
|
|
}}
|
|
>
|
|
<Button
|
|
type="text"
|
|
icon={collapsed ? <MenuUnfoldOutlined /> : <MenuFoldOutlined />}
|
|
onClick={() => setCollapsed(!collapsed)}
|
|
style={{
|
|
fontSize: '16px',
|
|
width: 64,
|
|
height: 64,
|
|
}}
|
|
/>
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: 16 }}>
|
|
<span>欢迎, {adminUser?.username}</span>
|
|
<Button
|
|
type="text"
|
|
icon={<LogoutOutlined />}
|
|
onClick={handleLogout}
|
|
>
|
|
退出
|
|
</Button>
|
|
</div>
|
|
</Header>
|
|
<Content
|
|
style={{
|
|
margin: '24px 16px',
|
|
padding: 24,
|
|
minHeight: 280,
|
|
background: colorBgContainer,
|
|
borderRadius: borderRadiusLG,
|
|
}}
|
|
>
|
|
<Outlet />
|
|
</Content>
|
|
<Footer style={{ textAlign: 'center' }}>
|
|
梦幻西游一站式运营管理平台 ©2025 Created by JGE
|
|
</Footer>
|
|
</Layout>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default AdminLayout;
|