Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
79 lines
1.9 KiB
TypeScript
79 lines
1.9 KiB
TypeScript
import * as React from 'react';
|
|
import Box from '@mui/material/Box';
|
|
import Modal from '@mui/material/Modal';
|
|
import Button from '@mui/material/Button';
|
|
|
|
const style = {
|
|
position: 'absolute',
|
|
top: '50%',
|
|
left: '50%',
|
|
transform: 'translate(-50%, -50%)',
|
|
width: 400,
|
|
bgcolor: 'background.paper',
|
|
border: '2px solid #000',
|
|
boxShadow: 24,
|
|
pt: 2,
|
|
px: 4,
|
|
pb: 3,
|
|
};
|
|
|
|
function ChildModal() {
|
|
const [open, setOpen] = React.useState(false);
|
|
const handleOpen = () => {
|
|
setOpen(true);
|
|
};
|
|
const handleClose = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<React.Fragment>
|
|
<Button onClick={handleOpen}>Open Child Modal</Button>
|
|
<Modal
|
|
open={open}
|
|
onClose={handleClose}
|
|
aria-labelledby="child-modal-title"
|
|
aria-describedby="child-modal-description"
|
|
>
|
|
<Box sx={{ ...style, width: 200 }}>
|
|
<h2 id="child-modal-title">Text in a child modal</h2>
|
|
<p id="child-modal-description">
|
|
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
|
|
</p>
|
|
<Button onClick={handleClose}>Close Child Modal</Button>
|
|
</Box>
|
|
</Modal>
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
|
|
export default function NestedModal() {
|
|
const [open, setOpen] = React.useState(false);
|
|
const handleOpen = () => {
|
|
setOpen(true);
|
|
};
|
|
const handleClose = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<Button onClick={handleOpen}>Open modal</Button>
|
|
<Modal
|
|
open={open}
|
|
onClose={handleClose}
|
|
aria-labelledby="parent-modal-title"
|
|
aria-describedby="parent-modal-description"
|
|
>
|
|
<Box sx={{ ...style, width: 400 }}>
|
|
<h2 id="parent-modal-title">Text in a modal</h2>
|
|
<p id="parent-modal-description">
|
|
Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
|
|
</p>
|
|
<ChildModal />
|
|
</Box>
|
|
</Modal>
|
|
</div>
|
|
);
|
|
}
|