41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
import DangerousIcon from "@mui/icons-material/Dangerous";
|
|
import { Box, Typography } from "@mui/material";
|
|
import { toast } from "react-toastify";
|
|
|
|
const ErrorNotification = (directionApp, status, t, message) => {
|
|
toast(
|
|
() => (
|
|
<>
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: "start",
|
|
justifyContent: "start",
|
|
}}
|
|
>
|
|
<Box sx={{ display: "flex", alignItems: "center" }}>
|
|
<DangerousIcon color="error" sx={{ mr: 1.6 }} />
|
|
<Box sx={{ display: "flex", flexDirection: "column" }}>
|
|
<Typography color="error" variant="button">
|
|
{t("notifications.error")} ({t("notifications.code")}: {status})
|
|
</Typography>
|
|
<Typography variant="caption">
|
|
{message || t("notifications.error_static_text")}
|
|
</Typography>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</>
|
|
),
|
|
{
|
|
position: directionApp === "ltr" ? "top-left" : "top-right",
|
|
autoClose: false,
|
|
closeOnClick: false,
|
|
draggable: false,
|
|
}
|
|
);
|
|
};
|
|
|
|
export default ErrorNotification;
|