mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
117 lines
4.0 KiB
JavaScript
117 lines
4.0 KiB
JavaScript
import useMediaQuery from '@material-ui/core/useMediaQuery'
|
|
import { createMuiTheme, MuiThemeProvider } from '@material-ui/core'
|
|
import CssBaseline from '@material-ui/core/CssBaseline'
|
|
import { useEffect, useMemo, useState } from 'react'
|
|
import Typography from '@material-ui/core/Typography'
|
|
import IconButton from '@material-ui/core/IconButton'
|
|
import { Menu as MenuIcon, Close as CloseIcon } from '@material-ui/icons'
|
|
import { echoHost } from 'utils/Hosts'
|
|
import Div100vh from 'react-div-100vh'
|
|
import axios from 'axios'
|
|
import TorrentList from 'components/TorrentList'
|
|
import DonateSnackbar from 'components/Donate'
|
|
import DonateDialog from 'components/Donate/DonateDialog'
|
|
import useChangeLanguage from 'utils/useChangeLanguage'
|
|
import { ThemeProvider } from '@material-ui/core/styles'
|
|
import { useQuery } from 'react-query'
|
|
import { getTorrents } from 'utils/Utils'
|
|
|
|
import { AppWrapper, AppHeader, LanguageSwitch } from './style'
|
|
import Sidebar from './Sidebar'
|
|
|
|
// https://material-ui.com/ru/customization/default-theme/
|
|
export const darkTheme = createMuiTheme({
|
|
palette: {
|
|
type: 'dark',
|
|
primary: { main: '#00a572' },
|
|
background: { paper: '#575757' },
|
|
},
|
|
typography: { fontFamily: 'Open Sans, sans-serif' },
|
|
})
|
|
export const lightTheme = createMuiTheme({
|
|
palette: {
|
|
type: 'light',
|
|
primary: { main: '#00a572' },
|
|
background: { paper: '#f1f1f1' },
|
|
},
|
|
typography: { fontFamily: 'Open Sans, sans-serif' },
|
|
})
|
|
|
|
export default function App() {
|
|
const prefersDarkMode = useMediaQuery('(prefers-color-scheme: dark)')
|
|
const [isDrawerOpen, setIsDrawerOpen] = useState(false)
|
|
const [isDonationDialogOpen, setIsDonationDialogOpen] = useState(false)
|
|
const [torrServerVersion, setTorrServerVersion] = useState('')
|
|
// https://material-ui.com/ru/customization/palette/
|
|
const baseTheme = useMemo(
|
|
() =>
|
|
createMuiTheme({
|
|
palette: {
|
|
type: prefersDarkMode ? 'dark' : 'light',
|
|
primary: { main: '#00a572' },
|
|
secondary: { main: '#ffa724' },
|
|
tonalOffset: 0.2,
|
|
},
|
|
typography: { fontFamily: 'Open Sans, sans-serif' },
|
|
}),
|
|
[prefersDarkMode],
|
|
)
|
|
const [currentLang, changeLang] = useChangeLanguage()
|
|
const [isOffline, setIsOffline] = useState(false)
|
|
const { data: torrents, isLoading } = useQuery('torrents', getTorrents, {
|
|
retry: 1,
|
|
refetchInterval: 1000,
|
|
onError: () => setIsOffline(true),
|
|
onSuccess: () => setIsOffline(false),
|
|
})
|
|
|
|
useEffect(() => {
|
|
axios.get(echoHost()).then(({ data }) => setTorrServerVersion(data))
|
|
}, [])
|
|
|
|
return (
|
|
<MuiThemeProvider theme={baseTheme}>
|
|
<CssBaseline />
|
|
|
|
{/* Div100vh - iOS WebKit fix */}
|
|
<Div100vh>
|
|
<AppWrapper>
|
|
<AppHeader>
|
|
<IconButton
|
|
style={{ marginRight: '20px' }}
|
|
color='inherit'
|
|
onClick={() => setIsDrawerOpen(!isDrawerOpen)}
|
|
edge='start'
|
|
>
|
|
{isDrawerOpen ? <CloseIcon /> : <MenuIcon />}
|
|
</IconButton>
|
|
|
|
<Typography variant='h6' noWrap>
|
|
TorrServer {torrServerVersion}
|
|
</Typography>
|
|
|
|
<div style={{ justifySelf: 'end' }}>
|
|
<LanguageSwitch onClick={() => (currentLang === 'en' ? changeLang('ru') : changeLang('en'))}>
|
|
{currentLang === 'en' ? 'RU' : 'EN'}
|
|
</LanguageSwitch>
|
|
</div>
|
|
</AppHeader>
|
|
<ThemeProvider theme={darkTheme}>
|
|
<Sidebar
|
|
isOffline={isOffline}
|
|
isLoading={isLoading}
|
|
isDrawerOpen={isDrawerOpen}
|
|
setIsDonationDialogOpen={setIsDonationDialogOpen}
|
|
/>
|
|
</ThemeProvider>
|
|
<TorrentList isOffline={isOffline} torrents={torrents} isLoading={isLoading} />
|
|
<ThemeProvider theme={lightTheme}>
|
|
{isDonationDialogOpen && <DonateDialog onClose={() => setIsDonationDialogOpen(false)} />}
|
|
</ThemeProvider>
|
|
{!JSON.parse(localStorage.getItem('snackbarIsClosed')) && <DonateSnackbar />}
|
|
</AppWrapper>
|
|
</Div100vh>
|
|
</MuiThemeProvider>
|
|
)
|
|
}
|