-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathclick_outside_wrapper.tsx
More file actions
78 lines (74 loc) · 1.99 KB
/
Copy pathclick_outside_wrapper.tsx
File metadata and controls
78 lines (74 loc) · 1.99 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import React, { useCallback, useEffect, useRef } from "react";
export type ClickOutsideHandler = (event: MouseEvent) => void;
interface ClickOutsideWrapperProps {
onClickOutside: ClickOutsideHandler;
className?: string;
children: React.ReactNode;
containerRef?: React.RefObject<HTMLDivElement | null>;
style?: React.CSSProperties;
ignoreClass?: string;
}
const useDetectClickOutside = (
onClickOutside: ClickOutsideHandler,
ignoreClass?: string,
) => {
const ref = useRef<HTMLDivElement | null>(null);
const onClickOutsideRef = useRef(onClickOutside);
useEffect(() => {
onClickOutsideRef.current = onClickOutside;
}, [onClickOutside]);
const handleClickOutside = useCallback(
(event: MouseEvent) => {
const target =
(event.composed &&
event.composedPath &&
event
.composedPath()
.find((eventTarget) => eventTarget instanceof Node)) ||
event.target;
if (ref.current && !ref.current.contains(target as Node)) {
if (
!(
ignoreClass &&
target instanceof HTMLElement &&
target.classList.contains(ignoreClass)
)
) {
onClickOutsideRef.current?.(event);
}
}
},
[ignoreClass],
);
useEffect(() => {
document.addEventListener("mousedown", handleClickOutside, true);
return () => {
document.removeEventListener("mousedown", handleClickOutside, true);
};
}, [handleClickOutside]);
return ref;
};
export const ClickOutsideWrapper: React.FC<ClickOutsideWrapperProps> = ({
children,
onClickOutside,
className,
containerRef,
style,
ignoreClass,
}) => {
const detectRef = useDetectClickOutside(onClickOutside, ignoreClass);
return (
<div
className={className}
style={style}
ref={(node: HTMLDivElement | null) => {
detectRef.current = node;
if (containerRef) {
containerRef.current = node;
}
}}
>
{children}
</div>
);
};