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/. */
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
2022-04-07 12:53:14 +02:00
|
|
|
import LibraryOptionsContext, { DefaultLibraryOptions } from 'components/context/LibraryOptionsContext';
|
2022-03-03 18:19:01 +05:30
|
|
|
import useLocalStorage from 'util/useLocalStorage';
|
|
|
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function LibraryOptionsContextProvider({ children }: IProps) {
|
2022-04-07 12:53:14 +02:00
|
|
|
const [options, setOptions] = useLocalStorage<LibraryOptions>('libraryOptions', DefaultLibraryOptions);
|
|
|
|
|
|
|
|
|
|
function setOption<Name extends keyof LibraryOptions>(
|
|
|
|
|
option: Name,
|
|
|
|
|
value: React.SetStateAction<LibraryOptions[Name]>,
|
|
|
|
|
) {
|
|
|
|
|
setOptions((opts) => ({
|
|
|
|
|
...opts,
|
|
|
|
|
[option]: typeof value === 'function' ? value(opts[option]) : value,
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO remove these fields when we have a better way to handle them
|
|
|
|
|
// eslint-disable-next-line eqeqeq
|
|
|
|
|
const active = !(options.unread == undefined) || !(options.downloaded == undefined);
|
|
|
|
|
// eslint-disable-next-line eqeqeq
|
|
|
|
|
const activeSort = (options.sortDesc != undefined) || (options.sorts != undefined);
|
2022-03-03 18:19:01 +05:30
|
|
|
|
|
|
|
|
return (
|
2022-04-07 12:53:14 +02:00
|
|
|
<LibraryOptionsContext.Provider
|
|
|
|
|
value={{
|
|
|
|
|
options,
|
|
|
|
|
setOption,
|
|
|
|
|
setOptions,
|
|
|
|
|
active,
|
|
|
|
|
activeSort,
|
|
|
|
|
}}
|
|
|
|
|
>
|
2022-03-03 18:19:01 +05:30
|
|
|
{children}
|
|
|
|
|
</LibraryOptionsContext.Provider>
|
|
|
|
|
);
|
|
|
|
|
}
|