* Add "migration" tab to "Browse" screen * Add missing useEffect cleanup for navbar title and actions * Make "SourceGridLayout" reusable * Add migration tab to "Browse" * Add migration logic
83 lines
2.9 KiB
TypeScript
83 lines
2.9 KiB
TypeScript
/*
|
|
* 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 { useContext, useEffect } from 'react';
|
|
import { Box } from '@mui/material';
|
|
import CircularProgress from '@mui/material/CircularProgress';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { AllowedMetadataValueTypes, IReaderSettings } from '@/typings';
|
|
import { convertToGqlMeta, requestUpdateServerMetadata } from '@/util/metadata';
|
|
import {
|
|
checkAndHandleMissingStoredReaderSettings,
|
|
getDefaultSettings,
|
|
useDefaultReaderSettings,
|
|
} from '@/util/readerSettings';
|
|
import { ReaderSettingsOptions } from '@/components/reader/ReaderSettingsOptions';
|
|
import { makeToast } from '@/components/util/Toast';
|
|
import { NavBarContext, useSetDefaultBackTo } from '@/components/context/NavbarContext';
|
|
import { defaultPromiseErrorHandler } from '@/util/defaultPromiseErrorHandler.ts';
|
|
|
|
export function DefaultReaderSettings() {
|
|
const { t } = useTranslation();
|
|
const { setTitle, setAction } = useContext(NavBarContext);
|
|
useEffect(() => {
|
|
setTitle(t('reader.settings.title.default_reader_settings'));
|
|
setAction(null);
|
|
|
|
return () => {
|
|
setTitle('');
|
|
setAction(null);
|
|
};
|
|
}, [t]);
|
|
|
|
const { metadata, settings, loading } = useDefaultReaderSettings();
|
|
|
|
useSetDefaultBackTo('settings');
|
|
|
|
const setSettingValue = (key: keyof IReaderSettings, value: AllowedMetadataValueTypes) => {
|
|
requestUpdateServerMetadata(convertToGqlMeta(metadata)! ?? {}, [[key, value]]).catch(() =>
|
|
makeToast(t('reader.settings.error.label.failed_to_save_settings'), 'warning'),
|
|
);
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<Box
|
|
sx={{
|
|
height: '100vh',
|
|
width: '100vw',
|
|
display: 'grid',
|
|
placeItems: 'center',
|
|
}}
|
|
>
|
|
<CircularProgress thickness={5} />
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
checkAndHandleMissingStoredReaderSettings(
|
|
{ meta: convertToGqlMeta(metadata)! },
|
|
'server',
|
|
getDefaultSettings(),
|
|
).catch(defaultPromiseErrorHandler('DefaultReaderSettings::checkAndHandleMissingStoredReaderSettings'));
|
|
|
|
return (
|
|
<ReaderSettingsOptions
|
|
setSettingValue={setSettingValue}
|
|
staticNav={settings.staticNav}
|
|
showPageNumber={settings.showPageNumber}
|
|
loadNextOnEnding={settings.loadNextOnEnding}
|
|
skipDupChapters={settings.skipDupChapters}
|
|
fitPageToWindow={settings.fitPageToWindow}
|
|
readerType={settings.readerType}
|
|
offsetFirstPage={settings.offsetFirstPage}
|
|
readerWidth={settings.readerWidth}
|
|
/>
|
|
);
|
|
}
|