Files
rowy/src/components/TableHeader/Extensions/ExtensionList.tsx
2021-11-30 13:03:43 +11:00

157 lines
4.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { format, formatRelative } from "date-fns";
import {
Stack,
List,
ListItem,
ListItemText,
Avatar,
IconButton,
Switch,
Tooltip,
Typography,
} from "@mui/material";
import ExtensionIcon from "@src/assets/icons/Extension";
import DuplicateIcon from "@src/assets/icons/Copy";
import EditIcon from "@mui/icons-material/EditOutlined";
import DeleteIcon from "@mui/icons-material/DeleteOutlined";
import EmptyState from "@src/components/EmptyState";
import { extensionNames, IExtension } from "./utils";
import { DATE_TIME_FORMAT } from "@src/constants/dates";
export interface IExtensionListProps {
extensions: IExtension[];
handleUpdateActive: (index: number, active: boolean) => void;
handleDuplicate: (index: number) => void;
handleEdit: (index: number) => void;
handleDelete: (index: number) => void;
}
export default function ExtensionList({
extensions,
handleUpdateActive,
handleDuplicate,
handleEdit,
handleDelete,
}: IExtensionListProps) {
if (extensions.length === 0)
return (
<EmptyState
message="Add your first extension above"
description="Your extensions will appear here"
Icon={ExtensionIcon}
style={{ height: 89 * 3 - 1 }}
/>
);
return (
<List style={{ minHeight: 89 * 3 - 1 }} disablePadding>
{extensions.map((extensionObject, index) => (
<ListItem
disableGutters
dense={false}
divider={index !== extensions.length - 1}
children={
<ListItemText
primary={extensionObject.name}
secondary={extensionNames[extensionObject.type]}
primaryTypographyProps={{
style: {
minHeight: 40,
display: "flex",
alignItems: "center",
},
}}
/>
}
secondaryAction={
<Stack alignItems="flex-end">
<Stack direction="row" alignItems="center" spacing={1}>
<Tooltip
title={extensionObject.active ? "Deactivate" : "Activate"}
>
<Switch
checked={extensionObject.active}
onClick={() =>
handleUpdateActive(index, !extensionObject.active)
}
inputProps={{ "aria-label": "Activate" }}
sx={{ mr: 1 }}
/>
</Tooltip>
<Tooltip title="Duplicate">
<IconButton
aria-label="Duplicate"
onClick={() => handleDuplicate(index)}
>
<DuplicateIcon />
</IconButton>
</Tooltip>
<Tooltip title="Edit">
<IconButton
aria-label="Edit"
onClick={() => handleEdit(index)}
>
<EditIcon />
</IconButton>
</Tooltip>
<Tooltip title="Delete…">
<IconButton
aria-label="Delete…"
color="error"
onClick={() => handleDelete(index)}
sx={{ "&&": { mr: -1.5 } }}
>
<DeleteIcon />
</IconButton>
</Tooltip>
</Stack>
<Tooltip
title={
<>
Last updated
<br />
by {extensionObject.lastEditor.displayName}
<br />
at{" "}
{format(
extensionObject.lastEditor.lastUpdate,
DATE_TIME_FORMAT
)}
</>
}
>
<Stack direction="row" spacing={1} alignItems="center">
<Typography variant="body2" sx={{ color: "text.disabled" }}>
{formatRelative(
extensionObject.lastEditor.lastUpdate,
new Date()
)}
</Typography>
<Avatar
alt={`${extensionObject.lastEditor.displayName}s profile photo`}
src={extensionObject.lastEditor.photoURL}
sx={{ width: 24, height: 24, "&&": { mr: -0.5 } }}
/>
</Stack>
</Tooltip>
</Stack>
}
sx={{
flexWrap: { xs: "wrap", sm: "nowrap" },
"& .MuiListItemSecondaryAction-root": {
position: { xs: "static", sm: "absolute" },
width: { xs: "100%", sm: "auto" },
transform: { xs: "none", sm: "translateY(-50%)" },
},
pr: { xs: 0, sm: 216 / 8 },
}}
/>
))}
</List>
);
}