-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathindex.ts
More file actions
401 lines (347 loc) · 11.8 KB
/
Copy pathindex.ts
File metadata and controls
401 lines (347 loc) · 11.8 KB
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
import {
scrollTo,
useAnimatedReaction,
useSharedValue,
} from "react-native-reanimated";
import { useKeyboardHandler } from "../../../hooks";
import useScrollState from "../../hooks/useScrollState";
import {
clampedScrollTarget,
getEffectiveHeight,
getMinimumPaddingAbsorbed,
getScrollEffective,
getVisibleMinimumPaddingFraction,
isScrollAtEnd,
shouldShiftContent,
} from "./helpers";
import type { UseChatKeyboardOptions, UseChatKeyboardReturn } from "./types";
import type { AnimatedRef } from "react-native-reanimated";
import type Reanimated from "react-native-reanimated";
/**
* Hook that manages keyboard-driven scrolling for chat-style scroll views.
* Calculates padding (extra scrollable space) and content shift values,
* using per-frame scrollTo updates (Android and other platforms).
*
* @param scrollViewRef - Animated ref to the scroll view.
* @param options - Configuration for inverted and keyboardLiftBehavior.
* @returns Shared values for padding and contentOffsetY (always `undefined`).
* @example
* ```tsx
* const { padding } = useChatKeyboard(ref, { inverted: false, keyboardLiftBehavior: "always" });
* ```
*/
function useChatKeyboard(
scrollViewRef: AnimatedRef<Reanimated.ScrollView>,
options: UseChatKeyboardOptions,
): UseChatKeyboardReturn {
const {
inverted,
keyboardLiftBehavior,
freeze,
offset,
blankSpace,
extraContentPadding,
} = options;
const padding = useSharedValue(0);
const currentHeight = useSharedValue(0);
const offsetBeforeScroll = useSharedValue(0);
const targetKeyboardHeight = useSharedValue(0);
const closing = useSharedValue(false);
const minimumPaddingFractionOnOpen = useSharedValue(0);
const actualOpenShift = useSharedValue(0);
const {
layout,
size,
offset: scroll,
onLayout,
onContentSizeChange,
} = useScrollState(scrollViewRef);
const clampScrollIfNeeded = (
effective: number,
totalPaddingForMaxScroll?: number,
) => {
"worklet";
const paddingForMax =
totalPaddingForMaxScroll !== undefined
? totalPaddingForMaxScroll
: effective;
const maxScroll = Math.max(
size.value.height - layout.value.height + paddingForMax,
0,
);
if (scroll.value > maxScroll) {
scrollTo(scrollViewRef, 0, maxScroll, false);
}
};
useKeyboardHandler(
{
onStart: (e) => {
"worklet";
if (e.height > 0) {
// eslint-disable-next-line react-compiler/react-compiler
targetKeyboardHeight.value = e.height;
currentHeight.value = e.height;
closing.value = false;
} else {
closing.value = true;
}
const effective = getEffectiveHeight(
e.height,
targetKeyboardHeight.value,
offset,
);
const atEnd = isScrollAtEnd(
scroll.value,
layout.value.height,
size.value.height,
inverted,
);
// Scale minimum padding absorption by how much of it is visible.
// Fully visible → full absorption; fully off-screen → no absorption.
const visibleFraction = getVisibleMinimumPaddingFraction(
scroll.value,
layout.value.height,
size.value.height,
blankSpace.value,
inverted,
);
const minimumPaddingAbsorbed =
visibleFraction >= 1
? getMinimumPaddingAbsorbed(
blankSpace.value,
extraContentPadding.value,
)
: 0;
const scrollEffective = getScrollEffective(
effective,
minimumPaddingAbsorbed,
);
if (freeze.value) {
return;
}
if (inverted && e.duration === -1) {
// Android inverted: skip post-interactive snap-back events
// (duration === -1 means the keyboard is re-establishing its
// position after an interactive gesture, not a real animation)
return;
} else if (e.height > 0) {
// Android: keyboard opening — set padding + capture scroll position
minimumPaddingFractionOnOpen.value = visibleFraction >= 1 ? 1 : 0;
padding.value = effective;
offsetBeforeScroll.value = scroll.value;
if (!inverted && keyboardLiftBehavior === "whenAtEnd" && !atEnd) {
// Sentinel: don't scroll in onMove (non-inverted only)
offsetBeforeScroll.value = -1;
} else if (!inverted && scrollEffective === 0) {
// blankSpace fully absorbs the keyboard — prevent scroll
offsetBeforeScroll.value = -1;
} else if (inverted && scrollEffective === 0) {
// blankSpace fully absorbs the keyboard — guard for inverted
offsetBeforeScroll.value = scroll.value;
}
} else {
// Android: keyboard closing — re-capture scroll position
if (inverted) {
offsetBeforeScroll.value = scroll.value;
} else {
// Preserve "whenAtEnd" sentinel: if open didn't shift, close shouldn't either
if (offsetBeforeScroll.value !== -1) {
// Use the actual displacement recorded at end of open animation
// (not the theoretical value) so close is symmetric with open
offsetBeforeScroll.value = scroll.value - actualOpenShift.value;
}
}
}
},
onMove: (e) => {
"worklet";
currentHeight.value = e.height;
if (inverted) {
// Skip post-interactive snap-back (duration === -1)
if (e.duration === -1) {
return;
}
const effective = getEffectiveHeight(
e.height,
targetKeyboardHeight.value,
offset,
);
if (freeze.value) {
return;
}
const minimumPaddingAbsorbed =
getMinimumPaddingAbsorbed(
blankSpace.value,
extraContentPadding.value,
) * minimumPaddingFractionOnOpen.value;
const scrollEffective = getScrollEffective(
effective,
minimumPaddingAbsorbed,
);
const actualTotalPadding = Math.max(
blankSpace.value,
effective + extraContentPadding.value,
);
// Check if we should shift content based on position when keyboard started
const wasAtEnd = isScrollAtEnd(
offsetBeforeScroll.value,
layout.value.height,
size.value.height,
inverted,
);
// "never" at end: scroll along when keyboard closes to avoid jump
if (
keyboardLiftBehavior === "never" &&
wasAtEnd &&
effective < padding.value
) {
padding.value = effective;
if (scrollEffective === 0 && minimumPaddingAbsorbed > 0) {
return;
}
scrollTo(scrollViewRef, 0, 0, false);
return;
}
if (!shouldShiftContent(keyboardLiftBehavior, wasAtEnd)) {
// Closing, not shifting: reduce padding to avoid gap
if (closing.value && effective < padding.value) {
padding.value = effective;
clampScrollIfNeeded(effective, actualTotalPadding);
}
return;
}
// When blankSpace fully absorbs the keyboard, skip scroll
if (scrollEffective === 0 && minimumPaddingAbsorbed > 0) {
return;
}
// Persistent: don't let shift decrease
if (keyboardLiftBehavior === "persistent") {
const currentShift =
offsetBeforeScroll.value + padding.value - scroll.value;
if (effective < currentShift) {
// When at end, allow scrolling back (snap to end + reduce padding)
if (wasAtEnd) {
padding.value = effective;
scrollTo(scrollViewRef, 0, 0, false);
} else if (closing.value) {
// Not at end: reduce padding to avoid gap
padding.value = effective;
clampScrollIfNeeded(effective, actualTotalPadding);
}
return;
}
}
const target =
offsetBeforeScroll.value + padding.value - scrollEffective;
scrollTo(scrollViewRef, 0, target, false);
} else {
const effective = getEffectiveHeight(
e.height,
targetKeyboardHeight.value,
offset,
);
if (freeze.value) {
return;
}
const minimumPaddingAbsorbed =
getMinimumPaddingAbsorbed(
blankSpace.value,
extraContentPadding.value,
) * minimumPaddingFractionOnOpen.value;
const scrollEffective = getScrollEffective(
effective,
minimumPaddingAbsorbed,
);
const actualTotalPadding = Math.max(
blankSpace.value,
effective + extraContentPadding.value,
);
// "never" closing: clamp scroll to valid range as inset shrinks
if (
keyboardLiftBehavior === "never" &&
closing.value &&
effective < padding.value
) {
clampScrollIfNeeded(effective, actualTotalPadding);
return;
}
if (!shouldShiftContent(keyboardLiftBehavior, true)) {
return;
}
// "whenAtEnd" sentinel check (also used for blankSpace full absorption)
if (offsetBeforeScroll.value === -1) {
if (closing.value) {
// Keyboard didn't shift on open; ensure valid position on close
clampScrollIfNeeded(effective, actualTotalPadding);
}
return;
}
// "persistent" closing: maintain position, clamped to valid range
if (keyboardLiftBehavior === "persistent" && closing.value) {
const keepAt = offsetBeforeScroll.value + padding.value;
const maxScroll = Math.max(
size.value.height - layout.value.height + actualTotalPadding,
0,
);
scrollTo(scrollViewRef, 0, Math.min(keepAt, maxScroll), false);
return;
}
const target = clampedScrollTarget(
offsetBeforeScroll.value,
scrollEffective,
size.value.height,
layout.value.height,
actualTotalPadding,
);
scrollTo(scrollViewRef, 0, target, false);
// Track actual (clamped) displacement during open for symmetric close
if (!closing.value) {
actualOpenShift.value = target - offsetBeforeScroll.value;
}
}
},
onEnd: (e) => {
"worklet";
currentHeight.value = e.height;
const effective = getEffectiveHeight(
e.height,
targetKeyboardHeight.value,
offset,
);
if (freeze.value) {
return;
}
padding.value = effective;
// Record actual scroll displacement so close can be symmetric
if (effective > 0 && offsetBeforeScroll.value !== -1) {
actualOpenShift.value = scroll.value - offsetBeforeScroll.value;
}
},
},
[inverted, keyboardLiftBehavior, offset],
);
useAnimatedReaction(
() => freeze.value,
(isFrozen, wasFrozen) => {
if (!isFrozen && wasFrozen === true) {
padding.value = getEffectiveHeight(
currentHeight.value,
targetKeyboardHeight.value,
offset,
);
}
},
[offset],
);
return {
padding,
currentHeight,
contentOffsetY: undefined,
scroll,
layout,
size,
onLayout,
onContentSizeChange,
};
}
export { useChatKeyboard };