mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
64 lines
2.0 KiB
JavaScript
64 lines
2.0 KiB
JavaScript
import { playlistAllHost } from 'utils/Hosts'
|
|
import Divider from '@material-ui/core/Divider'
|
|
import ListItem from '@material-ui/core/ListItem'
|
|
import ListItemIcon from '@material-ui/core/ListItemIcon'
|
|
import ListItemText from '@material-ui/core/ListItemText'
|
|
import AddDialogButton from 'components/Add'
|
|
import RemoveAll from 'components/RemoveAll'
|
|
import SettingsDialog from 'components/Settings'
|
|
import AboutDialog from 'components/About'
|
|
import { CreditCard as CreditCardIcon, List as ListIcon, Language as LanguageIcon } from '@material-ui/icons'
|
|
import List from '@material-ui/core/List'
|
|
import CloseServer from 'components/CloseServer'
|
|
import { useTranslation } from 'react-i18next'
|
|
import useChangeLanguage from 'utils/useChangeLanguage'
|
|
|
|
import { AppSidebarStyle } from './style'
|
|
|
|
export default function Sidebar({ isDrawerOpen, setIsDonationDialogOpen }) {
|
|
const [currentLang, changeLang] = useChangeLanguage()
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<AppSidebarStyle isDrawerOpen={isDrawerOpen}>
|
|
<List>
|
|
<AddDialogButton />
|
|
<RemoveAll />
|
|
<ListItem button component='a' target='_blank' href={playlistAllHost()}>
|
|
<ListItemIcon>
|
|
<ListIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary={t('PlaylistAll')} />
|
|
</ListItem>
|
|
</List>
|
|
|
|
<Divider />
|
|
|
|
<List>
|
|
<SettingsDialog />
|
|
|
|
<ListItem button onClick={() => (currentLang === 'en' ? changeLang('ru') : changeLang('en'))}>
|
|
<ListItemIcon>
|
|
<LanguageIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary={t('ChooseLanguage')} />
|
|
</ListItem>
|
|
|
|
<AboutDialog />
|
|
<CloseServer />
|
|
</List>
|
|
|
|
<Divider />
|
|
|
|
<List>
|
|
<ListItem button onClick={() => setIsDonationDialogOpen(true)}>
|
|
<ListItemIcon>
|
|
<CreditCardIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary={t('Donate')} />
|
|
</ListItem>
|
|
</List>
|
|
</AppSidebarStyle>
|
|
)
|
|
}
|