-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathuseEvent.js
305 lines (264 loc) · 10.5 KB
/
useEvent.js
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
import {is} from '@enact/core/keymap';
import Spotlight, {getDirection} from '@enact/spotlight';
import {getContainerConfig} from '@enact/spotlight/src/container';
import {getTargetByDirectionFromElement} from '@enact/spotlight/src/target';
import utilDOM from '@enact/ui/useScroll/utilDOM';
import utilEvent from '@enact/ui/useScroll/utilEvent';
import clamp from 'ramda/src/clamp';
import {useCallback, useEffect, useLayoutEffect, useRef} from 'react';
const
isDown = is('down'),
isEnter = is('enter'),
isLeft = is('left'),
isPageUp = is('pageUp'),
isPageDown = is('pageDown'),
isRight = is('right'),
isUp = is('up'),
isPointerHide = is('pointerHide'),
getNumberValue = (index) => {
// using '+ operator' for string > number conversion based on performance: https://jsperf.com/convert-string-to-number-techniques/7
let number = +index;
// should return -1 if index is not a number or a negative value
return number >= 0 ? number : -1;
};
let prevKeyDownIndex = -1;
const useEventKey = (props, instances, context) => {
// Mutable value
const mutableRef = useRef({
fn: null
});
// Functions
const findSpottableItem = useCallback((indexFrom, indexTo) => {
const {dataSize} = props;
if (indexFrom < 0 && indexTo < 0 || indexFrom >= dataSize && indexTo >= dataSize) {
return -1;
} else {
return clamp(0, dataSize - 1, indexFrom);
}
}, [props]);
const getNextIndex = useCallback(({index, keyCode, repeat}) => {
const {dataSize, rtl, wrap} = props;
const {scrollContentHandle} = instances;
const {isPrimaryDirectionVertical, dimensionToExtent} = scrollContentHandle.current;
const column = index % dimensionToExtent;
const row = (index - column) % dataSize / dimensionToExtent;
const isDownKey = isDown(keyCode);
const isLeftMovement = (!rtl && isLeft(keyCode)) || (rtl && isRight(keyCode));
const isRightMovement = (!rtl && isRight(keyCode)) || (rtl && isLeft(keyCode));
const isUpKey = isUp(keyCode);
const isNextRow = index + dimensionToExtent < dataSize;
const isNextAdjacent = column < dimensionToExtent - 1 && index < (dataSize - 1);
const isBackward = (
isPrimaryDirectionVertical && isUpKey ||
!isPrimaryDirectionVertical && isLeftMovement ||
null
);
const isForward = (
isPrimaryDirectionVertical && isDownKey ||
!isPrimaryDirectionVertical && isRightMovement ||
null
);
let isWrapped = false;
let nextIndex = -1;
let targetIndex = -1;
if (index >= 0) {
if (isPrimaryDirectionVertical) {
if (isUpKey && row) {
targetIndex = index - dimensionToExtent;
} else if (isDownKey && isNextRow) {
targetIndex = index + dimensionToExtent;
} else if (isLeftMovement && column) {
targetIndex = index - 1;
} else if (isRightMovement && isNextAdjacent) {
targetIndex = index + 1;
}
} else if (isLeftMovement && row) {
targetIndex = index - dimensionToExtent;
} else if (isRightMovement && isNextRow) {
targetIndex = index + dimensionToExtent;
} else if (isUpKey && column) {
targetIndex = index - 1;
} else if (isDownKey && isNextAdjacent) {
targetIndex = index + 1;
}
if (targetIndex >= 0) {
nextIndex = targetIndex;
}
}
if (!repeat && nextIndex === -1 && wrap) {
if (isForward && findSpottableItem((row + 1) * dimensionToExtent, dataSize) < 0) {
nextIndex = findSpottableItem(0, index);
isWrapped = true;
} else if (isBackward && findSpottableItem(-1, row * dimensionToExtent - 1) < 0) {
nextIndex = findSpottableItem(dataSize, index);
isWrapped = true;
}
}
return {isDownKey, isUpKey, isLeftMovement, isRightMovement, isWrapped, nextIndex};
}, [findSpottableItem, props, instances]);
// Hooks
useEffect(() => {
const {scrollContainerRef, scrollContentHandle} = instances;
const {
handle5WayKeyUp,
handleDirectionKeyDown,
handlePageUpDownKeyDown,
spotlightAcceleratorProcessKey
} = context;
function handleKeyDown (ev) {
const {keyCode, target} = ev;
const direction = getDirection(keyCode);
if (direction) {
Spotlight.setPointerMode(false);
if (spotlightAcceleratorProcessKey(ev)) {
ev.stopPropagation();
} else {
const {spotlightId} = props;
const targetIndex = target.dataset.index;
const isNotItem = (
// if target has an index, it must be an item
!targetIndex &&
// if it lacks an index and is inside the scroller, we need to handle this
target.matches(`[data-spotlight-id="${spotlightId}"] *`)
);
const index = !isNotItem ? getNumberValue(targetIndex) : -1;
const candidate = getTargetByDirectionFromElement(direction, target);
const candidateInside = utilDOM.containsDangerously(ev.currentTarget, candidate);
const candidateIndex = candidate && candidateInside && candidate.dataset && getNumberValue(candidate.dataset.index);
let isLeaving = false;
if (isNotItem) { // if the focused node is not an item
if (!candidateInside) { // if the candidate is out of a list
isLeaving = true;
}
} else if (index >= 0 && candidateIndex !== index) { // the focused node is an item and focus will move out of the item
const {repeat} = ev;
const {isDownKey, isUpKey, isLeftMovement, isRightMovement, isWrapped, nextIndex} = getNextIndex({index, keyCode, repeat});
if (nextIndex >= 0) { // if the candidate is another item
ev.preventDefault();
ev.stopPropagation();
if (repeat && prevKeyDownIndex !== -1 &&
((isDownKey && prevKeyDownIndex > index) || (isUpKey && prevKeyDownIndex < index))) {
// Ignore keyEvent from item with wrong data-index (Workaround for data-index bug)
// Sometimes keyDown event occurs before the data-index updated, it causes reverse focus change
return;
}
if (props.scrollContainerHandle && props.scrollContainerHandle.current) {
props.scrollContainerHandle.current.lastInputType = 'arrowKey';
}
handleDirectionKeyDown(ev, 'acceleratedKeyDown', {isWrapped, keyCode, nextIndex, repeat, target});
} else { // if the candidate is not found
const {dataSize, focusableScrollbar, isHorizontalScrollbarVisible, isVerticalScrollbarVisible} = props;
const {dimensionToExtent, isPrimaryDirectionVertical} = scrollContentHandle.current;
const column = index % dimensionToExtent;
const row = (index - column) % dataSize / dimensionToExtent;
const directions = {};
let isScrollbarVisible;
if (isPrimaryDirectionVertical) {
directions.left = isLeftMovement;
directions.right = isRightMovement;
directions.up = isUpKey;
directions.down = isDownKey;
isScrollbarVisible = isVerticalScrollbarVisible;
} else {
directions.left = isUpKey;
directions.right = isDownKey;
directions.up = isLeftMovement;
directions.down = isRightMovement;
isScrollbarVisible = isHorizontalScrollbarVisible;
}
isLeaving =
directions.up && row === 0 ||
directions.down && row === Math.floor((dataSize - 1) % dataSize / dimensionToExtent) ||
directions.left && column === 0 ||
directions.right && (!focusableScrollbar || !isScrollbarVisible) && (column === dimensionToExtent - 1 || index === dataSize - 1 && row === 0);
/* istanbul ignore next */
if (isLeaving) {
if (repeat) { // if focus is about to leave items by holding down an arrowy key
ev.preventDefault();
if (spotlightId && !getContainerConfig(spotlightId)?.continue5WayHold) {
ev.stopPropagation();
}
} else if (!candidate && ev.timeStamp - mutableRef.current.pointerHideTimeStamp < 30) {
// No candidate
// Spotlight will focus the same item again, then a list scrolls to show the focused item
// 30 is an arbitrary value
target.blur();
mutableRef.current.pointerHideTimeStamp = 0;
}
} else {
handleDirectionKeyDown(ev, 'keyDown', {direction, keyCode, repeat, target});
}
}
}
prevKeyDownIndex = index;
if (isLeaving) {
handleDirectionKeyDown(ev, 'keyLeave');
}
}
} else if (isPageUp(keyCode) || isPageDown(keyCode)) {
handlePageUpDownKeyDown();
} else if (isPointerHide(keyCode)) {
/* istanbul ignore next */
mutableRef.current.pointerHideTimeStamp = ev.timeStamp;
}
}
function handleKeyUp ({keyCode}) {
if (getDirection(keyCode) || isEnter(keyCode)) {
handle5WayKeyUp();
}
}
utilEvent('keydown').addEventListener(scrollContainerRef, handleKeyDown, {capture: true});
utilEvent('keyup').addEventListener(scrollContainerRef, handleKeyUp, {capture: true});
return () => {
utilEvent('keydown').removeEventListener(scrollContainerRef, handleKeyDown, {capture: true});
utilEvent('keyup').removeEventListener(scrollContainerRef, handleKeyUp, {capture: true});
};
}, [getNextIndex, props, instances, context]);
// Functions
function addGlobalKeyDownEventListener (fn) {
mutableRef.current.fn = fn;
utilEvent('keydown').addEventListener(document, mutableRef.current.fn, {capture: true});
}
function removeGlobalKeyDownEventListener () {
utilEvent('keydown').removeEventListener(document, mutableRef.current.fn, {capture: true});
mutableRef.current.fn = null;
}
// Return
return {
addGlobalKeyDownEventListener,
removeGlobalKeyDownEventListener
};
};
const useEventFocus = (props, instances, context) => {
const {scrollContainerRef, scrollContentHandle} = instances;
const {removeScaleEffect} = context;
useLayoutEffect(() => {
function handleFocus (ev) {
// only for VirtualGridList
// To make the focused item cover other near items
// We need to find out the general solution for multiple spottable inside of one item
if (ev.target && scrollContentHandle.current && scrollContentHandle.current.isItemSized) {
ev.target.parentNode.style.setProperty('z-index', 1);
removeScaleEffect();
}
}
function handleBlur (ev) {
// only for VirtualGridList
// To make the blurred item normal
if (ev.target && scrollContentHandle.current && scrollContentHandle.current.isItemSized) {
ev.target.parentNode.style.setProperty('z-index', null);
}
}
utilEvent('focusin').addEventListener(scrollContainerRef, handleFocus);
utilEvent('focusout').addEventListener(scrollContainerRef, handleBlur);
return () => {
utilEvent('focusin').removeEventListener(scrollContainerRef, handleFocus);
utilEvent('focusout').removeEventListener(scrollContainerRef, handleBlur);
};
});
};
export default useEventKey;
export {
useEventFocus,
useEventKey
};