forked from Shopify/draggable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
204 lines (164 loc) · 5.44 KB
/
index.ts
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import {
closest,
distance as euclideanDistance,
touchCoords,
} from '../../../shared/utils';
import Sensor from '../Sensor';
import {
DragStartSensorEvent,
DragMoveSensorEvent,
DragStopSensorEvent,
} from '../SensorEvent';
const onTouchStart = Symbol('onTouchStart');
const onTouchEnd = Symbol('onTouchEnd');
const onTouchMove = Symbol('onTouchMove');
const startDrag = Symbol('startDrag');
const onDistanceChange = Symbol('onDistanceChange');
let preventScrolling = false;
// WebKit requires cancelable `touchmove` events to be added as early as possible
window.addEventListener(
'touchmove',
(event) => {
if (!preventScrolling) {
return;
}
// Prevent scrolling
event.preventDefault();
},
{ passive: false }
);
function onContextMenu(event) {
event.preventDefault();
event.stopPropagation();
}
export default class TouchSensor extends Sensor {
currentScrollableParent: HTMLElement = null;
tapTimeout: number = null;
touchMoved = false;
onTouchStartAt: number = null;
private pageX: number = null;
private pageY: number = null;
attach() {
document.addEventListener('touchstart', this[onTouchStart]);
}
detach() {
document.removeEventListener('touchstart', this[onTouchStart]);
}
private [onTouchStart] = (event: TouchEvent) => {
const container = closest(<HTMLElement>event.target, this.containers);
if (!container) return;
if (
this.options.handle &&
event.target &&
!closest(<HTMLElement>event.target, this.options.handle)
)
return;
const originalSource = closest(
<HTMLElement>event.target,
this.options.draggable
);
if (!originalSource) return;
const { distance = 0 } = this.options;
const { delay } = this;
const { pageX, pageY } = touchCoords(event);
Object.assign(this, { pageX, pageY });
this.onTouchStartAt = Date.now();
this.startEvent = event;
this.currentContainer = container;
this.originalSource = originalSource;
document.addEventListener('touchend', this[onTouchEnd]);
document.addEventListener('touchcancel', this[onTouchEnd]);
document.addEventListener('touchmove', this[onDistanceChange]);
container.addEventListener('contextmenu', onContextMenu);
if (distance) {
preventScrolling = true;
}
this.tapTimeout = window.setTimeout(() => {
this[onDistanceChange](event);
}, delay.touch);
};
private [startDrag] = () => {
const startEvent = this.startEvent;
const container = <HTMLElement>this.currentContainer;
const originalSource = <HTMLElement>this.originalSource;
const touch = touchCoords(<TouchEvent>startEvent);
const dragStartEvent = new DragStartSensorEvent({
clientX: touch.pageX,
clientY: touch.pageY,
target: <HTMLElement>startEvent.target,
container,
originalSource,
originalEvent: startEvent,
});
this.trigger(this.currentContainer, dragStartEvent);
this.dragging = !dragStartEvent.defaultPrevented;
if (this.dragging) {
document.addEventListener('touchmove', this[onTouchMove]);
}
preventScrolling = this.dragging;
};
private [onDistanceChange] = (event: TouchEvent) => {
const { distance } = this.options;
const { startEvent, delay } = this;
const start = touchCoords(<TouchEvent>startEvent);
const current = touchCoords(event);
const timeElapsed = Date.now() - this.onTouchStartAt;
const distanceTravelled = euclideanDistance(
start.pageX,
start.pageY,
current.pageX,
current.pageY
);
Object.assign(this, current);
clearTimeout(this.tapTimeout);
if (timeElapsed < delay.touch) {
// moved during delay
document.removeEventListener('touchmove', this[onDistanceChange]);
} else if (distanceTravelled >= distance) {
document.removeEventListener('touchmove', this[onDistanceChange]);
this[startDrag]();
}
};
private [onTouchMove] = (event: TouchEvent) => {
if (!this.dragging) return;
const { pageX, pageY } = touchCoords(event);
const target = <HTMLElement>(
document.elementFromPoint(pageX - window.scrollX, pageY - window.scrollY)
);
const dragMoveEvent = new DragMoveSensorEvent({
clientX: pageX,
clientY: pageY,
target,
container: <HTMLElement>this.currentContainer,
originalEvent: event,
});
this.trigger(this.currentContainer, dragMoveEvent);
};
private [onTouchEnd] = (event: TouchEvent) => {
clearTimeout(this.tapTimeout);
preventScrolling = false;
document.removeEventListener('touchend', this[onTouchEnd]);
document.removeEventListener('touchcancel', this[onTouchEnd]);
document.removeEventListener('touchmove', this[onDistanceChange]);
if (this.currentContainer)
this.currentContainer.removeEventListener('contextmenu', onContextMenu);
if (!this.dragging) return;
document.removeEventListener('touchmove', this[onTouchMove]);
const { pageX, pageY } = touchCoords(event);
const target = <HTMLElement>(
document.elementFromPoint(pageX - window.scrollX, pageY - window.scrollY)
);
event.preventDefault();
const dragStopEvent = new DragStopSensorEvent({
clientX: pageX,
clientY: pageY,
target,
container: <HTMLElement>this.currentContainer,
originalEvent: event,
});
this.trigger(this.currentContainer, dragStopEvent);
this.currentContainer = null;
this.dragging = false;
this.startEvent = null;
};
}