Files
suwayomi-material-you-webui/src/components/context/LibraryOptionsContext.tsx

46 lines
1.1 KiB
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/. */
import React, { useContext } from 'react';
import { LibraryOptions } from 'typings';
2022-03-03 18:19:01 +05:30
type ContextType = {
options: LibraryOptions;
setOptions: React.Dispatch<React.SetStateAction<LibraryOptions>>;
};
export enum GridLayout {
Compact = 0,
Comfortable = 1,
List = 2,
}
export const DefaultLibraryOptions: LibraryOptions = {
showDownloadBadge: false,
showUnreadBadge: false,
gridLayout: GridLayout.Compact,
SourcegridLayout: GridLayout.Compact,
downloaded: undefined,
sortDesc: undefined,
sorts: undefined,
unread: undefined,
showTabSize: false,
2022-03-03 18:19:01 +05:30
};
const LibraryOptionsContext = React.createContext<ContextType>({
options: DefaultLibraryOptions,
2022-03-03 18:19:01 +05:30
setOptions: () => {},
});
export default LibraryOptionsContext;
export function useLibraryOptionsContext() {
return useContext(LibraryOptionsContext);
}