-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuse-element-highlight.tsx
89 lines (83 loc) · 2.76 KB
/
use-element-highlight.tsx
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
79
80
81
82
83
84
85
86
87
88
89
import * as React from 'react';
import { createPortal } from 'react-dom';
import { useState } from 'react';
import { Dispatch } from 'react';
import { SetStateAction } from 'react';
export function useElementHighLight<
T extends HTMLElement,
P extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>
>({
backdropColor = 'rgba(0,0,0,0.75)',
zIndex = 999,
overlay = false,
}: {
backdropColor?: string;
zIndex?: number;
overlay?: boolean;
}): [T | undefined | null, Dispatch<SetStateAction<T | undefined | null>>, React.ElementType] {
const [currentEl, setEl] = useState<T | undefined | null>(null);
let Portal = (props: P) => null;
if (currentEl) {
const rect = currentEl.getBoundingClientRect();
const commonStyles: React.CSSProperties = {
zIndex,
backgroundColor: backdropColor,
position: 'absolute',
};
const topDivStyle: React.CSSProperties = {
...commonStyles,
top: 0,
width: '100%',
height: rect.top,
};
const bottomDivStyle: React.CSSProperties = {
...commonStyles,
bottom: 0,
width: '100%',
height: window.innerHeight - rect.bottom,
};
const leftDivStyle: React.CSSProperties = {
...commonStyles,
left: 0,
top: rect.top,
width: rect.left,
height: rect.height,
};
const rightDivStyle: React.CSSProperties = {
...commonStyles,
right: 0,
top: rect.top,
width: window.innerWidth - rect.right,
height: rect.height,
};
const renderOverlay = (props: P) => {
if (overlay) {
const wrapperDivStyle: React.CSSProperties = {
zIndex: zIndex + 1,
height: '100%',
width: '100%',
position: 'absolute',
top: 0,
};
return <div {...props} style={wrapperDivStyle} />;
} else {
return null;
}
};
const backdropDivs = (props: P) => {
const appliedOuterProps = overlay ? {} : props;
return (
<div {...appliedOuterProps}>
<div style={topDivStyle} />
<div style={bottomDivStyle} />
<div style={leftDivStyle} />
<div style={rightDivStyle} />
{renderOverlay(props)}
</div>
);
};
// @ts-ignore
Portal = (props: P) => createPortal(backdropDivs(props), document.body);
}
return [currentEl, setEl, Portal];
}