-
Notifications
You must be signed in to change notification settings - Fork 635
/
useBrowserScrollView.ts
345 lines (299 loc) Β· 11.2 KB
/
useBrowserScrollView.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
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
import { useCallback, useEffect, useMemo } from 'react';
import { Gesture } from 'react-native-gesture-handler';
import {
dispatchCommand,
runOnUI,
useAnimatedProps,
useAnimatedStyle,
useDerivedValue,
useSharedValue,
withSpring,
} from 'react-native-reanimated';
import { triggerHaptics } from 'react-native-turbo-haptics';
import { SPRING_CONFIGS } from '@/components/animations/animationConfigs';
import { IS_ANDROID, IS_DEV, IS_IOS } from '@/env';
import { safeAreaInsetValues } from '@/utils';
import { DEVICE_HEIGHT, DEVICE_WIDTH } from '@/utils/deviceUtils';
import { useBrowserContext } from '../BrowserContext';
import { useBrowserWorkletsContext } from '../BrowserWorkletsContext';
import { TAB_VIEW_ROW_HEIGHT } from '../Dimensions';
import { RAINBOW_HOME } from '../constants';
import { determineGestureType, determineTapResult, handleGestureEnd, updateTabGestureState } from '../utils/gestureUtils';
import { calculateScrollPositionToCenterTab } from '../utils/layoutUtils';
import { TabHitResult, tabHitTest } from '../utils/tabHitTest';
const ENABLE_PAN_LOGS = IS_DEV && false;
const ENABLE_SCROLL_VIEW_LOGS = IS_DEV && false;
export function useBrowserScrollView() {
const {
activeTabCloseGestures,
animatedActiveTabIndex,
animatedTabUrls,
currentlyBeingClosedTabIds,
currentlyOpenTabIds,
gestureManagerState,
multipleTabsOpen,
scrollViewOffset,
scrollViewRef,
tabViewVisible,
} = useBrowserContext();
const { toggleTabViewWorklet } = useBrowserWorkletsContext();
const touchInfo = useSharedValue<{ initialTappedTab: TabHitResult | null; timestamp: number; x: number; y: number } | undefined>(
undefined
);
const scrollViewHeight = useDerivedValue(() => {
const height = Math.max(
Math.ceil(currentlyOpenTabIds.value.length / 2) * TAB_VIEW_ROW_HEIGHT + safeAreaInsetValues.bottom + 165 + 28 + (IS_ANDROID ? 35 : 0),
DEVICE_HEIGHT
);
return withSpring(height, SPRING_CONFIGS.slowSpring);
});
const scrollViewContainerStyle = useAnimatedStyle(() => {
const disableScroll = !tabViewVisible.value;
return {
pointerEvents: disableScroll ? 'none' : 'auto',
zIndex: disableScroll ? -1 : 10000,
};
});
const scrollViewStyle = useAnimatedStyle(() => ({ height: scrollViewHeight.value }));
const gestureManagerStyle = useAnimatedStyle(() => ({ pointerEvents: tabViewVisible.value ? 'auto' : 'box-none' }));
const animatedProps = useAnimatedProps(() => ({ scrollEnabled: tabViewVisible.value }));
const closeTab = useCallback(
(tabId: string, tabIndex: number, velocityX: number | undefined) => {
'worklet';
let xDestination: number;
if (velocityX !== undefined) {
// Closed via swipe gesture
xDestination = -Math.min(Math.max(DEVICE_WIDTH, DEVICE_WIDTH + Math.abs(velocityX * 0.2)), 1200);
} else {
// X button press
triggerHaptics('soft');
const isOnlyOneTabOpen = currentlyOpenTabIds.value.length === 1;
const isTabInLeftColumn = tabIndex % 2 === 0 && !isOnlyOneTabOpen;
xDestination = isTabInLeftColumn ? -DEVICE_WIDTH / 1.5 : -DEVICE_WIDTH;
}
// Register that the tab is starting to close
currentlyOpenTabIds.modify(openTabs => {
const index = openTabs.indexOf(tabId);
if (index !== -1) {
currentlyBeingClosedTabIds.modify(closingTabs => {
closingTabs.push(tabId);
return closingTabs;
});
openTabs.splice(index, 1);
}
return openTabs;
});
updateTabGestureState(activeTabCloseGestures, {
gestureScale: 1,
gestureX: xDestination,
isActive: false,
tabId,
tabIndex,
});
},
[activeTabCloseGestures, currentlyBeingClosedTabIds, currentlyOpenTabIds]
);
const gestureManager = useMemo(() => {
// Native ScrollView Gesture
const nativeScrollViewGesture = Gesture.Native()
.onTouchesDown((_, manager) => {
if (ENABLE_SCROLL_VIEW_LOGS) console.log('[ScrollView Gesture] TOUCH DOWN');
if (gestureManagerState.value === 'active') manager.fail();
})
.onTouchesMove((_, manager) => {
if (ENABLE_SCROLL_VIEW_LOGS) console.log('[ScrollView Gesture] TOUCH MOVE');
if (gestureManagerState.value === 'active') manager.fail();
});
// Custom Pan Gesture
const manualPanGesture = Gesture.Pan()
.blocksExternalGesture(nativeScrollViewGesture)
.manualActivation(true)
.onTouchesDown((e, manager) => {
if (ENABLE_PAN_LOGS) console.log('[Pan Gesture] TOUCH DOWN');
const areMultipleTouchesActive = e.allTouches.length > 1;
if (!tabViewVisible.value || areMultipleTouchesActive) {
manager.fail();
gestureManagerState.value = 'inactive';
return;
}
manager.begin();
gestureManagerState.value = 'pending';
const tappedTab = tabHitTest(
e.changedTouches[0].absoluteX,
e.changedTouches[0].absoluteY,
scrollViewOffset.value,
currentlyOpenTabIds.value
);
touchInfo.value = {
initialTappedTab: tappedTab,
timestamp: performance.now(),
x: e.changedTouches[0].absoluteX,
y: e.changedTouches[0].absoluteY,
};
})
.onTouchesMove((e, manager) => {
if (ENABLE_PAN_LOGS) console.log('[Pan Gesture] TOUCH MOVE');
const decision = determineGestureType({
currentX: e.changedTouches[0].absoluteX,
currentY: e.changedTouches[0].absoluteY,
gestureState: gestureManagerState.value,
touchInfo: touchInfo.value,
activeTabCloseGestures: activeTabCloseGestures.value,
});
switch (decision.type) {
case 'beginScroll':
manager.fail();
gestureManagerState.value = 'inactive';
touchInfo.value = undefined;
return;
case 'beginClose': {
if (!decision.tabInfo) return;
// Handle iOS scroll bounce
if (gestureManagerState.value === 'pending') {
if (IS_IOS) {
if (scrollViewOffset.value < 0) {
// Snap back to top
dispatchCommand(scrollViewRef, 'scrollTo', [0, 0, true]);
} else if (scrollViewOffset.value + DEVICE_HEIGHT > scrollViewHeight.value) {
// Snap back to bottom
const lastTabIndex = currentlyOpenTabIds.value.length - 1;
dispatchCommand(scrollViewRef, 'scrollTo', [
0,
calculateScrollPositionToCenterTab(lastTabIndex, currentlyOpenTabIds.value.length),
true,
]);
}
}
manager.activate();
gestureManagerState.value = 'active';
}
updateTabGestureState(activeTabCloseGestures, {
gestureScale: 1.1,
gestureX: decision.translationX ?? 0,
isActive: true,
tabId: decision.tabInfo.tabId,
tabIndex: decision.tabInfo.tabIndex,
});
break;
}
case 'continueClose': {
if (!decision.tabInfo) return;
updateTabGestureState(activeTabCloseGestures, {
gestureScale: 1.1,
gestureX: decision.translationX ?? 0,
isActive: true,
tabId: decision.tabInfo.tabId,
tabIndex: decision.tabInfo.tabIndex,
});
break;
}
case 'ignore':
break;
}
})
.onTouchesCancelled((_, manager) => {
if (ENABLE_PAN_LOGS) console.log('[Pan Gesture] TOUCH CANCELLED');
if (touchInfo.value?.initialTappedTab) {
const { tabId, tabIndex } = touchInfo.value.initialTappedTab;
updateTabGestureState(activeTabCloseGestures, {
gestureScale: 1,
gestureX: 0,
isActive: false,
tabId,
tabIndex,
});
}
manager.fail();
gestureManagerState.value = 'inactive';
touchInfo.value = undefined;
})
.onTouchesUp((e, manager) => {
if (ENABLE_PAN_LOGS) console.log('[Pan Gesture] TOUCH UP');
const result = determineTapResult({
currentTouch: {
x: e.changedTouches[0].absoluteX,
y: e.changedTouches[0].absoluteY,
},
gestureState: gestureManagerState.value,
tabViewVisible: tabViewVisible.value,
touchInfo: touchInfo.value,
});
switch (result.type) {
case 'close':
gestureManagerState.value = 'inactive';
closeTab(result.tabInfo.tabId, result.tabInfo.tabIndex, undefined);
touchInfo.value = undefined;
break;
case 'select':
gestureManagerState.value = 'inactive';
toggleTabViewWorklet(result.tabInfo.tabIndex);
touchInfo.value = undefined;
break;
}
manager.end();
gestureManagerState.value = 'inactive';
touchInfo.value = undefined;
})
.onEnd((e, success) => {
if (ENABLE_PAN_LOGS) console.log('[Pan Gesture] ON END');
if (!touchInfo.value?.initialTappedTab) return;
if (!success) {
updateTabGestureState(activeTabCloseGestures, {
gestureScale: 1,
gestureX: 0,
isActive: false,
tabId: touchInfo.value.initialTappedTab.tabId,
tabIndex: touchInfo.value.initialTappedTab.tabIndex,
});
gestureManagerState.value = 'inactive';
touchInfo.value = undefined;
return;
}
const { tabId, tabIndex } = touchInfo.value.initialTappedTab;
const url = animatedTabUrls.value[tabId] || RAINBOW_HOME;
const { shouldClose } = handleGestureEnd({
multipleTabsOpen: multipleTabsOpen.value,
tabViewVisible: tabViewVisible.value,
translationX: e.translationX,
url,
velocityX: e.velocityX,
});
if (shouldClose) {
closeTab(tabId, tabIndex, e.velocityX);
} else {
updateTabGestureState(activeTabCloseGestures, {
gestureScale: 1,
gestureX: 0,
isActive: false,
tabId,
tabIndex,
});
}
});
return Gesture.Simultaneous(manualPanGesture, nativeScrollViewGesture);
}, [
activeTabCloseGestures,
animatedTabUrls,
closeTab,
currentlyOpenTabIds,
gestureManagerState,
multipleTabsOpen,
scrollViewHeight,
scrollViewOffset,
scrollViewRef,
touchInfo,
tabViewVisible,
toggleTabViewWorklet,
]);
// Vertically centers the active tab when the browser is mounted
useEffect(() => {
runOnUI(() => {
dispatchCommand(scrollViewRef, 'scrollTo', [
0,
calculateScrollPositionToCenterTab(animatedActiveTabIndex.value, currentlyOpenTabIds.value.length),
false,
]);
})();
}, [animatedActiveTabIndex, currentlyOpenTabIds, scrollViewRef]);
return { animatedProps, gestureManager, scrollViewContainerStyle, scrollViewStyle, gestureManagerStyle };
}