mirror of
https://github.com/router-for-me/Cli-Proxy-API-Management-Center.git
synced 2026-02-03 03:10:50 +08:00
385 lines
13 KiB
TypeScript
385 lines
13 KiB
TypeScript
import { ReactNode, SVGProps, useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react';
|
||
import { NavLink, Outlet } from 'react-router-dom';
|
||
import { useTranslation } from 'react-i18next';
|
||
import { Button } from '@/components/ui/Button';
|
||
import {
|
||
IconBot,
|
||
IconChartLine,
|
||
IconFileText,
|
||
IconInfo,
|
||
IconKey,
|
||
IconLayoutDashboard,
|
||
IconScrollText,
|
||
IconSettings,
|
||
IconShield,
|
||
IconSlidersHorizontal
|
||
} from '@/components/ui/icons';
|
||
import { INLINE_LOGO_JPEG } from '@/assets/logoInline';
|
||
import { useAuthStore, useConfigStore, useLanguageStore, useNotificationStore, useThemeStore } from '@/stores';
|
||
import { versionApi } from '@/services/api';
|
||
|
||
const sidebarIcons: Record<string, ReactNode> = {
|
||
dashboard: <IconLayoutDashboard size={18} />,
|
||
settings: <IconSlidersHorizontal size={18} />,
|
||
apiKeys: <IconKey size={18} />,
|
||
aiProviders: <IconBot size={18} />,
|
||
authFiles: <IconFileText size={18} />,
|
||
oauth: <IconShield size={18} />,
|
||
usage: <IconChartLine size={18} />,
|
||
config: <IconSettings size={18} />,
|
||
logs: <IconScrollText size={18} />,
|
||
system: <IconInfo size={18} />
|
||
};
|
||
|
||
// Header action icons - smaller size for header buttons
|
||
const headerIconProps: SVGProps<SVGSVGElement> = {
|
||
width: 16,
|
||
height: 16,
|
||
viewBox: '0 0 24 24',
|
||
fill: 'none',
|
||
stroke: 'currentColor',
|
||
strokeWidth: 2,
|
||
strokeLinecap: 'round',
|
||
strokeLinejoin: 'round',
|
||
'aria-hidden': 'true',
|
||
focusable: 'false'
|
||
};
|
||
|
||
const headerIcons = {
|
||
refresh: (
|
||
<svg {...headerIconProps}>
|
||
<path d="M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8" />
|
||
<path d="M21 3v5h-5" />
|
||
</svg>
|
||
),
|
||
update: (
|
||
<svg {...headerIconProps}>
|
||
<path d="M12 19V5" />
|
||
<path d="m5 12 7-7 7 7" />
|
||
</svg>
|
||
),
|
||
menu: (
|
||
<svg {...headerIconProps}>
|
||
<path d="M4 7h16" />
|
||
<path d="M4 12h16" />
|
||
<path d="M4 17h16" />
|
||
</svg>
|
||
),
|
||
chevronLeft: (
|
||
<svg {...headerIconProps}>
|
||
<path d="m14 18-6-6 6-6" />
|
||
</svg>
|
||
),
|
||
chevronRight: (
|
||
<svg {...headerIconProps}>
|
||
<path d="m10 6 6 6-6 6" />
|
||
</svg>
|
||
),
|
||
language: (
|
||
<svg {...headerIconProps}>
|
||
<circle cx="12" cy="12" r="10" />
|
||
<path d="M2 12h20" />
|
||
<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" />
|
||
</svg>
|
||
),
|
||
sun: (
|
||
<svg {...headerIconProps}>
|
||
<circle cx="12" cy="12" r="4" />
|
||
<path d="M12 2v2" />
|
||
<path d="M12 20v2" />
|
||
<path d="m4.93 4.93 1.41 1.41" />
|
||
<path d="m17.66 17.66 1.41 1.41" />
|
||
<path d="M2 12h2" />
|
||
<path d="M20 12h2" />
|
||
<path d="m6.34 17.66-1.41 1.41" />
|
||
<path d="m19.07 4.93-1.41 1.41" />
|
||
</svg>
|
||
),
|
||
moon: (
|
||
<svg {...headerIconProps}>
|
||
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9z" />
|
||
</svg>
|
||
),
|
||
logout: (
|
||
<svg {...headerIconProps}>
|
||
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" />
|
||
<path d="m16 17 5-5-5-5" />
|
||
<path d="M21 12H9" />
|
||
</svg>
|
||
)
|
||
};
|
||
|
||
const parseVersionSegments = (version?: string | null) => {
|
||
if (!version) return null;
|
||
const cleaned = version.trim().replace(/^v/i, '');
|
||
if (!cleaned) return null;
|
||
const parts = cleaned
|
||
.split(/[^0-9]+/)
|
||
.filter(Boolean)
|
||
.map((segment) => Number.parseInt(segment, 10))
|
||
.filter(Number.isFinite);
|
||
return parts.length ? parts : null;
|
||
};
|
||
|
||
const compareVersions = (latest?: string | null, current?: string | null) => {
|
||
const latestParts = parseVersionSegments(latest);
|
||
const currentParts = parseVersionSegments(current);
|
||
if (!latestParts || !currentParts) return null;
|
||
const length = Math.max(latestParts.length, currentParts.length);
|
||
for (let i = 0; i < length; i++) {
|
||
const l = latestParts[i] || 0;
|
||
const c = currentParts[i] || 0;
|
||
if (l > c) return 1;
|
||
if (l < c) return -1;
|
||
}
|
||
return 0;
|
||
};
|
||
|
||
export function MainLayout() {
|
||
const { t, i18n } = useTranslation();
|
||
const { showNotification } = useNotificationStore();
|
||
|
||
const apiBase = useAuthStore((state) => state.apiBase);
|
||
const serverVersion = useAuthStore((state) => state.serverVersion);
|
||
const serverBuildDate = useAuthStore((state) => state.serverBuildDate);
|
||
const connectionStatus = useAuthStore((state) => state.connectionStatus);
|
||
const logout = useAuthStore((state) => state.logout);
|
||
|
||
const config = useConfigStore((state) => state.config);
|
||
const fetchConfig = useConfigStore((state) => state.fetchConfig);
|
||
const clearCache = useConfigStore((state) => state.clearCache);
|
||
|
||
const theme = useThemeStore((state) => state.theme);
|
||
const toggleTheme = useThemeStore((state) => state.toggleTheme);
|
||
const toggleLanguage = useLanguageStore((state) => state.toggleLanguage);
|
||
|
||
const [sidebarOpen, setSidebarOpen] = useState(false);
|
||
const [sidebarCollapsed, setSidebarCollapsed] = useState(false);
|
||
const [checkingVersion, setCheckingVersion] = useState(false);
|
||
const [brandExpanded, setBrandExpanded] = useState(true);
|
||
const brandCollapseTimer = useRef<ReturnType<typeof setTimeout> | null>(null);
|
||
const headerRef = useRef<HTMLElement | null>(null);
|
||
|
||
const fullBrandName = 'CLI Proxy API Management Center';
|
||
const abbrBrandName = t('title.abbr');
|
||
|
||
// 将顶栏高度写入 CSS 变量,确保侧栏/内容区计算一致,防止滚动时抖动
|
||
useLayoutEffect(() => {
|
||
const updateHeaderHeight = () => {
|
||
const height = headerRef.current?.offsetHeight;
|
||
if (height) {
|
||
document.documentElement.style.setProperty('--header-height', `${height}px`);
|
||
}
|
||
};
|
||
|
||
updateHeaderHeight();
|
||
|
||
const resizeObserver =
|
||
typeof ResizeObserver !== 'undefined' && headerRef.current ? new ResizeObserver(updateHeaderHeight) : null;
|
||
if (resizeObserver && headerRef.current) {
|
||
resizeObserver.observe(headerRef.current);
|
||
}
|
||
|
||
window.addEventListener('resize', updateHeaderHeight);
|
||
|
||
return () => {
|
||
if (resizeObserver) {
|
||
resizeObserver.disconnect();
|
||
}
|
||
window.removeEventListener('resize', updateHeaderHeight);
|
||
};
|
||
}, []);
|
||
|
||
// 5秒后自动收起品牌名称
|
||
useEffect(() => {
|
||
brandCollapseTimer.current = setTimeout(() => {
|
||
setBrandExpanded(false);
|
||
}, 5000);
|
||
|
||
return () => {
|
||
if (brandCollapseTimer.current) {
|
||
clearTimeout(brandCollapseTimer.current);
|
||
}
|
||
};
|
||
}, []);
|
||
|
||
const handleBrandClick = useCallback(() => {
|
||
if (!brandExpanded) {
|
||
setBrandExpanded(true);
|
||
// 点击展开后,5秒后再次收起
|
||
if (brandCollapseTimer.current) {
|
||
clearTimeout(brandCollapseTimer.current);
|
||
}
|
||
brandCollapseTimer.current = setTimeout(() => {
|
||
setBrandExpanded(false);
|
||
}, 5000);
|
||
}
|
||
}, [brandExpanded]);
|
||
|
||
useEffect(() => {
|
||
fetchConfig().catch(() => {
|
||
// ignore initial failure; login flow会提示
|
||
});
|
||
}, [fetchConfig]);
|
||
|
||
const statusClass =
|
||
connectionStatus === 'connected'
|
||
? 'success'
|
||
: connectionStatus === 'connecting'
|
||
? 'warning'
|
||
: connectionStatus === 'error'
|
||
? 'error'
|
||
: 'muted';
|
||
|
||
const navItems = [
|
||
{ path: '/', label: t('nav.dashboard'), icon: sidebarIcons.dashboard },
|
||
{ path: '/settings', label: t('nav.basic_settings'), icon: sidebarIcons.settings },
|
||
{ path: '/api-keys', label: t('nav.api_keys'), icon: sidebarIcons.apiKeys },
|
||
{ path: '/ai-providers', label: t('nav.ai_providers'), icon: sidebarIcons.aiProviders },
|
||
{ path: '/auth-files', label: t('nav.auth_files'), icon: sidebarIcons.authFiles },
|
||
{ path: '/oauth', label: t('nav.oauth', { defaultValue: 'OAuth' }), icon: sidebarIcons.oauth },
|
||
{ path: '/usage', label: t('nav.usage_stats'), icon: sidebarIcons.usage },
|
||
{ path: '/config', label: t('nav.config_management'), icon: sidebarIcons.config },
|
||
...(config?.loggingToFile ? [{ path: '/logs', label: t('nav.logs'), icon: sidebarIcons.logs }] : []),
|
||
{ path: '/system', label: t('nav.system_info'), icon: sidebarIcons.system }
|
||
];
|
||
|
||
const handleRefreshAll = async () => {
|
||
clearCache();
|
||
try {
|
||
await fetchConfig(undefined, true);
|
||
showNotification(t('notification.data_refreshed'), 'success');
|
||
} catch (error: any) {
|
||
showNotification(`${t('notification.refresh_failed')}: ${error?.message || ''}`, 'error');
|
||
}
|
||
};
|
||
|
||
const handleVersionCheck = async () => {
|
||
setCheckingVersion(true);
|
||
try {
|
||
const data = await versionApi.checkLatest();
|
||
const latest = data?.['latest-version'] ?? data?.latest_version ?? data?.latest ?? '';
|
||
const comparison = compareVersions(latest, serverVersion);
|
||
|
||
if (!latest) {
|
||
showNotification(t('system_info.version_check_error'), 'error');
|
||
return;
|
||
}
|
||
|
||
if (comparison === null) {
|
||
showNotification(t('system_info.version_current_missing'), 'warning');
|
||
return;
|
||
}
|
||
|
||
if (comparison > 0) {
|
||
showNotification(t('system_info.version_update_available', { version: latest }), 'warning');
|
||
} else {
|
||
showNotification(t('system_info.version_is_latest'), 'success');
|
||
}
|
||
} catch (error: any) {
|
||
showNotification(`${t('system_info.version_check_error')}: ${error?.message || ''}`, 'error');
|
||
} finally {
|
||
setCheckingVersion(false);
|
||
}
|
||
};
|
||
|
||
return (
|
||
<div className="app-shell">
|
||
<header className="main-header" ref={headerRef}>
|
||
<div className="left">
|
||
<button
|
||
className="sidebar-toggle-header"
|
||
onClick={() => setSidebarCollapsed((prev) => !prev)}
|
||
title={sidebarCollapsed ? t('sidebar.expand', { defaultValue: '展开' }) : t('sidebar.collapse', { defaultValue: '收起' })}
|
||
>
|
||
{sidebarCollapsed ? headerIcons.chevronRight : headerIcons.chevronLeft}
|
||
</button>
|
||
<img src={INLINE_LOGO_JPEG} alt="CPAMC logo" className="brand-logo" />
|
||
<div
|
||
className={`brand-header ${brandExpanded ? 'expanded' : 'collapsed'}`}
|
||
onClick={handleBrandClick}
|
||
title={brandExpanded ? undefined : fullBrandName}
|
||
>
|
||
<span className="brand-full">{fullBrandName}</span>
|
||
<span className="brand-abbr">{abbrBrandName}</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div className="right">
|
||
<div className="connection">
|
||
<span className={`status-badge ${statusClass}`}>
|
||
{t(
|
||
connectionStatus === 'connected'
|
||
? 'common.connected_status'
|
||
: connectionStatus === 'connecting'
|
||
? 'common.connecting_status'
|
||
: 'common.disconnected_status'
|
||
)}
|
||
</span>
|
||
<span className="base">{apiBase || '-'}</span>
|
||
</div>
|
||
|
||
<div className="header-actions">
|
||
<Button className="mobile-menu-btn" variant="ghost" size="sm" onClick={() => setSidebarOpen((prev) => !prev)}>
|
||
{headerIcons.menu}
|
||
</Button>
|
||
<Button variant="ghost" size="sm" onClick={handleRefreshAll} title={t('header.refresh_all')}>
|
||
{headerIcons.refresh}
|
||
</Button>
|
||
<Button variant="ghost" size="sm" onClick={handleVersionCheck} loading={checkingVersion} title={t('system_info.version_check_button')}>
|
||
{headerIcons.update}
|
||
</Button>
|
||
<Button variant="ghost" size="sm" onClick={toggleLanguage} title={t('language.switch')}>
|
||
{headerIcons.language}
|
||
</Button>
|
||
<Button variant="ghost" size="sm" onClick={toggleTheme} title={t('theme.switch')}>
|
||
{theme === 'dark' ? headerIcons.sun : headerIcons.moon}
|
||
</Button>
|
||
<Button variant="ghost" size="sm" onClick={logout} title={t('header.logout')}>
|
||
{headerIcons.logout}
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
|
||
<div className="main-body">
|
||
<aside className={`sidebar ${sidebarOpen ? 'open' : ''} ${sidebarCollapsed ? 'collapsed' : ''}`}>
|
||
<div className="nav-section">
|
||
{navItems.map((item) => (
|
||
<NavLink
|
||
key={item.path}
|
||
to={item.path}
|
||
className={({ isActive }) => `nav-item ${isActive ? 'active' : ''}`}
|
||
onClick={() => setSidebarOpen(false)}
|
||
title={sidebarCollapsed ? item.label : undefined}
|
||
>
|
||
<span className="nav-icon">{item.icon}</span>
|
||
{!sidebarCollapsed && <span className="nav-label">{item.label}</span>}
|
||
</NavLink>
|
||
))}
|
||
</div>
|
||
</aside>
|
||
|
||
<div className="content">
|
||
<main className="main-content">
|
||
<Outlet />
|
||
</main>
|
||
|
||
<footer className="footer">
|
||
<span>
|
||
{t('footer.api_version')}: {serverVersion || t('system_info.version_unknown')}
|
||
</span>
|
||
<span>
|
||
{t('footer.version')}: {__APP_VERSION__ || t('system_info.version_unknown')}
|
||
</span>
|
||
<span>
|
||
{t('footer.build_date')}:{' '}
|
||
{serverBuildDate ? new Date(serverBuildDate).toLocaleString(i18n.language) : t('system_info.version_unknown')}
|
||
</span>
|
||
</footer>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|