bitburner-src/src/ui/React/Modal.tsx

56 lines
1.4 KiB
TypeScript
Raw Normal View History

2021-09-15 03:05:49 +02:00
import React from "react";
import { makeStyles, createStyles, Theme } from "@material-ui/core";
import M from "@material-ui/core/Modal";
import Backdrop from "@material-ui/core/Backdrop";
import Fade from "@material-ui/core/Fade";
const useStyles = makeStyles((theme: Theme) =>
createStyles({
modal: {
display: "flex",
alignItems: "center",
justifyContent: "center",
},
paper: {
backgroundColor: theme.palette.background.paper,
border: "2px solid " + theme.palette.primary.main,
boxShadow: theme.shadows[5],
padding: theme.spacing(2, 4, 3),
2021-09-15 03:47:42 +02:00
maxWidth: "80%",
maxHeight: "80%",
overflow: "auto",
"&::-webkit-scrollbar": {
// webkit
display: "none",
},
scrollbarWidth: "none", // firefox
2021-09-15 03:05:49 +02:00
},
}),
);
interface IProps {
open: boolean;
2021-09-15 03:47:42 +02:00
onClose: () => void;
children: JSX.Element[] | JSX.Element | React.ReactElement[] | React.ReactElement;
2021-09-15 03:05:49 +02:00
}
export const Modal = (props: IProps): React.ReactElement => {
const classes = useStyles();
return (
<M
open={props.open}
2021-09-15 03:47:42 +02:00
onClose={props.onClose}
2021-09-15 03:05:49 +02:00
closeAfterTransition
className={classes.modal}
BackdropComponent={Backdrop}
BackdropProps={{
2021-09-15 03:47:42 +02:00
timeout: 100,
2021-09-15 03:05:49 +02:00
}}
>
<Fade in={props.open}>
<div className={classes.paper}>{props.children}</div>
</Fade>
</M>
);
};