Files
suwayomi-material-you-webui/src/components/source/GridLayouts.tsx

98 lines
3.7 KiB
TypeScript
Raw Normal View History

2022-03-06 21:02:06 +00:00
/*
* 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 { IconButton, Menu, MenuItem, FormControlLabel, Radio } from '@mui/material';
2022-03-06 21:02:06 +00:00
import React from 'react';
import ViewModuleIcon from '@mui/icons-material/ViewModule';
import { GridLayout, useLibraryOptionsContext } from 'components/context/LibraryOptionsContext';
import { useTranslation } from 'react-i18next';
2022-03-06 21:02:06 +00:00
// TODO: clean up this to use a FormControl, and remove dependency on name o radio button
2022-03-06 21:02:06 +00:00
export default function SourceGridLayout() {
const { t } = useTranslation();
const {
options: { SourcegridLayout },
setOptions,
} = useLibraryOptionsContext();
2022-03-06 21:02:06 +00:00
const [anchorEl, setAnchorEl] = React.useState(null);
const open = Boolean(anchorEl);
const handleClick = (event: any) => {
setAnchorEl(event.currentTarget);
};
const handleClose = () => {
setAnchorEl(null);
};
function setGridContextOptions(e: React.ChangeEvent<HTMLInputElement>, checked: boolean) {
2022-03-06 21:02:06 +00:00
if (checked) {
setOptions((prev: any) => ({ ...prev, SourcegridLayout: parseInt(e.target.name, 10) }));
}
}
return (
<>
<IconButton
onClick={handleClick}
size="small"
sx={{ ml: 2 }}
aria-controls={open ? 'account-menu' : undefined}
aria-haspopup="true"
aria-expanded={open ? 'true' : undefined}
>
<ViewModuleIcon />
</IconButton>
<Menu
id="basic-menu"
anchorEl={anchorEl}
open={open}
onClose={handleClose}
MenuListProps={{ 'aria-labelledby': 'basic-button' }}
>
<MenuItem onClick={handleClose}>
<FormControlLabel
label={t('global.grid_layout.label.compact_grid')}
value={GridLayout.Compact}
control={
2022-03-06 21:02:06 +00:00
<Radio
name={GridLayout.Compact.toString()}
checked={SourcegridLayout === GridLayout.Compact || SourcegridLayout === undefined}
2022-03-06 21:02:06 +00:00
onChange={setGridContextOptions}
/>
}
2022-03-06 21:02:06 +00:00
/>
</MenuItem>
<MenuItem onClick={handleClose}>
<FormControlLabel
label={t('global.grid_layout.label.comfortable_grid')}
control={
2022-03-06 21:02:06 +00:00
<Radio
name={GridLayout.Comfortable.toString()}
checked={SourcegridLayout === GridLayout.Comfortable}
2022-03-06 21:02:06 +00:00
onChange={setGridContextOptions}
/>
}
2022-03-06 21:02:06 +00:00
/>
</MenuItem>
<MenuItem onClick={handleClose}>
<FormControlLabel
label={t('global.grid_layout.label.list')}
control={
<Radio
name={GridLayout.List.toString()}
checked={SourcegridLayout === GridLayout.List}
onChange={setGridContextOptions}
/>
}
/>
2022-03-06 21:02:06 +00:00
</MenuItem>
</Menu>
</>
);
}