| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- import React, { lazy, Suspense, useContext, useEffect } from 'react';
- import { Route, Routes, useLocation } from 'react-router-dom';
- import Loading from './components/Loading';
- import User from './pages/User';
- import { PrivateRoute } from './components/PrivateRoute';
- import RegisterForm from './components/RegisterForm';
- import LoginForm from './components/LoginForm';
- import NotFound from './pages/NotFound';
- import Setting from './pages/Setting';
- import EditUser from './pages/User/EditUser';
- import PasswordResetForm from './components/PasswordResetForm';
- import PasswordResetConfirm from './components/PasswordResetConfirm';
- import Channel from './pages/Channel';
- import Token from './pages/Token';
- import EditChannel from './pages/Channel/EditChannel';
- import Redemption from './pages/Redemption';
- import TopUp from './pages/TopUp';
- import Log from './pages/Log';
- import Chat from './pages/Chat';
- import Chat2Link from './pages/Chat2Link';
- import { Layout } from '@douyinfe/semi-ui';
- import Midjourney from './pages/Midjourney';
- import Pricing from './pages/Pricing/index.js';
- import Task from './pages/Task/index.js';
- import Playground from './pages/Playground/Playground.js';
- import OAuth2Callback from './components/OAuth2Callback.js';
- import PersonalSetting from './components/PersonalSetting.js';
- import Setup from './pages/Setup/index.js';
- const Home = lazy(() => import('./pages/Home'));
- const Detail = lazy(() => import('./pages/Detail'));
- const About = lazy(() => import('./pages/About'));
- function App() {
- const location = useLocation();
- return (
- <>
- <Routes>
- <Route
- path='/'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Home />
- </Suspense>
- }
- />
- <Route
- path='/setup'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Setup />
- </Suspense>
- }
- />
- <Route
- path='/channel'
- element={
- <PrivateRoute>
- <Channel />
- </PrivateRoute>
- }
- />
- <Route
- path='/channel/edit/:id'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <EditChannel />
- </Suspense>
- }
- />
- <Route
- path='/channel/add'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <EditChannel />
- </Suspense>
- }
- />
- <Route
- path='/token'
- element={
- <PrivateRoute>
- <Token />
- </PrivateRoute>
- }
- />
- <Route
- path='/playground'
- element={
- <PrivateRoute>
- <Playground />
- </PrivateRoute>
- }
- />
- <Route
- path='/redemption'
- element={
- <PrivateRoute>
- <Redemption />
- </PrivateRoute>
- }
- />
- <Route
- path='/user'
- element={
- <PrivateRoute>
- <User />
- </PrivateRoute>
- }
- />
- <Route
- path='/user/edit/:id'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <EditUser />
- </Suspense>
- }
- />
- <Route
- path='/user/edit'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <EditUser />
- </Suspense>
- }
- />
- <Route
- path='/user/reset'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <PasswordResetConfirm />
- </Suspense>
- }
- />
- <Route
- path='/login'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <LoginForm />
- </Suspense>
- }
- />
- <Route
- path='/register'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <RegisterForm />
- </Suspense>
- }
- />
- <Route
- path='/reset'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <PasswordResetForm />
- </Suspense>
- }
- />
- <Route
- path='/oauth/github'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <OAuth2Callback type='github'></OAuth2Callback>
- </Suspense>
- }
- />
- <Route
- path='/oauth/oidc'
- element={
- <Suspense fallback={<Loading></Loading>}>
- <OAuth2Callback type='oidc'></OAuth2Callback>
- </Suspense>
- }
- />
- <Route
- path='/oauth/linuxdo'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <OAuth2Callback type='linuxdo'></OAuth2Callback>
- </Suspense>
- }
- />
- <Route
- path='/setting'
- element={
- <PrivateRoute>
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Setting />
- </Suspense>
- </PrivateRoute>
- }
- />
- <Route
- path='/personal'
- element={
- <PrivateRoute>
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <PersonalSetting />
- </Suspense>
- </PrivateRoute>
- }
- />
- <Route
- path='/topup'
- element={
- <PrivateRoute>
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <TopUp />
- </Suspense>
- </PrivateRoute>
- }
- />
- <Route
- path='/log'
- element={
- <PrivateRoute>
- <Log />
- </PrivateRoute>
- }
- />
- <Route
- path='/detail'
- element={
- <PrivateRoute>
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Detail />
- </Suspense>
- </PrivateRoute>
- }
- />
- <Route
- path='/midjourney'
- element={
- <PrivateRoute>
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Midjourney />
- </Suspense>
- </PrivateRoute>
- }
- />
- <Route
- path='/task'
- element={
- <PrivateRoute>
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Task />
- </Suspense>
- </PrivateRoute>
- }
- />
- <Route
- path='/pricing'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Pricing />
- </Suspense>
- }
- />
- <Route
- path='/about'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <About />
- </Suspense>
- }
- />
- <Route
- path='/chat/:id?'
- element={
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Chat />
- </Suspense>
- }
- />
- {/* 方便使用chat2link直接跳转聊天... */}
- <Route
- path='/chat2link'
- element={
- <PrivateRoute>
- <Suspense fallback={<Loading></Loading>} key={location.pathname}>
- <Chat2Link />
- </Suspense>
- </PrivateRoute>
- }
- />
- <Route path='*' element={<NotFound />} />
- </Routes>
- </>
- );
- }
- export default App;
|