File size: 685 Bytes
f5071ca |
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 |
import React, { useEffect, useRef } from "react";
import "./Dropdown.css";
function Dropdown(props: any) {
const dropdownRef: any = useRef();
const handleClick = (event: any) => {
if (
dropdownRef &&
!dropdownRef.current?.contains(event.target) &&
props.onClose
)
props.onClose();
};
useEffect(() => {
document.addEventListener("click", handleClick);
return () => {
document.removeEventListener("click", handleClick);
};
});
return (
<div
ref={dropdownRef}
className={`dropdown custom-scroll ${props.class ? props.class : ""}`}
>
{props.children}
</div>
);
}
export default Dropdown;
|