Files
suwayomi-material-you-webui/src/features/category/components/CategorySettingsCard.tsx

61 lines
2.2 KiB
TypeScript
Raw Normal View History

2024-10-05 21:39:58 +02: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 from '@mui/material/IconButton';
import DragHandleIcon from '@mui/icons-material/DragHandle';
import EditIcon from '@mui/icons-material/Edit';
import DeleteIcon from '@mui/icons-material/Delete';
import Box from '@mui/material/Box';
import Card from '@mui/material/Card';
import Stack from '@mui/material/Stack';
import Typography from '@mui/material/Typography';
import { useLingui } from '@lingui/react/macro';
import { CustomTooltip } from '@/base/components/CustomTooltip.tsx';
import { requestManager } from '@/lib/requests/RequestManager.ts';
import { ListCardContent } from '@/base/components/lists/cards/ListCardContent.tsx';
2026-05-15 20:40:31 +02:00
import type { CategoryIdInfo, CategoryNameInfo } from '@/features/category/Category.types.ts';
2024-10-05 21:39:58 +02:00
export const CategorySettingsCard = ({
category,
onEdit,
}: {
2026-05-15 20:40:31 +02:00
category: CategoryIdInfo & CategoryNameInfo;
2024-10-05 21:39:58 +02:00
onEdit: () => void;
}) => {
const { t } = useLingui();
2024-10-05 21:39:58 +02:00
const deleteCategory = () => {
requestManager.deleteCategory(category.id);
};
return (
<Box sx={{ p: 1, pb: 0 }}>
2024-10-05 21:39:58 +02:00
<Card>
<ListCardContent sx={{ gap: 2 }}>
2024-10-05 21:39:58 +02:00
<DragHandleIcon />
<Typography sx={{ flexGrow: 1 }} variant="h6" component="h2">
{category.name}
</Typography>
<Stack sx={{ flexDirection: 'row' }}>
<CustomTooltip title={t`Edit`}>
<IconButton component={Box} onClick={onEdit}>
2024-10-05 21:39:58 +02:00
<EditIcon />
</IconButton>
</CustomTooltip>
<CustomTooltip title={t`Delete`}>
<IconButton component={Box} onClick={deleteCategory}>
2024-10-05 21:39:58 +02:00
<DeleteIcon />
</IconButton>
</CustomTooltip>
2024-10-05 21:39:58 +02:00
</Stack>
</ListCardContent>
2024-10-05 21:39:58 +02:00
</Card>
</Box>
);
};