41 lines
1.3 KiB
TypeScript
41 lines
1.3 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 FilterList from '@mui/icons-material/FilterList';
|
||
|
|
import { Badge, IconButton } from '@mui/material';
|
||
|
|
import * as React from 'react';
|
||
|
|
import ChapterOptions from './ChapterOptions';
|
||
|
|
import { isFilterActive } from './util';
|
||
|
|
|
||
|
|
interface IProps {
|
||
|
|
options: ChapterListOptions
|
||
|
|
optionsDispatch: React.Dispatch<ChapterOptionsReducerAction>
|
||
|
|
}
|
||
|
|
|
||
|
|
const ChaptersToolbarMenu = ({ options, optionsDispatch }: IProps) => {
|
||
|
|
const [open, setOpen] = React.useState(false);
|
||
|
|
const isFiltered = isFilterActive(options);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<IconButton onClick={() => setOpen(true)}>
|
||
|
|
<Badge color="primary" variant="dot" invisible={!isFiltered}>
|
||
|
|
<FilterList />
|
||
|
|
</Badge>
|
||
|
|
</IconButton>
|
||
|
|
<ChapterOptions
|
||
|
|
open={open}
|
||
|
|
onClose={() => setOpen(false)}
|
||
|
|
options={options}
|
||
|
|
optionsDispatch={optionsDispatch}
|
||
|
|
/>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default ChaptersToolbarMenu;
|