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

37 lines
1.3 KiB
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 FilterList from '@mui/icons-material/FilterList';
2023-11-05 17:22:29 +01:00
import { IconButton, Tooltip } from '@mui/material';
import React, { useState } from 'react';
2023-11-05 17:22:29 +01:00
import { useTranslation } from 'react-i18next';
import { useLibraryOptionsContext } from '@/components/context/LibraryOptionsContext';
2023-10-28 00:32:02 +02:00
import { LibraryOptionsPanel } from '@/components/library/LibraryOptionsPanel';
2023-10-28 00:32:02 +02:00
export const LibraryToolbarMenu: React.FC = () => {
2023-11-05 17:22:29 +01:00
const { t } = useTranslation();
const [open, setOpen] = useState(false);
const { options } = useLibraryOptionsContext();
const active =
options.downloaded != null ||
options.unread != null ||
Object.values(options.tracker).some((trackerFilterStatus) => trackerFilterStatus != null);
return (
<>
2023-11-05 17:22:29 +01:00
<Tooltip title={t('settings.title')}>
<IconButton onClick={() => setOpen(!open)} color={active ? 'warning' : 'default'}>
<FilterList />
</IconButton>
</Tooltip>
<LibraryOptionsPanel open={open} onClose={() => setOpen(false)} />
</>
);
};