-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathImageComparison.tsx
131 lines (111 loc) · 4.6 KB
/
ImageComparison.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import * as React from 'react';
export const ImageComparison = ({ firstImageUrl, secondImageUrl }) => {
const containerRef = React.useRef();
const firstHalfRef = React.useRef();
const secondHalfRef = React.useRef();
const resizerRef = React.useRef();
const handleMouseDown = React.useCallback((e: React.MouseEvent) => {
const startPos = {
x: e.clientX,
y: e.clientY,
};
const currentLeftWidth = parseFloat(window.getComputedStyle(resizerRef.current).left);
const handleMouseMove = (e: React.MouseEvent) => {
const dx = e.clientX - startPos.x;
const dy = e.clientY - startPos.y;
updateWidth(currentLeftWidth, dx);
updateCursor();
};
const handleMouseUp = () => {
document.removeEventListener('mousemove', handleMouseMove);
document.removeEventListener('mouseup', handleMouseUp);
resetCursor();
};
document.addEventListener('mousemove', handleMouseMove);
document.addEventListener('mouseup', handleMouseUp);
}, []);
const handleTouchStart = React.useCallback((e: React.TouchEvent) => {
const touch = e.touches[0];
const startPos = {
x: touch.clientX,
y: touch.clientY,
};
const currentLeftWidth = parseFloat(window.getComputedStyle(resizerRef.current).left);
const handleTouchMove = (e: React.TouchEvent) => {
const touch = e.touches[0];
const dx = touch.clientX - startPos.x;
const dy = touch.clientY - startPos.y;
updateWidth(currentLeftWidth, dx);
updateCursor();
};
const handleTouchEnd = () => {
document.removeEventListener('touchmove', handleTouchMove);
document.removeEventListener('touchend', handleTouchEnd);
resetCursor();
};
document.addEventListener('touchmove', handleTouchMove);
document.addEventListener('touchend', handleTouchEnd);
}, []);
const updateWidth = (currentLeftWidth, dx) => {
const container = containerRef.current;
const firstHalfEle = firstHalfRef.current;
const resizerEle = resizerRef.current;
if (!container || !firstHalfEle || !resizerEle) {
return;
}
const containerWidth = container.getBoundingClientRect().width;
const delta = currentLeftWidth + dx;
const newFirstHalfWidth = delta * 100 / containerWidth;
const normalizedWidth = Math.min(Math.max(0, newFirstHalfWidth), 100);
firstHalfEle.style.clipPath = `inset(0 0 0 ${normalizedWidth}%)`;
resizerEle.style.left = `${normalizedWidth}%`;
};
const updateCursor = () => {
const container = containerRef.current;
const firstHalfEle = firstHalfRef.current;
const resizerEle = resizerRef.current;
const secondHalfEle = secondHalfRef.current;
if (!container || !firstHalfEle || !resizerEle || !secondHalfEle) {
return;
}
resizerEle.style.cursor = 'ew-resize';
document.body.style.cursor = 'ew-resize';
firstHalfEle.style.userSelect = 'none';
firstHalfEle.style.pointerEvents = 'none';
secondHalfEle.style.userSelect = 'none';
secondHalfEle.style.pointerEvents = 'none';
};
const resetCursor = () => {
const container = containerRef.current;
const firstHalfEle = firstHalfRef.current;
const resizerEle = resizerRef.current;
const secondHalfEle = secondHalfRef.current;
if (!container || !firstHalfEle || !resizerEle || !secondHalfEle) {
return;
}
resizerEle.style.removeProperty('cursor');
document.body.style.removeProperty('cursor');
firstHalfEle.style.removeProperty('user-select');
firstHalfEle.style.removeProperty('pointer-events');
secondHalfEle.style.removeProperty('user-select');
secondHalfEle.style.removeProperty('pointer-events');
};
return (
<div className="comparison" ref={containerRef}>
<div className="comparison__first" ref={firstHalfRef}>
<img className="comparison__image" src={firstImageUrl} />
</div>
<div
className="comparison__resizer"
ref={resizerRef}
onMouseDown={handleMouseDown}
onTouchStart={handleTouchStart}
/>
<img
className="comparison__image"
src={secondImageUrl}
ref={secondHalfRef}
/>
</div>
);
};