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
|
import { Suspense } from 'react';
import { HashRouter, Navigate, Route, RouteObject, Routes, useRoutes } from 'react-router-dom';
import Loading from '~/components/Loading';
import { Head } from '~/components/shared/Head';
import SideBar from '~/components/SideBar';
import styles from '../App.module.scss';
import APIDiscovery from './APIDiscovery';
import AboutPage from '../pages/AboutPage';
import BackendPage from '../pages/BackendPage';
import ConfigPage from '../pages/ConfigPage';
import ConnectionsPage from '../pages/ConnectionsPage';
import HomePage from '../pages/HomePage';
import LogsPage from '../pages/LogsPage';
import ProxiesPage from '../pages/ProxiesPage';
import RulesPage from '../pages/RulesPage';
import StyleGuidePage from '../pages/StyleGuidePage';
const routes = [
{ path: '/', element: <Navigate to="/proxies" replace /> },
{ path: '/home', element: <HomePage /> },
{ path: '/connections', element: <ConnectionsPage /> },
{ path: '/configs', element: <ConfigPage /> },
{ path: '/logs', element: <LogsPage /> },
{ path: '/proxies', element: <ProxiesPage /> },
{ path: '/rules', element: <RulesPage /> },
{ path: '/about', element: <AboutPage /> },
import.meta.env.DEV ? { path: '/style', element: <StyleGuidePage /> } : false,
].filter(Boolean) as RouteObject[];
function DashboardRouter() {
return (
<>
<APIDiscovery />
<SideBar />
<div className={styles.content}>{useRoutes(routes)}</div>
</>
);
}
export function AppRouter() {
return (
<div className={styles.app}>
<Head />
<Suspense fallback={<Loading />}>
<HashRouter>
<Routes>
<Route path="/backend" element={<BackendPage />} />
<Route path="*" element={<DashboardRouter />} />
</Routes>
</HashRouter>
</Suspense>
</div>
);
}
|