mirror of
https://github.com/Suwayomi/Tachidesk.git
synced 2026-01-16 16:52:34 +01:00
99 lines
3.8 KiB
TypeScript
99 lines
3.8 KiB
TypeScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
import React, { useState } from 'react';
|
|
import {
|
|
BrowserRouter as Router, Route, Switch,
|
|
} from 'react-router-dom';
|
|
import { Container } from '@material-ui/core';
|
|
import CssBaseline from '@material-ui/core/CssBaseline';
|
|
import { createMuiTheme, ThemeProvider } from '@material-ui/core/styles';
|
|
|
|
import NavBar from './components/NavBar';
|
|
import Home from './screens/Home';
|
|
import Sources from './screens/Sources';
|
|
import Extensions from './screens/Extensions';
|
|
import MangaList from './screens/MangaList';
|
|
import Manga from './screens/Manga';
|
|
import Reader from './screens/Reader';
|
|
import Search from './screens/SearchSingle';
|
|
import NavBarTitle from './context/NavbarTitle';
|
|
import DarkTheme from './context/DarkTheme';
|
|
import Library from './screens/Library';
|
|
|
|
export default function App() {
|
|
const [title, setTitle] = useState<string>('Tachidesk');
|
|
const [darkTheme, setDarkTheme] = useState<boolean>(true);
|
|
const navTitleContext = { title, setTitle };
|
|
const darkThemeContext = { darkTheme, setDarkTheme };
|
|
|
|
const theme = React.useMemo(
|
|
() => createMuiTheme({
|
|
palette: {
|
|
type: darkTheme ? 'dark' : 'light',
|
|
},
|
|
overrides: {
|
|
MuiCssBaseline: {
|
|
'@global': {
|
|
'*::-webkit-scrollbar': {
|
|
width: '10px',
|
|
background: darkTheme ? '#222' : '#e1e1e1',
|
|
|
|
},
|
|
'*::-webkit-scrollbar-thumb': {
|
|
background: darkTheme ? '#111' : '#aaa',
|
|
borderRadius: '5px',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
[darkTheme],
|
|
);
|
|
|
|
return (
|
|
<Router>
|
|
<ThemeProvider theme={theme}>
|
|
<NavBarTitle.Provider value={navTitleContext}>
|
|
<CssBaseline />
|
|
<DarkTheme.Provider value={darkThemeContext}>
|
|
<NavBar />
|
|
</DarkTheme.Provider>
|
|
<Container maxWidth={false} disableGutters>
|
|
<Switch>
|
|
<Route path="/sources/:sourceId/search/">
|
|
<Search />
|
|
</Route>
|
|
<Route path="/extensions">
|
|
<Extensions />
|
|
</Route>
|
|
<Route path="/sources/:sourceId/popular/">
|
|
<MangaList popular />
|
|
</Route>
|
|
<Route path="/sources/:sourceId/latest/">
|
|
<MangaList popular={false} />
|
|
</Route>
|
|
<Route path="/sources">
|
|
<Sources />
|
|
</Route>
|
|
<Route path="/manga/:mangaId/chapter/:chapterId">
|
|
<Reader />
|
|
</Route>
|
|
<Route path="/manga/:id">
|
|
<Manga />
|
|
</Route>
|
|
<Route path="/library">
|
|
<Library />
|
|
</Route>
|
|
<Route path="/">
|
|
<Home />
|
|
</Route>
|
|
</Switch>
|
|
</Container>
|
|
</NavBarTitle.Provider>
|
|
</ThemeProvider>
|
|
</Router>
|
|
);
|
|
}
|