saleor-dashboard/src/components/messages/MessageManager.tsx

150 lines
4.6 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import Button from "@material-ui/core/Button";
import IconButton from "@material-ui/core/IconButton";
import SnackbarContent from "@material-ui/core/SnackbarContent";
2019-11-25 16:23:52 +00:00
import Typography from "@material-ui/core/Typography";
2019-06-19 14:40:52 +00:00
import CloseIcon from "@material-ui/icons/Close";
2020-06-23 11:47:30 +00:00
import classNames from "classnames";
import React, { useState } from "react";
import { AlertComponentPropsWithStyle } from "react-alert";
2020-06-23 11:47:30 +00:00
import { FormattedMessage } from "react-intl";
2019-06-19 14:40:52 +00:00
import { IMessage } from "./";
2020-06-23 11:47:30 +00:00
import { useStyles } from "./styles";
2019-06-19 14:40:52 +00:00
export interface IMessageManagerProps extends AlertComponentPropsWithStyle {
message: IMessage;
2019-06-19 14:40:52 +00:00
}
export const MessageManager: React.FC<IMessageManagerProps> = props => {
const {
close,
options: { timeout },
2020-06-24 14:17:56 +00:00
message: { actionBtn, expandText, status = "info", title, text, onUndo }
} = props;
2020-06-23 11:47:30 +00:00
const [expand, setExpand] = useState(false);
2020-06-23 11:47:30 +00:00
const classes = useStyles({});
2019-06-19 14:40:52 +00:00
2020-06-23 11:47:30 +00:00
return (
<div key={props.id} className={classes.snackbarContainer}>
<SnackbarContent
id={props.id}
key={props.id}
aria-describedby="message-id"
2020-06-23 11:47:30 +00:00
className={classNames(classes.snackbar, {
2020-06-24 14:17:56 +00:00
[classes.info]: status === "info",
2020-06-23 11:47:30 +00:00
[classes.error]: status === "error",
[classes.success]: status === "success",
[classes.warning]: status === "warning"
})}
message={
<span id="message-id" data-tc="notification">
{title && (
<Typography variant="h5" style={{ fontWeight: "bold" }}>
{title}
</Typography>
)}
<Typography
className={status === "info" ? classes.textInfo : classes.text}
>
2019-08-27 13:29:00 +00:00
{text}
2020-06-23 11:47:30 +00:00
</Typography>
</span>
}
action={[
!!expandText ? (
<div
key="expanded"
className={classNames(classes.expandedContainer, {
[classes.expandedContainerInfo]: status === "info"
})}
2020-06-23 11:47:30 +00:00
>
<div
className={classNames(
classes.expandedContainerContent,
expand ? classes.expandedText : classes.hiddenText
)}
>
<p>{expandText}</p>
</div>
<button
className={classNames(classes.expandBtn, {
[classes.expandBtnInfo]: status === "info"
})}
onClick={() => {
setExpand(expand => !expand);
}}
>
{!expand ? (
<FormattedMessage
defaultMessage="Expand"
description="snackbar expand"
/>
) : (
<FormattedMessage
defaultMessage="Collapse"
description="snackbar collapse"
/>
)}
</button>
</div>
2020-06-23 11:47:30 +00:00
) : (
undefined
),
<div key="actions" className={classes.actionContainer}>
{!!onUndo && (
<Button
key="undo"
color="default"
size="small"
onClick={close}
data-tc="button-undo"
>
<FormattedMessage
defaultMessage="Undo"
description="snackbar button undo"
/>
</Button>
)}
{!!actionBtn && (
<Button
key="action"
color="default"
size="small"
onClick={actionBtn.action}
data-tc="button-action"
>
{actionBtn.label}
</Button>
)}
</div>,
2020-06-23 11:47:30 +00:00
<IconButton
key="close"
aria-label="Close"
color="inherit"
onClick={close}
className={classNames(classes.closeBtn, {
[classes.closeBtnInfo]: status === "info"
})}
2020-06-23 11:47:30 +00:00
>
<CloseIcon />
</IconButton>,
<div className={classes.progressBarContainer} key="progressBar">
<div
className={classNames(classes.progressBar, {
[classes.progressBarSuccess]: status === "success",
[classes.progressBarWarning]: status === "warning",
[classes.progressBarError]: status === "error"
})}
style={{ ["--animationTime" as any]: `${timeout}ms` }}
2020-06-23 11:47:30 +00:00
/>
</div>
]}
/>
</div>
2020-06-23 11:47:30 +00:00
);
};
2019-06-19 14:40:52 +00:00
export default MessageManager;