saleor-dashboard/src/components/EditableTableCell/EditableTableCell.tsx
Michał Droń 8d16513eab
Enable method signature style ESLint rule (#3849)
* Remove redundant rules handled by prettier

* Turn on method-signature-style

* Auto-lint files according to method-signature-style rule

* Add changeset
2023-07-05 11:19:58 +02:00

106 lines
2.5 KiB
TypeScript

import useForm from "@dashboard/hooks/useForm";
import {
Card,
CardContent,
TableCell,
TextField,
Typography,
} from "@material-ui/core";
import { TextFieldProps } from "@material-ui/core/TextField";
import { makeStyles } from "@saleor/macaw-ui";
import clsx from "clsx";
import React from "react";
const useStyles = makeStyles(
theme => ({
card: {
border: `1px solid ${theme.palette.divider}`,
},
container: {
position: "relative",
},
overlay: {
cursor: "pointer",
height: "100vh",
left: 0,
position: "fixed",
top: 0,
width: "100vw",
zIndex: 1,
},
root: {
left: 0,
minWidth: theme.spacing(20),
position: "absolute",
top: 0,
width: `calc(100% + ${theme.spacing(4)}px)`,
zIndex: 2,
},
text: {
cursor: "pointer",
fontSize: "0.8125rem",
},
}),
{ name: "EditableTableCell" },
);
interface EditableTableCellProps {
className?: string;
defaultValue?: string;
focused?: boolean;
InputProps?: TextFieldProps;
value: string;
onConfirm: (value: string) => any;
}
export const EditableTableCell: React.FC<EditableTableCellProps> = props => {
const {
className,
defaultValue,
focused,
InputProps,
value,
// onConfirm
} = props;
const classes = useStyles(props);
// const handleConfirm = (data: { value: string }) => {
// disable();
// onConfirm(data.value);
// };
const [opened, setOpenStatus] = React.useState(focused);
const { change, data } = useForm(
{ value } /* commenting out temporarily handleConfirm */,
);
const enable = () => setOpenStatus(true);
const disable = () => setOpenStatus(false);
return (
<TableCell className={clsx(classes.container, className)}>
{opened && <div className={classes.overlay} onClick={disable} />}
<Typography variant="caption" onClick={enable} className={classes.text}>
{value || defaultValue}
</Typography>
{opened && (
<div className={classes.root}>
<Card className={classes.card}>
<CardContent>
<TextField
name="value"
autoFocus
fullWidth
onChange={change}
value={data.value}
variant="standard"
{...InputProps}
/>
</CardContent>
</Card>
</div>
)}
</TableCell>
);
};
EditableTableCell.displayName = "EditableTableCell";
export default EditableTableCell;