2026-03-22 11:25:28 +08:00
|
|
|
import React, { useState, useEffect, useMemo } from 'react';
|
|
|
|
|
import { Layout, Menu, Typography, Avatar, Dropdown, Badge, Space, Tag, Divider, Switch, message, Button } from 'antd';
|
2026-03-19 01:39:34 +08:00
|
|
|
import {
|
|
|
|
|
DashboardOutlined,
|
|
|
|
|
ShoppingOutlined,
|
|
|
|
|
FileTextOutlined,
|
|
|
|
|
UserOutlined,
|
|
|
|
|
TruckOutlined,
|
|
|
|
|
AlertOutlined,
|
|
|
|
|
SettingOutlined,
|
|
|
|
|
MenuFoldOutlined,
|
|
|
|
|
MenuUnfoldOutlined,
|
|
|
|
|
BellOutlined,
|
|
|
|
|
DownOutlined,
|
|
|
|
|
ShopOutlined,
|
|
|
|
|
WalletOutlined,
|
|
|
|
|
GlobalOutlined,
|
2026-03-19 14:19:01 +08:00
|
|
|
RobotOutlined,
|
2026-03-22 11:25:28 +08:00
|
|
|
AppstoreOutlined,
|
|
|
|
|
LineChartOutlined,
|
2026-03-25 13:46:26 +08:00
|
|
|
CloudServerOutlined,
|
2026-03-22 11:25:28 +08:00
|
|
|
SafetyOutlined,
|
|
|
|
|
CrownOutlined,
|
2026-03-19 14:19:01 +08:00
|
|
|
SwapOutlined,
|
2026-03-22 11:25:28 +08:00
|
|
|
ClusterOutlined,
|
2026-03-19 01:39:34 +08:00
|
|
|
} from '@ant-design/icons';
|
2026-03-20 17:53:46 +08:00
|
|
|
import { Link, useLocation, useNavigate, Outlet } from 'react-router-dom';
|
2026-03-21 15:04:06 +08:00
|
|
|
import type { MenuProps } from 'antd';
|
2026-03-22 11:25:28 +08:00
|
|
|
import { UserProvider, useUser, MOCK_USERS, ROLE_CONFIG, FEATURES, PERMISSIONS, UserRole } from '@/contexts/UserContext';
|
2026-03-23 12:41:35 +08:00
|
|
|
import { useLocale } from '@/contexts/LocaleContext';
|
2026-03-19 01:39:34 +08:00
|
|
|
|
|
|
|
|
const { Header, Sider, Content } = Layout;
|
|
|
|
|
const { Title, Text } = Typography;
|
|
|
|
|
|
2026-03-23 12:41:35 +08:00
|
|
|
interface CustomMenuItem {
|
|
|
|
|
key: string;
|
|
|
|
|
icon?: React.ReactNode;
|
|
|
|
|
label?: React.ReactNode;
|
|
|
|
|
requiredPermission?: string | null;
|
|
|
|
|
requiredFeature?: string | null;
|
|
|
|
|
children?: CustomMenuItem[];
|
|
|
|
|
type?: 'divider' | 'group';
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
type MenuItem = Required<MenuProps>['items'][number];
|
2026-03-20 17:53:46 +08:00
|
|
|
|
2026-03-23 12:41:35 +08:00
|
|
|
const ALL_MENU_ITEMS: CustomMenuItem[] = [
|
2026-03-19 01:39:34 +08:00
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: '/dashboard',
|
|
|
|
|
icon: <DashboardOutlined />,
|
|
|
|
|
label: <Link to="/dashboard">数据概览</Link>,
|
|
|
|
|
requiredPermission: null,
|
|
|
|
|
},
|
2026-03-19 01:39:34 +08:00
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'ai-operations',
|
|
|
|
|
icon: <RobotOutlined />,
|
|
|
|
|
label: 'AI运营中心',
|
|
|
|
|
requiredFeature: FEATURES.AI_OPERATIONS,
|
2026-03-19 14:19:01 +08:00
|
|
|
children: [
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/operation-agent', label: <Link to="/dashboard/operation-agent">运营Agent</Link> },
|
|
|
|
|
{ key: '/dashboard/auto-pilot', label: <Link to="/dashboard/auto-pilot">自动驾驶</Link> },
|
|
|
|
|
{ key: '/dashboard/task-center', label: <Link to="/dashboard/task-center">任务中心</Link> },
|
|
|
|
|
{ key: '/dashboard/ai-decision-log', label: <Link to="/dashboard/ai-decision-log">AI决策日志</Link> },
|
|
|
|
|
{ key: '/dashboard/strategy-marketplace', label: <Link to="/dashboard/strategy-marketplace">策略市场</Link> },
|
|
|
|
|
{ key: '/dashboard/auto-product-selection', label: <Link to="/dashboard/auto-product-selection">自动选品</Link> },
|
|
|
|
|
{ key: '/dashboard/auto-execution', label: <Link to="/dashboard/auto-execution">自动执行</Link> },
|
2026-03-19 14:19:01 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'product-cycle',
|
|
|
|
|
icon: <ShoppingOutlined />,
|
|
|
|
|
label: '商品闭环',
|
2026-03-19 14:19:01 +08:00
|
|
|
children: [
|
2026-03-23 12:41:35 +08:00
|
|
|
{ key: '/dashboard/product', label: <Link to="/dashboard/product">商品管理</Link>, requiredPermission: PERMISSIONS.PRODUCT_READ },
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/product/publish', label: <Link to="/dashboard/product/publish">商品发布</Link>, requiredPermission: PERMISSIONS.PRODUCT_WRITE },
|
|
|
|
|
{ key: '/dashboard/inventory', label: <Link to="/dashboard/inventory">库存管理</Link>, requiredPermission: PERMISSIONS.INVENTORY_READ },
|
|
|
|
|
{ key: '/dashboard/inventory/warehouses', label: <Link to="/dashboard/inventory/warehouses">仓库管理</Link> },
|
2026-03-23 12:41:35 +08:00
|
|
|
{ key: '/dashboard/product/ai-pricing', label: <Link to="/dashboard/product/ai-pricing">AI定价</Link>, requiredFeature: FEATURES.AUTO_PRICING },
|
|
|
|
|
{ key: '/dashboard/product/profit-monitor', label: <Link to="/dashboard/product/profit-monitor">利润监控</Link> },
|
2026-03-19 14:19:01 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'order-cycle',
|
|
|
|
|
icon: <FileTextOutlined />,
|
|
|
|
|
label: '订单闭环',
|
2026-03-19 14:19:01 +08:00
|
|
|
children: [
|
2026-03-23 12:41:35 +08:00
|
|
|
{ key: '/dashboard/orders', label: <Link to="/dashboard/orders">订单管理</Link>, requiredPermission: PERMISSIONS.ORDER_READ },
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/orders/exception', label: <Link to="/dashboard/orders/exception">异常订单</Link> },
|
|
|
|
|
{ key: '/dashboard/after-sales', label: <Link to="/dashboard/after-sales">售后服务</Link> },
|
|
|
|
|
{ key: '/dashboard/after-sales/refund', label: <Link to="/dashboard/after-sales/refund">退款处理</Link> },
|
2026-03-19 14:19:01 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'logistics-cycle',
|
|
|
|
|
icon: <TruckOutlined />,
|
|
|
|
|
label: '物流闭环',
|
|
|
|
|
requiredPermission: PERMISSIONS.INVENTORY_READ,
|
2026-03-19 14:19:01 +08:00
|
|
|
children: [
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/logistics', label: <Link to="/dashboard/logistics">物流查询</Link> },
|
|
|
|
|
{ key: '/dashboard/logistics/freight-calc', label: <Link to="/dashboard/logistics/freight-calc">运费计算</Link> },
|
2026-03-19 14:19:01 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'finance-cycle',
|
|
|
|
|
icon: <WalletOutlined />,
|
|
|
|
|
label: '财务闭环',
|
|
|
|
|
requiredPermission: PERMISSIONS.FINANCE_READ,
|
2026-03-19 14:19:01 +08:00
|
|
|
children: [
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/finance', label: <Link to="/dashboard/finance">财务概览</Link> },
|
|
|
|
|
{ key: '/dashboard/finance/transactions', label: <Link to="/dashboard/finance/transactions">交易记录</Link> },
|
|
|
|
|
{ key: '/dashboard/finance/reconciliation', label: <Link to="/dashboard/finance/reconciliation">财务对账</Link> },
|
|
|
|
|
{ key: '/dashboard/user-asset', label: <Link to="/dashboard/user-asset">用户资产</Link> },
|
2026-03-19 14:19:01 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'marketing-cycle',
|
|
|
|
|
icon: <LineChartOutlined />,
|
|
|
|
|
label: '营销闭环',
|
|
|
|
|
children: [
|
|
|
|
|
{ key: '/dashboard/ad', label: <Link to="/dashboard/ad">广告管理</Link> },
|
|
|
|
|
{ key: '/dashboard/marketing/competitors', label: <Link to="/dashboard/marketing/competitors">竞品分析</Link> },
|
|
|
|
|
{ key: '/dashboard/dynamic-pricing', label: <Link to="/dashboard/dynamic-pricing">动态定价</Link>, requiredFeature: FEATURES.AUTO_PRICING },
|
|
|
|
|
{ key: '/dashboard/ab-test', label: <Link to="/dashboard/ab-test">AB测试</Link> },
|
|
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'analytics',
|
|
|
|
|
icon: <AppstoreOutlined />,
|
|
|
|
|
label: '数据分析',
|
2026-03-19 14:19:01 +08:00
|
|
|
children: [
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/analytics', label: <Link to="/dashboard/analytics">数据分析</Link> },
|
|
|
|
|
{ key: '/dashboard/reports', label: <Link to="/dashboard/reports">报表中心</Link> },
|
|
|
|
|
{ key: '/dashboard/multi-shop-report', label: <Link to="/dashboard/multi-shop-report">多店报表</Link>, requiredFeature: FEATURES.MULTI_SHOP },
|
|
|
|
|
{ key: '/dashboard/leaderboard', label: <Link to="/dashboard/leaderboard">收益排行</Link> },
|
2026-03-19 14:19:01 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'b2b-trade',
|
|
|
|
|
icon: <ShopOutlined />,
|
|
|
|
|
label: 'B2B贸易',
|
|
|
|
|
requiredFeature: FEATURES.B2B_TRADE,
|
|
|
|
|
children: [
|
|
|
|
|
{ key: '/dashboard/merchant', label: <Link to="/dashboard/merchant">商户管理</Link> },
|
|
|
|
|
{ key: '/dashboard/b2b', label: <Link to="/dashboard/b2b">B2B贸易</Link> },
|
2026-03-25 13:46:26 +08:00
|
|
|
{ key: '/dashboard/b2b/batch-order', label: <Link to="/dashboard/b2b/batch-order">批量订单</Link> },
|
|
|
|
|
{ key: '/dashboard/b2b/enterprise-quote', label: <Link to="/dashboard/b2b/enterprise-quote">企业报价</Link> },
|
|
|
|
|
{ key: '/dashboard/b2b/contract-manage', label: <Link to="/dashboard/b2b/contract-manage">合同管理</Link> },
|
|
|
|
|
{ key: '/dashboard/procurement', label: <Link to="/dashboard/procurement">采购管理</Link> },
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/suppliers', label: <Link to="/dashboard/suppliers">供应商</Link> },
|
2026-03-25 13:46:26 +08:00
|
|
|
{ key: '/dashboard/warehouse', label: <Link to="/dashboard/warehouse">仓库库存</Link> },
|
2026-03-22 11:25:28 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'independent-site',
|
|
|
|
|
icon: <GlobalOutlined />,
|
|
|
|
|
label: '独立站',
|
|
|
|
|
requiredFeature: FEATURES.INDEPENDENT_SITE,
|
|
|
|
|
children: [
|
2026-03-23 12:41:35 +08:00
|
|
|
{ key: '/dashboard/independent-site', label: <Link to="/dashboard/independent-site">站点管理</Link> },
|
2026-03-25 13:46:26 +08:00
|
|
|
{ key: '/dashboard/independent-site/create', label: <Link to="/dashboard/independent-site/create">创建站点</Link> },
|
|
|
|
|
{ key: '/dashboard/independent-site/templates', label: <Link to="/dashboard/independent-site/templates">站点模板</Link> },
|
|
|
|
|
{ key: '/dashboard/independent-site/analytics', label: <Link to="/dashboard/independent-site/analytics">站点分析</Link> },
|
|
|
|
|
{ key: '/dashboard/independent-site/orders', label: <Link to="/dashboard/independent-site/orders">独立站订单</Link> },
|
|
|
|
|
{ key: '/dashboard/independent-site/products', label: <Link to="/dashboard/independent-site/products">独立站商品</Link> },
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/independent-site/domains', label: <Link to="/dashboard/independent-site/domains">域名管理</Link> },
|
|
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'risk-compliance',
|
|
|
|
|
icon: <SafetyOutlined />,
|
|
|
|
|
label: '风控合规',
|
|
|
|
|
children: [
|
2026-03-25 13:46:26 +08:00
|
|
|
{ key: '/dashboard/blacklist', label: <Link to="/dashboard/blacklist">风险监控</Link> },
|
|
|
|
|
{ key: '/dashboard/compliance', label: <Link to="/dashboard/compliance">合规检查</Link> },
|
|
|
|
|
{ key: '/dashboard/audit', label: <Link to="/dashboard/audit">审计日志</Link> },
|
|
|
|
|
{ key: '/dashboard/governance', label: <Link to="/dashboard/governance">治理中心</Link> },
|
|
|
|
|
{ key: '/dashboard/sovereignty', label: <Link to="/dashboard/sovereignty">主权管理</Link> },
|
2026-03-22 11:25:28 +08:00
|
|
|
{ key: '/dashboard/compliance/certificates', label: <Link to="/dashboard/compliance/certificates">证书管理</Link> },
|
2026-03-25 13:46:26 +08:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'cloud-management',
|
|
|
|
|
icon: <CloudServerOutlined />,
|
|
|
|
|
label: '云服务器管理',
|
|
|
|
|
children: [
|
|
|
|
|
{ key: '/operation-agent-enhanced', label: <Link to="/operation-agent-enhanced">云服务器管理</Link> },
|
2026-03-22 11:25:28 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-03-22 11:25:28 +08:00
|
|
|
key: 'settings',
|
|
|
|
|
icon: <SettingOutlined />,
|
|
|
|
|
label: '系统设置',
|
|
|
|
|
children: [
|
|
|
|
|
{ key: '/dashboard/settings', label: <Link to="/dashboard/settings">设置概览</Link> },
|
2026-03-23 12:41:35 +08:00
|
|
|
{ key: '/dashboard/settings/platform-auth', label: <Link to="/dashboard/settings/platform-auth">平台授权</Link> },
|
|
|
|
|
{ key: '/dashboard/settings/service-manager', label: <Link to="/dashboard/settings/service-manager">服务管理</Link> },
|
|
|
|
|
{ key: '/dashboard/user', label: <Link to="/dashboard/user">用户管理</Link> },
|
|
|
|
|
{ key: '/dashboard/role', label: <Link to="/dashboard/role">角色权限</Link> },
|
2026-03-22 11:25:28 +08:00
|
|
|
],
|
2026-03-19 01:39:34 +08:00
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
const MainLayoutContent: React.FC = () => {
|
|
|
|
|
const [collapsed, setCollapsed] = useState(false);
|
2026-03-19 01:39:34 +08:00
|
|
|
const location = useLocation();
|
2026-03-20 17:53:46 +08:00
|
|
|
const navigate = useNavigate();
|
2026-03-22 11:25:28 +08:00
|
|
|
const { currentUser, setCurrentUser, hasPermission, hasFeature, getPlanLabel, isPaidUser } = useUser();
|
2026-03-23 12:41:35 +08:00
|
|
|
const { locale, setLocale } = useLocale();
|
2026-03-19 01:39:34 +08:00
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
const menuItems = useMemo(() => {
|
2026-03-23 12:41:35 +08:00
|
|
|
const stripCustomProps = (item: CustomMenuItem): MenuItem => {
|
2026-03-22 11:25:28 +08:00
|
|
|
const { requiredPermission, requiredFeature, ...rest } = item;
|
2026-03-23 12:41:35 +08:00
|
|
|
return rest as MenuItem;
|
2026-03-22 11:25:28 +08:00
|
|
|
};
|
|
|
|
|
|
2026-03-23 12:41:35 +08:00
|
|
|
const filterMenuItems = (items: CustomMenuItem[]): MenuItem[] => {
|
|
|
|
|
const result: MenuItem[] = [];
|
|
|
|
|
items.forEach((item) => {
|
|
|
|
|
if (item.requiredFeature && !hasFeature(item.requiredFeature)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (item.requiredPermission && !hasPermission(item.requiredPermission)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (item.children && Array.isArray(item.children)) {
|
|
|
|
|
const filteredChildren = filterMenuItems(item.children);
|
|
|
|
|
if (filteredChildren.length > 0) {
|
|
|
|
|
result.push(stripCustomProps({ ...item, children: filteredChildren as CustomMenuItem[] }));
|
2026-03-22 11:25:28 +08:00
|
|
|
}
|
2026-03-23 12:41:35 +08:00
|
|
|
} else {
|
|
|
|
|
result.push(stripCustomProps(item));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return result;
|
2026-03-22 11:25:28 +08:00
|
|
|
};
|
|
|
|
|
return filterMenuItems(ALL_MENU_ITEMS);
|
|
|
|
|
}, [hasPermission, hasFeature]);
|
|
|
|
|
|
|
|
|
|
const getSelectedKeys = (): string[] => {
|
2026-03-19 01:39:34 +08:00
|
|
|
const pathname = location.pathname;
|
2026-03-22 11:25:28 +08:00
|
|
|
let bestMatch: string | null = null;
|
|
|
|
|
let bestMatchLength = 0;
|
|
|
|
|
|
|
|
|
|
const findMatch = (items: MenuItem[]) => {
|
|
|
|
|
items.forEach((item) => {
|
2026-03-21 15:04:06 +08:00
|
|
|
if (item && 'key' in item && typeof item.key === 'string') {
|
2026-03-22 11:25:28 +08:00
|
|
|
const key = item.key;
|
|
|
|
|
if (pathname === key || pathname.startsWith(key + '/')) {
|
|
|
|
|
if (key.length > bestMatchLength) {
|
|
|
|
|
bestMatch = key;
|
|
|
|
|
bestMatchLength = key.length;
|
|
|
|
|
}
|
2026-03-19 14:19:01 +08:00
|
|
|
}
|
2026-03-22 11:25:28 +08:00
|
|
|
}
|
|
|
|
|
if (item && 'children' in item && Array.isArray(item.children)) {
|
|
|
|
|
findMatch(item.children);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
findMatch(menuItems);
|
|
|
|
|
return bestMatch ? [bestMatch] : [];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const getOpenKeys = (): string[] => {
|
|
|
|
|
const pathname = location.pathname;
|
|
|
|
|
const openKeys: string[] = [];
|
|
|
|
|
|
|
|
|
|
const findParent = (items: MenuItem[], parentKey?: string) => {
|
|
|
|
|
items.forEach((item) => {
|
|
|
|
|
if (item && 'key' in item && typeof item.key === 'string') {
|
|
|
|
|
const key = item.key;
|
|
|
|
|
if (pathname === key || pathname.startsWith(key + '/')) {
|
|
|
|
|
if (parentKey) {
|
|
|
|
|
openKeys.push(parentKey);
|
|
|
|
|
}
|
2026-03-19 14:19:01 +08:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-22 11:25:28 +08:00
|
|
|
if (item && 'children' in item && Array.isArray(item.children)) {
|
|
|
|
|
const itemKey = 'key' in item ? item.key as string : undefined;
|
|
|
|
|
findParent(item.children, itemKey);
|
|
|
|
|
}
|
|
|
|
|
});
|
2026-03-19 14:19:01 +08:00
|
|
|
};
|
|
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
findParent(menuItems);
|
2026-03-23 12:41:35 +08:00
|
|
|
return Array.from(new Set(openKeys));
|
2026-03-22 11:25:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const selectedKeys = getSelectedKeys();
|
|
|
|
|
const openKeys = getOpenKeys();
|
2026-03-19 01:39:34 +08:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const savedCollapsed = localStorage.getItem('sidebar_collapsed');
|
|
|
|
|
if (savedCollapsed !== null) {
|
|
|
|
|
setCollapsed(savedCollapsed === 'true');
|
|
|
|
|
}
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
const handleCollapse = (value: boolean) => {
|
|
|
|
|
setCollapsed(value);
|
|
|
|
|
localStorage.setItem('sidebar_collapsed', String(value));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleUserMenuClick = ({ key }: { key: string }) => {
|
|
|
|
|
if (key === 'logout') {
|
|
|
|
|
localStorage.removeItem('token');
|
2026-03-22 11:25:28 +08:00
|
|
|
navigate('/auth/login');
|
2026-03-19 01:39:34 +08:00
|
|
|
} else if (key === 'profile') {
|
2026-03-22 11:25:28 +08:00
|
|
|
navigate('/dashboard/settings/profile');
|
2026-03-19 01:39:34 +08:00
|
|
|
} else if (key === 'settings') {
|
2026-03-22 11:25:28 +08:00
|
|
|
navigate('/dashboard/settings');
|
|
|
|
|
} else if (key === 'subscription') {
|
|
|
|
|
navigate('/dashboard/settings/subscription');
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSwitchUser = (userId: string) => {
|
|
|
|
|
const user = MOCK_USERS.find(u => u.id === userId);
|
|
|
|
|
if (user) {
|
|
|
|
|
setCurrentUser(user);
|
|
|
|
|
message.success(`已切换到 ${user.name} (${ROLE_CONFIG[user.role].label})`);
|
2026-03-19 01:39:34 +08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
const userMenuItems: MenuItem[] = [
|
|
|
|
|
{
|
|
|
|
|
key: 'profile',
|
|
|
|
|
icon: <UserOutlined />,
|
|
|
|
|
label: '个人中心',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'subscription',
|
|
|
|
|
icon: <CrownOutlined />,
|
|
|
|
|
label: '订阅管理',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'settings',
|
|
|
|
|
icon: <SettingOutlined />,
|
|
|
|
|
label: '账号设置',
|
|
|
|
|
},
|
|
|
|
|
{ type: 'divider' },
|
|
|
|
|
{
|
|
|
|
|
key: 'logout',
|
|
|
|
|
icon: <AlertOutlined />,
|
|
|
|
|
label: '退出登录',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const planColors: Record<string, string> = {
|
|
|
|
|
free: 'default',
|
|
|
|
|
basic: 'blue',
|
|
|
|
|
pro: 'gold',
|
|
|
|
|
enterprise: 'purple',
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-19 01:39:34 +08:00
|
|
|
return (
|
|
|
|
|
<Layout style={{ minHeight: '100vh' }}>
|
|
|
|
|
<Sider
|
|
|
|
|
trigger={null}
|
|
|
|
|
collapsible
|
|
|
|
|
collapsed={collapsed}
|
2026-03-22 11:25:28 +08:00
|
|
|
width={collapsed ? 80 : 200}
|
2026-03-19 01:39:34 +08:00
|
|
|
style={{
|
|
|
|
|
background: '#001529',
|
|
|
|
|
position: 'fixed',
|
|
|
|
|
left: 0,
|
|
|
|
|
top: 0,
|
2026-03-22 11:25:28 +08:00
|
|
|
height: '100vh',
|
2026-03-19 01:39:34 +08:00
|
|
|
zIndex: 100,
|
2026-03-22 11:25:28 +08:00
|
|
|
padding: 0,
|
2026-03-19 01:39:34 +08:00
|
|
|
}}
|
|
|
|
|
>
|
2026-03-22 11:25:28 +08:00
|
|
|
<div style={{
|
|
|
|
|
height: '100%',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
|
|
|
|
}}>
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
height: '64px',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
background: '#002140',
|
|
|
|
|
borderBottom: '1px solid rgba(255, 255, 255, 0.1)',
|
|
|
|
|
flexShrink: 0,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{collapsed ? (
|
|
|
|
|
<div style={{ color: '#fff', fontSize: '20px', fontWeight: 'bold' }}>C</div>
|
|
|
|
|
) : (
|
|
|
|
|
<Title level={4} style={{ color: '#fff', margin: 0, whiteSpace: 'nowrap' }}>
|
|
|
|
|
Crawlful Hub
|
|
|
|
|
</Title>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
2026-03-19 01:39:34 +08:00
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
flex: '1 1 auto',
|
|
|
|
|
minHeight: 0,
|
|
|
|
|
overflow: 'auto',
|
|
|
|
|
overflowX: 'hidden',
|
|
|
|
|
}}
|
|
|
|
|
className="custom-scrollbar"
|
|
|
|
|
>
|
|
|
|
|
<style>{`
|
|
|
|
|
.custom-scrollbar::-webkit-scrollbar {
|
|
|
|
|
width: 4px;
|
|
|
|
|
}
|
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-track {
|
|
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(255, 255, 255, 0.15);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
transition: background 0.3s;
|
|
|
|
|
}
|
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.3);
|
|
|
|
|
}
|
|
|
|
|
`}</style>
|
|
|
|
|
<Menu
|
|
|
|
|
theme="dark"
|
|
|
|
|
mode="inline"
|
|
|
|
|
selectedKeys={selectedKeys}
|
|
|
|
|
defaultOpenKeys={openKeys}
|
|
|
|
|
items={menuItems}
|
|
|
|
|
style={{
|
|
|
|
|
borderRight: 0,
|
|
|
|
|
paddingTop: '8px',
|
|
|
|
|
height: 'auto',
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
height: '48px',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
borderTop: '1px solid rgba(255, 255, 255, 0.1)',
|
|
|
|
|
flexShrink: 0,
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
background: 'rgba(255, 255, 255, 0.05)',
|
|
|
|
|
}}
|
|
|
|
|
onClick={() => handleCollapse(!collapsed)}
|
|
|
|
|
>
|
|
|
|
|
{collapsed ? (
|
|
|
|
|
<MenuUnfoldOutlined style={{ fontSize: '16px', color: '#fff' }} />
|
|
|
|
|
) : (
|
|
|
|
|
<MenuFoldOutlined style={{ fontSize: '16px', color: '#fff' }} />
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-03-19 01:39:34 +08:00
|
|
|
</Sider>
|
|
|
|
|
|
|
|
|
|
<Layout
|
|
|
|
|
style={{
|
2026-03-22 11:25:28 +08:00
|
|
|
marginLeft: collapsed ? 80 : 200,
|
2026-03-19 01:39:34 +08:00
|
|
|
transition: 'all 0.2s',
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Header
|
|
|
|
|
style={{
|
|
|
|
|
background: '#fff',
|
|
|
|
|
padding: '0 24px',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
boxShadow: '0 1px 4px rgba(0, 21, 41, 0.08)',
|
|
|
|
|
position: 'sticky',
|
|
|
|
|
top: 0,
|
|
|
|
|
zIndex: 99,
|
|
|
|
|
}}
|
|
|
|
|
>
|
2026-03-22 11:25:28 +08:00
|
|
|
<div style={{ fontSize: '16px', fontWeight: 500, color: '#333' }}>
|
|
|
|
|
Crawlful Hub 管理后台
|
2026-03-19 01:39:34 +08:00
|
|
|
</div>
|
|
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
<Space size={16}>
|
|
|
|
|
<Dropdown
|
|
|
|
|
menu={{
|
|
|
|
|
items: MOCK_USERS.map(user => ({
|
|
|
|
|
key: user.id,
|
|
|
|
|
label: (
|
|
|
|
|
<Space>
|
|
|
|
|
<span>{user.name}</span>
|
|
|
|
|
<Tag color={ROLE_CONFIG[user.role].color}>{ROLE_CONFIG[user.role].label}</Tag>
|
|
|
|
|
<Tag color={planColors[user.subscription?.plan || 'free']}>{getPlanLabel()}</Tag>
|
|
|
|
|
</Space>
|
|
|
|
|
),
|
|
|
|
|
})),
|
|
|
|
|
onClick: ({ key }) => handleSwitchUser(key),
|
|
|
|
|
}}
|
|
|
|
|
placement="bottomRight"
|
|
|
|
|
>
|
|
|
|
|
<Button size="small" icon={<SwapOutlined />}>
|
|
|
|
|
切换用户
|
|
|
|
|
</Button>
|
|
|
|
|
</Dropdown>
|
|
|
|
|
|
2026-03-19 01:39:34 +08:00
|
|
|
<Badge count={5} size="small">
|
|
|
|
|
<BellOutlined style={{ fontSize: '18px', cursor: 'pointer', color: '#666' }} />
|
|
|
|
|
</Badge>
|
|
|
|
|
|
2026-03-23 12:41:35 +08:00
|
|
|
<Dropdown
|
|
|
|
|
menu={{
|
|
|
|
|
items: [
|
|
|
|
|
{ key: 'zh-CN', label: '简体中文' },
|
|
|
|
|
{ key: 'en-US', label: 'English' },
|
|
|
|
|
],
|
|
|
|
|
onClick: ({ key }) => setLocale(key),
|
|
|
|
|
selectedKeys: [locale],
|
|
|
|
|
}}
|
|
|
|
|
placement="bottomRight"
|
|
|
|
|
>
|
|
|
|
|
<Button type="text" icon={<GlobalOutlined />} style={{ height: '32px' }}>
|
|
|
|
|
{locale === 'zh-CN' ? '中文' : 'EN'}
|
|
|
|
|
</Button>
|
|
|
|
|
</Dropdown>
|
|
|
|
|
|
2026-03-19 01:39:34 +08:00
|
|
|
<Dropdown
|
|
|
|
|
menu={{ items: userMenuItems, onClick: handleUserMenuClick }}
|
|
|
|
|
placement="bottomRight"
|
|
|
|
|
>
|
|
|
|
|
<Space style={{ cursor: 'pointer' }}>
|
|
|
|
|
<Avatar style={{ backgroundColor: '#1890ff' }} icon={<UserOutlined />} />
|
2026-03-22 11:25:28 +08:00
|
|
|
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'flex-start' }}>
|
|
|
|
|
<Text strong style={{ fontSize: '14px' }}>{currentUser.name}</Text>
|
|
|
|
|
<Space size={4}>
|
|
|
|
|
<Tag color={ROLE_CONFIG[currentUser.role].color} style={{ margin: 0, fontSize: '10px', padding: '0 4px' }}>
|
|
|
|
|
{ROLE_CONFIG[currentUser.role].label}
|
|
|
|
|
</Tag>
|
|
|
|
|
<Tag color={planColors[currentUser.subscription?.plan || 'free']} style={{ margin: 0, fontSize: '10px', padding: '0 4px' }}>
|
|
|
|
|
{getPlanLabel()}
|
|
|
|
|
</Tag>
|
|
|
|
|
</Space>
|
|
|
|
|
</div>
|
|
|
|
|
<DownOutlined style={{ fontSize: '12px', color: '#999' }} />
|
2026-03-19 01:39:34 +08:00
|
|
|
</Space>
|
|
|
|
|
</Dropdown>
|
|
|
|
|
</Space>
|
|
|
|
|
</Header>
|
|
|
|
|
|
|
|
|
|
<Content
|
|
|
|
|
style={{
|
|
|
|
|
margin: '24px',
|
|
|
|
|
padding: '24px',
|
|
|
|
|
background: '#f0f2f5',
|
|
|
|
|
minHeight: 280,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
background: '#fff',
|
|
|
|
|
padding: '24px',
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
minHeight: 'calc(100vh - 184px)',
|
|
|
|
|
boxShadow: '0 1px 2px rgba(0, 0, 0, 0.06)',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2026-03-22 11:25:28 +08:00
|
|
|
<Outlet context={{ currentUser, hasPermission, hasFeature, isPaidUser }} />
|
2026-03-19 01:39:34 +08:00
|
|
|
</div>
|
|
|
|
|
</Content>
|
|
|
|
|
</Layout>
|
|
|
|
|
</Layout>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-22 11:25:28 +08:00
|
|
|
const MainLayout: React.FC = () => {
|
|
|
|
|
return (
|
|
|
|
|
<UserProvider>
|
|
|
|
|
<MainLayoutContent />
|
|
|
|
|
</UserProvider>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-19 01:39:34 +08:00
|
|
|
export default MainLayout;
|