* [ESLint] Add "eslint-plugin-header" as dev dependency * [ESLint::eslint-plugin-header] Setup rule * [ESLint::eslint-plugin-header] Fix errors
76 lines
2.2 KiB
TypeScript
76 lines
2.2 KiB
TypeScript
/*
|
|
* 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/.
|
|
*/
|
|
|
|
import ReactDOM from 'react-dom';
|
|
import React from 'react';
|
|
import Slide, { SlideProps } from '@mui/material/Slide';
|
|
import Snackbar from '@mui/material/Snackbar';
|
|
import MuiAlert, { AlertColor as Severity } from '@mui/material/Alert';
|
|
|
|
function removeToast(id: string) {
|
|
const container = document.querySelector(`#${id}`)!!;
|
|
ReactDOM.unmountComponentAtNode(container);
|
|
document.body.removeChild(container);
|
|
}
|
|
|
|
function Transition(props: SlideProps) {
|
|
return <Slide {...props} direction="up" />;
|
|
}
|
|
|
|
interface IToastProps {
|
|
message: string;
|
|
severity: Severity;
|
|
}
|
|
|
|
export function Toast(props: IToastProps) {
|
|
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>
|
|
);
|
|
}
|
|
|
|
export default function makeToast(message: string, severity: Severity) {
|
|
const id = Math.floor(Math.random() * 1000);
|
|
const container = document.createElement('div');
|
|
container.id = `alert-${id}`;
|
|
|
|
document.body.appendChild(container);
|
|
|
|
ReactDOM.render(<Toast message={message} severity={severity} />, container);
|
|
|
|
setTimeout(() => removeToast(container.id), 3500);
|
|
}
|
|
|
|
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} />]);
|
|
},
|
|
];
|
|
}
|