Skip to content

Commit e957823

Browse files
authored
Change Flatlist from RN to gesture handler - 51 (#983)
* update to using Flatlist from gesture-handler * update types
1 parent 1159c30 commit e957823

File tree

6 files changed

+32
-13
lines changed

6 files changed

+32
-13
lines changed

packages/core/src/components/FlatList.tsx

100644100755
+11-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
import React from "react";
2-
import { FlatList as FlatListstComponent } from "react-native";
2+
import {
3+
FlatList as FlatListComponent,
4+
NativeViewGestureHandlerProps,
5+
} from "react-native-gesture-handler";
36
import type { FlatListProps } from "react-native";
47

5-
const FlatList = React.forwardRef<FlatListstComponent, FlatListProps<any>>(
8+
const FlatList = React.forwardRef<
9+
FlatListComponent,
10+
FlatListProps<any> & NativeViewGestureHandlerProps
11+
>(
612
<T extends any>(
7-
{ numColumns, ...rest }: FlatListProps<T>,
8-
ref: React.Ref<FlatListstComponent>
13+
{ numColumns, ...rest }: FlatListProps<T> & NativeViewGestureHandlerProps,
14+
ref: React.Ref<FlatListComponent>
915
) => {
1016
return (
11-
<FlatListstComponent
17+
<FlatListComponent
1218
key={numColumns} // Changing numColumns requires re-rendering, setting it as the key ensures list is re-rendered when it changes
1319
numColumns={numColumns}
1420
ref={ref}

packages/core/src/components/SectionList/SectionList.tsx

100644100755
+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import React from "react";
22
import { FlashListProps, FlashList } from "@shopify/flash-list";
3-
import { FlatListProps, FlatList as FlatListComponent } from "react-native";
3+
import { FlatListProps } from "react-native";
4+
import {
5+
FlatList as FlatListComponent,
6+
NativeViewGestureHandlerProps,
7+
} from "react-native-gesture-handler";
48
import SectionHeader, { DefaultSectionHeader } from "./SectionHeader";
59
import { flattenReactFragments } from "../../utilities";
610
import FlatList from "../FlatList";
@@ -192,7 +196,8 @@ const SectionList = React.forwardRef(
192196
<FlatList
193197
ref={ref as React.Ref<FlatListComponent>}
194198
stickyHeaderIndices={sectionHeaderIndicies}
195-
{...(rest as FlatListProps<SectionListItem<T>>)}
199+
{...(rest as FlatListProps<SectionListItem<T>> &
200+
NativeViewGestureHandlerProps)}
196201
data={dataWithSections}
197202
renderItem={renderItem}
198203
keyExtractor={keyExtractor}

packages/core/src/components/SimpleStyleScrollables/SimpleStyleFlatList.tsx

100644100755
+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import React from "react";
22
import FlatList from "../FlatList";
3-
import { FlatList as FlatListComponent } from "react-native";
3+
import {
4+
FlatList as FlatListComponent,
5+
NativeViewGestureHandlerProps,
6+
} from "react-native-gesture-handler";
47
import type { FlatListProps } from "react-native";
58
import useSplitContentContainerStyles from "./useSplitContentContainerStyles";
69

@@ -14,7 +17,8 @@ const SimpleStyleFlatList = React.forwardRef(
1417
style: styleProp,
1518
data,
1619
...rest
17-
}: Omit<FlatListProps<T>, "contentContainerStyle">,
20+
}: Omit<FlatListProps<T>, "contentContainerStyle"> &
21+
NativeViewGestureHandlerProps,
1822
ref: React.Ref<FlatListComponent>
1923
) => {
2024
const { style, contentContainerStyle } =

packages/core/src/components/SimpleStyleScrollables/SimpleStyleSectionList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
FlashListSectionListProps,
66
} from "../SectionList";
77
import useSplitContentContainerStyles from "./useSplitContentContainerStyles";
8-
import { FlatList } from "react-native";
8+
import { FlatList } from "react-native-gesture-handler";
99
import { FlashList } from "@shopify/flash-list";
1010

1111
/**

packages/core/src/components/SimpleStyleScrollables/SimpleStyleSwipeableList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
FlatListSwipeableListProps,
66
} from "../SwipeableItem";
77
import useSplitContentContainerStyles from "./useSplitContentContainerStyles";
8-
import { FlatList } from "react-native";
8+
import { FlatList } from "react-native-gesture-handler";
99
import { FlashList } from "@shopify/flash-list";
1010

1111
/**

packages/core/src/components/SwipeableItem/SwipeableList.tsx

100644100755
+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import React from "react";
22
import { FlashListProps, FlashList } from "@shopify/flash-list";
3-
import { FlatListProps, FlatList as FlatListComponent } from "react-native";
3+
import { FlatListProps } from "react-native";
4+
import {
5+
FlatList as FlatListComponent,
6+
NativeViewGestureHandlerProps,
7+
} from "react-native-gesture-handler";
48
import FlatList from "../FlatList";
59

610
type ListComponentType = "FlatList" | "FlashList";
@@ -54,7 +58,7 @@ const SwipeableList = React.forwardRef(
5458
return (
5559
<FlatList
5660
ref={ref as React.Ref<FlatListComponent>}
57-
{...(rest as FlatListProps<T>)}
61+
{...(rest as FlatListProps<T> & NativeViewGestureHandlerProps)}
5862
/>
5963
);
6064
case "FlashList":

0 commit comments

Comments
 (0)