saleor-dashboard/src/components/EditableTableCell/EditableTableCell.tsx

117 lines
3 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import Card from "@material-ui/core/Card";
import CardContent from "@material-ui/core/CardContent";
import {
createStyles,
Theme,
withStyles,
WithStyles
} from "@material-ui/core/styles";
import TableCell from "@material-ui/core/TableCell";
import TextField, { TextFieldProps } from "@material-ui/core/TextField";
import Typography from "@material-ui/core/Typography";
import * as classNames from "classnames";
import * as React from "react";
import Form from "@saleor/components/Form";
const styles = (theme: Theme) =>
createStyles({
card: {
border: `1px solid ${theme.overrides.MuiCard.root.borderColor}`
},
container: {
position: "relative"
},
overlay: {
cursor: "pointer",
height: "100vh",
left: 0,
position: "fixed",
top: 0,
width: "100vw",
zIndex: 1
},
root: {
left: 0,
minWidth: theme.spacing.unit * 20,
position: "absolute",
top: 0,
width: `calc(100% + ${4 * theme.spacing.unit}px)`,
zIndex: 2
},
text: {
cursor: "pointer",
fontSize: "0.8125rem"
}
});
interface EditableTableCellProps extends WithStyles<typeof styles> {
className?: string;
defaultValue?: string;
focused?: boolean;
InputProps?: TextFieldProps;
value: string;
onConfirm(value: string): any;
}
export const EditableTableCell = withStyles(styles, {
name: "EditableTableCell"
})(
({
classes,
className,
defaultValue,
focused,
InputProps,
value,
onConfirm
}: EditableTableCellProps) => {
const [opened, setOpenStatus] = React.useState(focused);
const enable = () => setOpenStatus(true);
const disable = () => setOpenStatus(false);
const handleConfirm = (data: { value: string }) => {
disable();
onConfirm(data.value);
};
return (
<TableCell className={classNames(classes.container, className)}>
{opened && <div className={classes.overlay} onClick={disable} />}
<Form initial={{ value }} onSubmit={handleConfirm} useForm={false}>
{({ change, data }) => (
<>
<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>
)}
</>
)}
</Form>
</TableCell>
);
}
);
EditableTableCell.displayName = "EditableTableCell";
export default EditableTableCell;