77 lines
2.9 KiB
TypeScript
77 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 { useTranslation } from 'react-i18next';
|
|
import { useLayoutEffect, useState } from 'react';
|
|
import { useDefaultReaderSettingsWithDefaultFlag } from '@/modules/reader/services/ReaderSettingsMetadata.ts';
|
|
import { LoadingPlaceholder } from '@/modules/core/components/placeholder/LoadingPlaceholder.tsx';
|
|
import { EmptyViewAbsoluteCentered } from '@/modules/core/components/placeholder/EmptyViewAbsoluteCentered.tsx';
|
|
import { defaultPromiseErrorHandler } from '@/lib/DefaultPromiseErrorHandler.ts';
|
|
import { useNavBarContext } from '@/modules/navigation-bar/contexts/NavbarContext.tsx';
|
|
import { IReaderSettings, ReadingMode } from '@/modules/reader/types/Reader.types.ts';
|
|
import { ReaderService } from '@/modules/reader/services/ReaderService.ts';
|
|
import { ReaderSettingsTabs } from '@/modules/reader/components/settings/ReaderSettingsTabs.tsx';
|
|
import { getErrorMessage } from '@/lib/HelperFunctions.ts';
|
|
import { GLOBAL_READER_SETTINGS_MANGA } from '@/modules/manga/Manga.constants.ts';
|
|
|
|
export const GlobalReaderSettings = () => {
|
|
const { t } = useTranslation();
|
|
const { setTitle, setAction } = useNavBarContext();
|
|
|
|
useLayoutEffect(() => {
|
|
setTitle(t('reader.settings.title.reader_settings'));
|
|
setAction(null);
|
|
|
|
return () => {
|
|
setTitle('');
|
|
setAction(null);
|
|
};
|
|
}, [t]);
|
|
|
|
const [activeTab, setActiveTab] = useState(0);
|
|
|
|
const {
|
|
settings,
|
|
request: { loading, error, refetch },
|
|
} = useDefaultReaderSettingsWithDefaultFlag();
|
|
|
|
const updateSetting = <Setting extends keyof IReaderSettings>(
|
|
key: Setting,
|
|
value: IReaderSettings[Setting],
|
|
commit?: boolean,
|
|
profile?: ReadingMode,
|
|
) => {
|
|
ReaderService.updateSetting(GLOBAL_READER_SETTINGS_MANGA, key, value, commit, true, profile);
|
|
};
|
|
|
|
if (loading) {
|
|
return <LoadingPlaceholder />;
|
|
}
|
|
|
|
if (error) {
|
|
return (
|
|
<EmptyViewAbsoluteCentered
|
|
message={t('global.error.label.failed_to_load_data')}
|
|
messageExtra={getErrorMessage(error)}
|
|
retry={() => refetch().catch(defaultPromiseErrorHandler('DefaultReaderSettings::refetch'))}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ReaderSettingsTabs
|
|
activeTab={activeTab}
|
|
setActiveTab={setActiveTab}
|
|
areDefaultSettings
|
|
settings={settings}
|
|
updateSetting={(setting, value, commit, _, profile) => updateSetting(setting, value, commit, profile)}
|
|
deleteSetting={(setting) => ReaderService.deleteSetting(GLOBAL_READER_SETTINGS_MANGA, setting, true)}
|
|
/>
|
|
);
|
|
};
|