32 lines
818 B
React
32 lines
818 B
React
import { createPortal } from "react-dom";
|
|
import styles from "./modal.module.css";
|
|
import Button from "../button/button.jsx";
|
|
|
|
const Modal = ({ open, onClose, children, title }) => {
|
|
|
|
if (!open) return null;
|
|
|
|
const handleOverlayClick = () => {
|
|
onClose();
|
|
};
|
|
|
|
const handleModalClick = (e) => {
|
|
e.stopPropagation();
|
|
};
|
|
|
|
return createPortal(
|
|
<div className={styles.overlay} onClick={handleOverlayClick}>
|
|
<div className={styles.modal} onClick={handleModalClick}>
|
|
{title && <h2>{title}</h2>}
|
|
{children}
|
|
<div className={styles.modalFooter}>
|
|
<Button onClick={onClose}>Fermer</Button>
|
|
</div>
|
|
</div>
|
|
</div>,
|
|
document.body
|
|
);
|
|
};
|
|
|
|
export default Modal;
|