Files
suwayomi-material-you-webui/src/components/library/LibraryOptionsProvider.tsx
T

32 lines
926 B
TypeScript
Raw Normal View History

2022-03-03 18:19:01 +05:30
/*
* 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/. */
2023-02-06 10:06:33 +01:00
import LibraryOptionsContext, {
DefaultLibraryOptions,
} from 'components/context/LibraryOptionsContext';
2022-11-24 09:41:03 +01:00
import React from 'react';
2022-03-03 18:19:01 +05:30
import useLocalStorage from 'util/useLocalStorage';
interface IProps {
children: React.ReactNode;
}
2022-11-24 09:41:03 +01:00
const LibraryOptionsContextProvider: React.FC<IProps> = ({ children }) => {
2023-02-06 10:06:33 +01:00
const [options, setOptions] = useLocalStorage<LibraryOptions>(
'libraryOptions',
DefaultLibraryOptions,
);
2022-04-07 12:53:14 +02:00
2022-03-03 18:19:01 +05:30
return (
2022-11-24 09:41:03 +01:00
<LibraryOptionsContext.Provider value={{ options, setOptions }}>
2022-03-03 18:19:01 +05:30
{children}
</LibraryOptionsContext.Provider>
);
2022-11-24 09:41:03 +01:00
};
export default LibraryOptionsContextProvider;