saleor-dashboard/src/components/Timeline/Timeline.tsx
2019-11-07 14:22:40 +01:00

139 lines
3.6 KiB
TypeScript

import Avatar from "@material-ui/core/Avatar";
import Button from "@material-ui/core/Button";
import CardContent from "@material-ui/core/CardContent";
import deepPurple from "@material-ui/core/colors/deepPurple";
import {
createStyles,
Theme,
withStyles,
WithStyles
} from "@material-ui/core/styles";
import TextField from "@material-ui/core/TextField";
import PersonIcon from "@material-ui/icons/Person";
import React from "react";
import { FormattedMessage, useIntl } from "react-intl";
const styles = theme =>
createStyles({
avatar: {
"& span": {
height: "100%",
width: "100%"
},
alignSelf: "flex-start",
marginRight: theme.spacing(3.5)
},
button: {
zIndex: 2
},
cardActionsExpanded: {
maxHeight: theme.spacing(6)
},
input: {
"& > div": {
padding: "0 14px"
},
"& fieldset": {
background: theme.palette.background.paper
},
"& textarea": {
"&::placeholder": {
opacity: [[1], "!important"] as any
},
zIndex: 2
},
background: theme.palette.background.paper
},
noteRoot: {
left: -theme.spacing(8.5) - 1,
marginBottom: theme.spacing(3),
position: "relative",
width: `calc(100% + ${theme.spacing(8.5)}px)`
},
noteTitle: {
"&:last-child": {
paddingBottom: 0,
paddingRight: 0
},
alignItems: "center",
background: theme.palette.background.default,
display: "flex",
paddingLeft: theme.spacing(3)
},
root: {
borderColor: theme.overrides.MuiCard.root.borderColor,
borderStyle: "solid",
borderWidth: "0 0 0 2px",
marginLeft: 20,
paddingLeft: theme.spacing(3)
}
});
interface TimelineProps extends WithStyles<typeof styles> {
children?: React.ReactNode;
}
interface TimelineAddNoteProps extends WithStyles<typeof styles> {
message: string;
reset: () => void;
onChange(event: React.ChangeEvent<any>);
onSubmit(event: React.FormEvent<any>);
}
export const Timeline = withStyles(styles, { name: "Timeline" })(
({ classes, children }: TimelineProps) => (
<div className={classes.root}>{children}</div>
)
);
export const TimelineAddNote = withStyles(styles, { name: "TimelineAddNote" })(
({ classes, message, onChange, onSubmit, reset }: TimelineAddNoteProps) => {
const intl = useIntl();
const submit = e => {
reset();
onSubmit(e);
};
return (
<div className={classes.noteRoot}>
<CardContent className={classes.noteTitle}>
<Avatar
style={{ background: deepPurple[500] }}
className={classes.avatar}
>
<PersonIcon />
</Avatar>
<TextField
className={classes.input}
placeholder={intl.formatMessage({
defaultMessage: "Leave your note here..."
})}
onChange={onChange}
value={message}
name="message"
fullWidth
multiline
InputProps={{
endAdornment: (
<Button
className={classes.button}
color="primary"
onClick={e => submit(e)}
>
<FormattedMessage
defaultMessage="Send"
description="add order note, button"
/>
</Button>
)
}}
variant="outlined"
/>
</CardContent>
</div>
);
}
);
Timeline.displayName = "Timeline";
export default Timeline;