forked from qdrant/demo-midlibrary-explorer-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InfoDialog.jsx
54 lines (51 loc) · 1.37 KB
/
InfoDialog.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import React from "react";
import PropTypes from "prop-types";
import {
Button,
Dialog,
DialogActions,
DialogContent,
DialogTitle,
Typography,
} from "@mui/material";
import { InfoOutlined } from "@mui/icons-material";
import useMediaQuery from "@mui/material/useMediaQuery";
import { useTheme } from "@mui/material/styles";
const InfoDialog = ({ content, sx = {}, onClose }) => {
const [open, setOpen] = React.useState(false);
const mediumScreen = useMediaQuery((theme) => theme.breakpoints.down("sm"));
const theme = useTheme();
return (
<>
<InfoOutlined
fontSize={"small"}
color={"info"}
sx={{ cursor: "pointer", ...sx }}
onClick={() => setOpen(true)}
/>
<Dialog
open={open}
onClose={() => {
setOpen(false);
typeof onClose === "function" && onClose();
}}
maxWidth={"md"}
fullScreen={mediumScreen}
>
<DialogTitle variant={"h5"}>{content.title}</DialogTitle>
<DialogContent>
<Typography>{content.text}</Typography>
</DialogContent>
<DialogActions>
<Button onClick={() => setOpen(false)}>Close</Button>
</DialogActions>
</Dialog>
</>
);
};
InfoDialog.propTypes = {
content: PropTypes.object.isRequired,
sx: PropTypes.object,
onClose: PropTypes.func,
};
export default InfoDialog;