Files
suwayomi-material-you-webui/src/screens/settings/LibrarySettings.tsx

33 lines
1015 B
TypeScript
Raw Normal View History

/*
* 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 { useContext, useEffect } from 'react';
2023-10-28 00:32:02 +02:00
import { NavBarContext, useSetDefaultBackTo } from '@/components/context/NavbarContext.tsx';
import { GlobalUpdateSettings } from '@/components/globalUpdate/GlobalUpdateSettings.tsx';
2023-10-28 00:32:02 +02:00
import { SearchSettings } from '@/screens/settings/SearchSettings.tsx';
2023-10-28 00:32:02 +02:00
export function LibrarySettings() {
const { t } = useTranslation();
2023-10-28 00:32:02 +02:00
const { setTitle, setAction } = useContext(NavBarContext);
useEffect(() => {
setTitle(t('library.settings.title'));
setAction(null);
}, [t]);
useSetDefaultBackTo('settings');
return (
<>
<SearchSettings />
<GlobalUpdateSettings />
</>
);
}