Skip to content

Commit e30cc63

Browse files
authored
[Web] Make findNodeHandle correctly handle FlatList in old API (#3361)
## Description This PR makes `findNodeHandle` correctly recognize `FlatList` DOM element when using old API. Fixes #3358 >[!NOTE] > New API doesn't require this change as `FlatList` will be wrapped inside `div` with `display: contents;` ## Test plan <details> <summary>Tested on the following code:</summary> ```tsx import React from 'react'; import { Text, View, StyleSheet } from 'react-native'; import { FlatList, PanGestureHandler, GestureHandlerRootView, } from 'react-native-gesture-handler'; interface Todo { id: number; title: string; completed: boolean; } interface TodoListProps {} const TODOS: Todo[] = [ { id: 1, title: 'Todo 1', completed: false }, { id: 2, title: 'Todo 2', completed: true }, { id: 3, title: 'Todo 3', completed: false }, { id: 4, title: 'Todo 4', completed: false }, { id: 5, title: 'Todo 5', completed: true }, { id: 6, title: 'Todo 6', completed: false }, { id: 7, title: 'Todo 7', completed: false }, { id: 8, title: 'Todo 8', completed: true }, { id: 9, title: 'Todo 9', completed: false }, { id: 10, title: 'Todo 10', completed: false }, { id: 11, title: 'Todo 11', completed: true }, { id: 12, title: 'Todo 12', completed: false }, { id: 13, title: 'Todo 13', completed: false }, { id: 14, title: 'Todo 14', completed: true }, { id: 15, title: 'Todo 15', completed: false }, ]; const TodoList: React.FC<TodoListProps> = () => { // renderItem function to render each item const renderItem = ({ item }: { item: Todo }) => ( <View style={styles.item}> <Text style={styles.title}> {item.title} {item.completed ? '(completed)' : ''} </Text> </View> ); return ( <GestureHandlerRootView> <PanGestureHandler onHandlerStateChange={console.log} onGestureEvent={console.log}> <FlatList data={TODOS} renderItem={renderItem} keyExtractor={(item) => item.id.toString()} /> </PanGestureHandler> </GestureHandlerRootView> ); }; const styles = StyleSheet.create({ item: { backgroundColor: '#f9c2ff', padding: 20, marginVertical: 8, marginHorizontal: 16, }, title: { fontSize: 32, }, }); export default TodoList; ``` </details>
1 parent bd30677 commit e30cc63

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/findNodeHandle.web.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
import { FlatList } from 'react-native';
12
import type { GestureHandlerRef, SVGRef } from './web/interfaces';
23
import { isRNSVGElement } from './web/utils';
34

45
export default function findNodeHandle(
56
viewRef: GestureHandlerRef | SVGRef | HTMLElement | SVGElement
67
): HTMLElement | SVGElement | number {
8+
// TODO: Remove this once we remove old API.
9+
if (viewRef instanceof FlatList) {
10+
// @ts-ignore This is the only way to get the scroll ref from FlatList.
11+
return viewRef._listRef._scrollRef.firstChild;
12+
}
713
// Old API assumes that child handler is HTMLElement.
814
// However, if we nest handlers, we will get ref to another handler.
915
// In that case, we want to recursively call findNodeHandle with new handler viewTag (which can also be ref to another handler).

0 commit comments

Comments
 (0)