126 lines
3.5 KiB
JavaScript
126 lines
3.5 KiB
JavaScript
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Button from '@mui/material/Button';
|
|
import { styled } from '@mui/material/styles';
|
|
import Dialog from '@mui/material/Dialog';
|
|
import DialogTitle from '@mui/material/DialogTitle';
|
|
import DialogContent from '@mui/material/DialogContent';
|
|
import DialogActions from '@mui/material/DialogActions';
|
|
import IconButton from '@mui/material/IconButton';
|
|
import CloseIcon from '@mui/icons-material/Close';
|
|
import Typography from '@mui/material/Typography';
|
|
import Card from "@mui/material/Card";
|
|
|
|
const BootstrapDialog = styled(Dialog)(({ theme }) => ({
|
|
'& .MuiDialogContent-root': {
|
|
padding: theme.spacing(2),
|
|
},
|
|
'& .MuiDialogActions-root': {
|
|
padding: theme.spacing(1),
|
|
},
|
|
}));
|
|
|
|
function BootstrapDialogTitle(props) {
|
|
const { children, onClose, ...other } = props;
|
|
|
|
return (
|
|
<DialogTitle sx={{ m: 0, p: 2 }} {...other}>
|
|
{children}
|
|
{onClose ? (
|
|
<IconButton
|
|
aria-label="close"
|
|
onClick={onClose}
|
|
sx={{
|
|
position: 'absolute',
|
|
right: 8,
|
|
top: 8,
|
|
color: (theme) => theme.palette.grey[500],
|
|
}}
|
|
>
|
|
<CloseIcon />
|
|
</IconButton>
|
|
) : null}
|
|
</DialogTitle>
|
|
);
|
|
}
|
|
|
|
BootstrapDialogTitle.propTypes = {
|
|
children: PropTypes.node,
|
|
onClose: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default function CustomizationDialog() {
|
|
const [open, setOpen] = React.useState(false);
|
|
|
|
const handleClickOpen = () => {
|
|
setOpen(true);
|
|
};
|
|
const handleClose = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Customization Dialog
|
|
</Typography>
|
|
|
|
<Button variant="outlined" onClick={handleClickOpen}>
|
|
Open dialog
|
|
</Button>
|
|
|
|
<BootstrapDialog
|
|
onClose={handleClose}
|
|
aria-labelledby="customized-dialog-title"
|
|
open={open}
|
|
>
|
|
<div className="bg-black">
|
|
<BootstrapDialogTitle id="customized-dialog-title" onClose={handleClose}>
|
|
Modal title
|
|
</BootstrapDialogTitle>
|
|
|
|
<DialogContent dividers>
|
|
<Typography gutterBottom>
|
|
Cras mattis consectetur purus sit amet fermentum. Cras justo odio,
|
|
dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac
|
|
consectetur ac, vestibulum at eros.
|
|
</Typography>
|
|
|
|
<Typography gutterBottom>
|
|
Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
|
|
Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.
|
|
</Typography>
|
|
|
|
<Typography gutterBottom>
|
|
Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus
|
|
magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Donec
|
|
ullamcorper nulla non metus auctor fringilla.
|
|
</Typography>
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
<Button autoFocus onClick={handleClose}>
|
|
Save changes
|
|
</Button>
|
|
</DialogActions>
|
|
</div>
|
|
</BootstrapDialog>
|
|
</Card>
|
|
</>
|
|
);
|
|
} |