File size: 4,893 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | import { createBrowserRouter, RouterProvider } from 'react-router-dom';
import Layout from './components/layout/Layout';
import Dashboard from './pages/Dashboard';
import Accounts from './pages/Accounts';
import Settings from './pages/Settings';
import ApiProxy from './pages/ApiProxy';
import Monitor from './pages/Monitor';
import TokenStats from './pages/TokenStats';
import Security from './pages/Security';
import ThemeManager from './components/common/ThemeManager';
import UserToken from './pages/UserToken';
import { UpdateNotification } from './components/UpdateNotification';
import DebugConsole from './components/debug/DebugConsole';
import { useEffect, useState } from 'react';
import { useConfigStore } from './stores/useConfigStore';
import { useAccountStore } from './stores/useAccountStore';
import { useTranslation } from 'react-i18next';
import { listen } from '@tauri-apps/api/event';
import { isTauri } from './utils/env';
import { request as invoke } from './utils/request';
import { AdminAuthGuard } from './components/common/AdminAuthGuard';
const router = createBrowserRouter([
{
path: '/',
element: <Layout />,
children: [
{
index: true,
element: <Dashboard />,
},
{
path: 'accounts',
element: <Accounts />,
},
{
path: 'api-proxy',
element: <ApiProxy />,
},
{
path: 'monitor',
element: <Monitor />,
},
{
path: 'token-stats',
element: <TokenStats />,
},
{
path: 'user-token',
element: <UserToken />,
},
{
path: 'security',
element: <Security />,
},
{
path: 'settings',
element: <Settings />,
},
],
},
]);
function App() {
const { config, loadConfig } = useConfigStore();
const { fetchCurrentAccount, fetchAccounts } = useAccountStore();
const { i18n } = useTranslation();
useEffect(() => {
loadConfig();
}, [loadConfig]);
// Sync language from config
useEffect(() => {
if (config?.language) {
i18n.changeLanguage(config.language);
// Support RTL
if (config.language === 'ar') {
document.documentElement.dir = 'rtl';
} else {
document.documentElement.dir = 'ltr';
}
}
}, [config?.language, i18n]);
// Listen for tray events
useEffect(() => {
if (!isTauri()) return;
const unlistenPromises: Promise<() => void>[] = [];
// 监听托盘切换账号事件
unlistenPromises.push(
listen('tray://account-switched', () => {
console.log('[App] Tray account switched, refreshing...');
fetchCurrentAccount();
fetchAccounts();
})
);
// 监听托盘刷新事件
unlistenPromises.push(
listen('tray://refresh-current', () => {
console.log('[App] Tray refresh triggered, refreshing...');
fetchCurrentAccount();
fetchAccounts();
})
);
// 监听后端全量刷新事件 (Command / Scheduler)
unlistenPromises.push(
listen('accounts://refreshed', () => {
console.log('[App] Backend triggered quota refresh, syncing UI...');
fetchCurrentAccount();
fetchAccounts();
})
);
// Cleanup
return () => {
Promise.all(unlistenPromises).then(unlisteners => {
unlisteners.forEach(unlisten => unlisten());
});
};
}, [fetchCurrentAccount, fetchAccounts]);
// Update notification state
const [showUpdateNotification, setShowUpdateNotification] = useState(false);
// Check for updates on startup
useEffect(() => {
const checkUpdates = async () => {
try {
console.log('[App] Checking if we should check for updates...');
const shouldCheck = await invoke<boolean>('should_check_updates');
console.log('[App] Should check updates:', shouldCheck);
if (shouldCheck) {
setShowUpdateNotification(true);
// 我们这里只负责显示通知组件,通知组件内部会去调用 check_for_updates
// 我们在显示组件后,标记已经检查过了(即便失败或无更新,组件内部也会处理)
await invoke('update_last_check_time');
console.log('[App] Update check cycle initiated and last check time updated.');
}
} catch (error) {
console.error('Failed to check update settings:', error);
}
};
// Delay check to avoid blocking initial render
const timer = setTimeout(checkUpdates, 2000);
return () => clearTimeout(timer);
}, []);
return (
<AdminAuthGuard>
<ThemeManager />
<DebugConsole />
{showUpdateNotification && (
<UpdateNotification onClose={() => setShowUpdateNotification(false)} />
)}
<RouterProvider router={router} />
</AdminAuthGuard>
);
}
export default App; |