mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
105 lines
4.3 KiB
TypeScript
105 lines
4.3 KiB
TypeScript
import { useEffect } from 'react';
|
|
import { Outlet, Route, Routes, useLocation, useParams } from 'react-router-dom';
|
|
import { isHomeView } from './lib/utils/view-utils';
|
|
import useTheme from './hooks/use-theme';
|
|
import styles from './app.module.css';
|
|
import Board from './views/board';
|
|
import Catalog from './views/catalog';
|
|
import Home from './views/home';
|
|
import NotFound from './views/not-found';
|
|
import PendingPost from './views/pending-post';
|
|
import PostPage from './views/post-page';
|
|
import BoardBanner from './components/board-banner';
|
|
import { DesktopBoardButtons, MobileBoardButtons } from './components/board-buttons';
|
|
import BoardNav from './components/board-nav';
|
|
import ChallengeModal from './components/challenge-modal';
|
|
import SubplebbitStats from './components/subplebbit-stats';
|
|
import PostForm from './components/post-form';
|
|
|
|
const BoardLayout = () => {
|
|
const { accountCommentIndex, commentCid, subplebbitAddress } = useParams();
|
|
const location = useLocation();
|
|
|
|
const isValidAccountCommentIndex = !accountCommentIndex || (!isNaN(parseInt(accountCommentIndex)) && parseInt(accountCommentIndex) >= 0);
|
|
const isValidCommentCid = !commentCid || /^Qm[a-zA-Z0-9]{44}$/.test(commentCid);
|
|
const isValidSubplebbitAddress = !subplebbitAddress || subplebbitAddress.includes('.') || /^12D3K[a-zA-Z0-9]{44}$/.test(subplebbitAddress);
|
|
|
|
if (!isValidAccountCommentIndex || !isValidCommentCid || !isValidSubplebbitAddress) {
|
|
return <NotFound />;
|
|
}
|
|
|
|
// force rerender of post form when navigating between pages
|
|
const key = `${subplebbitAddress}-${location.pathname}`;
|
|
|
|
return (
|
|
<div className={styles.boardLayout}>
|
|
<BoardNav />
|
|
<BoardBanner />
|
|
<MobileBoardButtons />
|
|
<PostForm key={key} />
|
|
{subplebbitAddress && isValidSubplebbitAddress && <SubplebbitStats />}
|
|
<DesktopBoardButtons />
|
|
<Outlet />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const App = () => {
|
|
const location = useLocation();
|
|
const isInHomeView = isHomeView(location.pathname);
|
|
const [theme] = useTheme();
|
|
|
|
useEffect(() => {
|
|
document.body.classList.forEach((className) => document.body.classList.remove(className));
|
|
const classToAdd = isInHomeView ? 'yotsuba' : theme;
|
|
document.body.classList.add(classToAdd);
|
|
}, [theme, isInHomeView]);
|
|
|
|
const globalLayout = (
|
|
<>
|
|
<ChallengeModal />
|
|
<Outlet />
|
|
</>
|
|
);
|
|
|
|
return (
|
|
<div className={styles.app}>
|
|
<Routes>
|
|
<Route element={globalLayout}>
|
|
<Route path='/' element={<Home />} />
|
|
<Route element={<BoardLayout />}>
|
|
<Route path='/p/:subplebbitAddress' element={<Board />} />
|
|
<Route path='/p/:subplebbitAddress/settings' element={<Board />} />
|
|
<Route path='/p/:subplebbitAddress/catalog' element={<Catalog />} />
|
|
<Route path='/p/:subplebbitAddress/catalog/settings' element={<Catalog />} />
|
|
|
|
<Route path='/p/:subplebbitAddress/c/:commentCid' element={<PostPage />} />
|
|
<Route path='/p/:subplebbitAddress/c/:commentCid/settings' element={<PostPage />} />
|
|
<Route path='/p/:subplebbitAddress/description' element={<PostPage />} />
|
|
<Route path='/p/:subplebbitAddress/description/settings' element={<PostPage />} />
|
|
<Route path='/p/:subplebbitAddress/rules' element={<PostPage />} />
|
|
<Route path='/p/:subplebbitAddress/rules/settings' element={<PostPage />} />
|
|
|
|
<Route path='/p/all' element={<Board />} />
|
|
<Route path='/p/all/description' element={<PostPage />} />
|
|
<Route path='/p/all/settings' element={<Board />} />
|
|
<Route path='/p/all/catalog' element={<Catalog />} />
|
|
<Route path='/p/all/catalog/settings' element={<Catalog />} />
|
|
|
|
<Route path='/p/subscriptions' element={<Board />} />
|
|
<Route path='/p/subscriptions/settings' element={<Board />} />
|
|
<Route path='/p/subscriptions/catalog' element={<Catalog />} />
|
|
<Route path='/p/subscriptions/catalog/settings' element={<Catalog />} />
|
|
|
|
<Route path='/profile/:accountCommentIndex' element={<PendingPost />} />
|
|
<Route path='/profile/:accountCommentIndex/settings' element={<PendingPost />} />
|
|
</Route>
|
|
<Route path='*' element={<NotFound />} />
|
|
</Route>
|
|
</Routes>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|