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

123 lines
3.3 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
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";
2019-08-09 10:26:22 +00:00
import React from "react";
import { FormattedMessage, useIntl } from "react-intl";
2019-06-19 14:40:52 +00:00
const styles = (theme: Theme) =>
createStyles({
avatar: {
"& span": {
height: "100%",
width: "100%"
},
alignSelf: "flex-start",
2019-09-04 12:38:58 +00:00
marginRight: theme.spacing.unit * 3.5
2019-06-19 14:40:52 +00:00
},
cardActionsExpanded: {
maxHeight: theme.spacing.unit * 6
},
input: {
2019-09-04 12:38:58 +00:00
"& > div": {
padding: "0 14px"
},
"& textarea": {
"&::placeholder": {
opacity: [[1], "!important"] as any
}
},
background: theme.palette.common.white
2019-06-19 14:40:52 +00:00
},
noteRoot: {
left: -theme.spacing.unit * 8.5 - 1,
marginBottom: theme.spacing.unit * 3,
position: "relative",
width: `calc(100% + ${theme.spacing.unit * 8.5}px)`
},
noteTitle: {
"&:last-child": {
2019-09-04 12:38:58 +00:00
paddingBottom: 0,
paddingRight: 0
2019-06-19 14:40:52 +00:00
},
alignItems: "center",
background: theme.palette.background.default,
2019-09-02 08:44:26 +00:00
display: "flex",
paddingLeft: theme.spacing.unit * 3
2019-06-19 14:40:52 +00:00
},
root: {
borderColor: theme.overrides.MuiCard.root.borderColor,
borderStyle: "solid",
borderWidth: "0 0 0 2px",
marginLeft: 20,
paddingLeft: theme.spacing.unit * 3
}
});
interface TimelineProps extends WithStyles<typeof styles> {
children?: React.ReactNode;
}
interface TimelineAddNoteProps extends WithStyles<typeof styles> {
message: string;
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 }: TimelineAddNoteProps) => {
const intl = useIntl();
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 color="primary" onClick={onSubmit}>
<FormattedMessage
defaultMessage="Send"
description="add order note, button"
/>
</Button>
)
}}
2019-09-04 12:38:58 +00:00
variant="outlined"
/>
</CardContent>
</div>
);
}
2019-06-19 14:40:52 +00:00
);
Timeline.displayName = "Timeline";
export default Timeline;