-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add extension settings screen (#557)
- Loading branch information
Showing
6 changed files
with
129 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -255,7 +255,8 @@ | |
"title": "Extension repositories" | ||
} | ||
} | ||
} | ||
}, | ||
"title": "Extension Settings" | ||
}, | ||
"state": { | ||
"label": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
/* | ||
* Copyright (C) Contributors to the Suwayomi project | ||
* | ||
* 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 { Trans, useTranslation } from 'react-i18next'; | ||
import { useContext, useEffect } from 'react'; | ||
import List from '@mui/material/List'; | ||
import ListItem from '@mui/material/ListItem'; | ||
import ListItemText from '@mui/material/ListItemText'; | ||
import Switch from '@mui/material/Switch'; | ||
import { NavBarContext, useSetDefaultBackTo } from '@/components/context/NavbarContext.tsx'; | ||
import { requestManager } from '@/lib/requests/RequestManager.ts'; | ||
import { NumberSetting } from '@/components/settings/NumberSetting.tsx'; | ||
import { MutableListSetting } from '@/components/settings/MutableListSetting.tsx'; | ||
import { ServerSettings as GqlServerSettings } from '@/typings.ts'; | ||
import { TextSetting } from '@/components/settings/text/TextSetting.tsx'; | ||
import { useLocalStorage } from '@/util/useLocalStorage.tsx'; | ||
|
||
type ExtensionsSettings = Pick<GqlServerSettings, 'maxSourcesInParallel' | 'localSourcePath' | 'extensionRepos'>; | ||
|
||
const extractExtensionSettings = (settings: GqlServerSettings): ExtensionsSettings => ({ | ||
maxSourcesInParallel: settings.maxSourcesInParallel, | ||
localSourcePath: settings.localSourcePath, | ||
extensionRepos: settings.extensionRepos, | ||
}); | ||
|
||
export const ExtensionSettings = () => { | ||
const { t } = useTranslation(); | ||
const { setTitle, setAction } = useContext(NavBarContext); | ||
|
||
useSetDefaultBackTo('settings'); | ||
|
||
useEffect(() => { | ||
setTitle(t('extension.settings.title')); | ||
setAction(null); | ||
}, [t]); | ||
|
||
const [showNsfw, setShowNsfw] = useLocalStorage<boolean>('showNsfw', true); | ||
|
||
const { data } = requestManager.useGetServerSettings(); | ||
const serverSettings = data ? extractExtensionSettings(data.settings) : undefined; | ||
const [mutateSettings] = requestManager.useUpdateServerSettings(); | ||
|
||
const updateSetting = <Setting extends keyof ExtensionsSettings>( | ||
setting: Setting, | ||
value: ExtensionsSettings[Setting], | ||
) => { | ||
mutateSettings({ variables: { input: { settings: { [setting]: value } } } }); | ||
}; | ||
|
||
return ( | ||
<List> | ||
<ListItem> | ||
<ListItemText | ||
primary={t('settings.label.show_nsfw')} | ||
secondary={t('settings.label.show_nsfw_description')} | ||
/> | ||
<Switch edge="end" checked={showNsfw} onChange={() => setShowNsfw(!showNsfw)} /> | ||
</ListItem> | ||
<NumberSetting | ||
settingTitle={t('settings.server.requests.sources.parallel.label.title')} | ||
settingValue={t('settings.server.requests.sources.parallel.label.value', { | ||
value: serverSettings?.maxSourcesInParallel, | ||
count: serverSettings?.maxSourcesInParallel, | ||
})} | ||
valueUnit={t('source.title')} | ||
value={serverSettings?.maxSourcesInParallel ?? 6} | ||
defaultValue={6} | ||
minValue={1} | ||
maxValue={20} | ||
showSlider | ||
stepSize={1} | ||
dialogTitle={t('settings.server.requests.sources.parallel.label.title')} | ||
handleUpdate={(parallelSources) => updateSetting('maxSourcesInParallel', parallelSources)} | ||
/> | ||
<MutableListSetting | ||
settingName={t('extension.settings.repositories.custom.label.title')} | ||
description={t('extension.settings.repositories.custom.label.description')} | ||
dialogDisclaimer={ | ||
<Trans i18nKey="extension.settings.repositories.custom.label.disclaimer"> | ||
<strong>Suwayomi does not provide any support for 3rd party repositories or extensions!</strong> | ||
<br /> | ||
Use with caution as there could be malicious actors making those repositories. | ||
<br /> | ||
You as the user need to verify the security and that you trust any repository or extension. | ||
</Trans> | ||
} | ||
handleChange={(repos) => { | ||
updateSetting('extensionRepos', repos); | ||
requestManager.clearExtensionCache(); | ||
}} | ||
values={serverSettings?.extensionRepos} | ||
addItemButtonTitle={t('extension.settings.repositories.custom.dialog.action.button.add')} | ||
placeholder="https://github.com/MY_ACCOUNT/MY_REPO/tree/repo" | ||
validateItem={(repo) => | ||
!!repo.match( | ||
/https:\/\/(www\.|raw\.)?(github|githubusercontent)\.com\/([^/]+)\/([^/]+)((\/tree|\/blob)?\/([^/\n]*))?(\/([^/\n]*\.json)?)?/g, | ||
) | ||
} | ||
invalidItemError={t('extension.settings.repositories.custom.error.label.invalid_url')} | ||
/> | ||
<TextSetting | ||
settingName={t('settings.server.local_source.path.label.title')} | ||
dialogDescription={t('settings.server.local_source.path.label.description')} | ||
value={serverSettings?.localSourcePath} | ||
handleChange={(path) => updateSetting('localSourcePath', path)} | ||
/> | ||
</List> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters