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

207 lines
5.5 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 Snackbar from "@material-ui/core/Snackbar";
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 { FormattedMessage } from "react-intl";
2019-06-19 14:40:52 +00:00
import { IMessage, MessageContext } from "./";
2020-06-23 11:47:30 +00:00
import { useStyles } from "./styles";
2019-06-19 14:40:52 +00:00
interface Message extends IMessage {
key: string;
}
2020-06-23 11:47:30 +00:00
export const MessageManager = props => {
const { children } = props;
const [message, setMessage] = useState<Message>({
key: "0",
onUndo: undefined,
status: "info",
text: ""
});
const [opened, setOpened] = useState(false);
const [expand, setExpand] = useState(false);
2020-06-23 11:47:30 +00:00
const classes = useStyles({});
const {
actionBtn,
autohide = 9000,
expandText,
2020-06-23 11:47:30 +00:00
title,
text,
key,
onUndo,
status = "info"
} = message;
2019-06-19 14:40:52 +00:00
2020-06-23 11:47:30 +00:00
const queue = [];
const handleClose = (_, reason) => {
2019-06-19 14:40:52 +00:00
if (reason === "clickaway") {
return;
}
2020-06-23 11:47:30 +00:00
setOpened(false);
};
const processQueue = () => {
if (queue.length > 0) {
setMessage(queue.shift());
setOpened(true);
}
2019-06-19 14:40:52 +00:00
};
2020-06-23 11:47:30 +00:00
const handleExited = () => {
processQueue();
2019-06-19 14:40:52 +00:00
};
2020-06-23 11:47:30 +00:00
const pushMessage = (message: IMessage) => {
queue.push({
2019-06-19 14:40:52 +00:00
key: new Date().getTime(),
...message
});
2020-06-23 11:47:30 +00:00
if (opened) {
setOpened(false);
2019-06-19 14:40:52 +00:00
} else {
2020-06-23 11:47:30 +00:00
processQueue();
2019-06-19 14:40:52 +00:00
}
};
2020-06-23 11:47:30 +00:00
return (
<>
<Snackbar
key={key}
anchorOrigin={{
horizontal: "right",
vertical: "top"
}}
open={opened}
autoHideDuration={autohide}
onClose={handleClose}
onExited={handleExited}
ContentProps={{
"aria-describedby": "message-id"
}}
className={classNames(classes.snackbar, {
[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>
}
title={title}
action={[
!!expandText ? (
<div
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={handleClose as any}
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={handleClose as any}
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.progressBarActive]: opened,
[classes.progressBarSuccess]: status === "success",
[classes.progressBarWarning]: status === "warning",
[classes.progressBarError]: status === "error"
})}
style={{ ["--animationTime" as any]: `${autohide}ms` }}
/>
</div>
]}
/>
<MessageContext.Provider value={pushMessage}>
{children}
</MessageContext.Provider>
</>
);
};
2019-06-19 14:40:52 +00:00
export default MessageManager;