blob: bf0540bb9e6fefebb32556683a4a69068bbbb59c (
plain)
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
|
import React, { useRef, useEffect } from "react";
import styles from "./Modal.module.css";
const Modal = ({ openModal, setOpenModal, onSuccessClick, onCancelClick }) => {
const modalRef = useRef(null);
useEffect(() => {
const handleClickOutside = (event) => {
if (modalRef.current && !modalRef.current.contains(event.target)) {
setOpenModal(false);
}
};
document.addEventListener("mousedown", handleClickOutside);
return () => {
document.removeEventListener("mousedown", handleClickOutside);
};
}, [setOpenModal]);
return (
<div className={`${styles.background} ${openModal && styles.active}`}>
<div ref={modalRef} className={styles.container}>
<button
className={styles.container__close}
onClick={() => setOpenModal(false)}
>
<span>✗</span>
</button>
<p className={styles.container__title}>Encrypt content?</p>
<div className={styles.container__actions}>
<button onClick={onSuccessClick}>Yes</button>
<button onClick={onCancelClick}>No</button>
</div>
</div>
</div>
);
};
export default Modal;
|