Files
suwayomi-material-you-webui/src/components/util/Toast.tsx

75 lines
2.1 KiB
TypeScript
Raw Normal View History

/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
2021-05-15 20:36:56 +04:30
import React from 'react';
2021-09-09 17:51:22 +04:30
import Slide, { SlideProps } from '@mui/material/Slide';
import Snackbar from '@mui/material/Snackbar';
import MuiAlert, { AlertColor as Severity } from '@mui/material/Alert';
import { createRoot, Root } from 'react-dom/client';
2021-05-15 20:36:56 +04:30
function removeToast(root: Root) {
root.unmount();
2021-05-15 20:36:56 +04:30
}
function Transition(props: SlideProps) {
return <Slide {...props} direction="up" />;
}
interface IToastProps {
message: string;
severity: Severity;
2021-05-15 20:36:56 +04:30
}
2021-09-09 05:14:17 +04:30
export function Toast(props: IToastProps) {
2021-05-15 20:36:56 +04:30
const { message, severity } = props;
const [open, setOpen] = React.useState(true);
const handleClose = () => {
setOpen(false);
};
return (
<Snackbar
open={open}
onClose={handleClose}
autoHideDuration={3000}
TransitionComponent={Transition}
message="I love snacks"
>
<MuiAlert elevation={6} variant="filled" onClose={handleClose} severity={severity}>
{message}
</MuiAlert>
</Snackbar>
);
}
2023-10-28 00:32:02 +02:00
export function makeToast(message: string, severity: Severity) {
2021-05-15 20:36:56 +04:30
const id = Math.floor(Math.random() * 1000);
const container = document.createElement('div');
container.id = `alert-${id}`;
document.body.appendChild(container);
const root = createRoot(container!);
root.render(<Toast message={message} severity={severity} />);
2021-05-15 20:36:56 +04:30
setTimeout(() => removeToast(root), 3500);
2021-05-15 20:36:56 +04:30
}
2021-09-09 05:14:17 +04:30
export function makeToaster([toasts, setToasts]: [React.ReactElement[], (arg0: React.ReactElement[]) => void]): [
React.ReactElement[],
(message: string, severity: Severity) => void,
] {
return [
toasts,
(message: string, severity: Severity) => {
setToasts([<Toast key={Math.floor(Math.random() * 1000) + 1} message={message} severity={severity} />]);
},
];
2021-09-09 05:14:17 +04:30
}