react-native-reorderable-list 0.13.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/README.md +69 -9
  2. package/lib/commonjs/components/NestedReorderableList.js +2 -0
  3. package/lib/commonjs/components/NestedReorderableList.js.map +1 -1
  4. package/lib/commonjs/components/ReorderableList.js +4 -3
  5. package/lib/commonjs/components/ReorderableList.js.map +1 -1
  6. package/lib/commonjs/components/{ReorderableListCore/useReorderableListCore.js → ReorderableListCore.js} +187 -96
  7. package/lib/commonjs/components/ReorderableListCore.js.map +1 -0
  8. package/lib/commonjs/components/ScrollViewContainer.js +26 -7
  9. package/lib/commonjs/components/ScrollViewContainer.js.map +1 -1
  10. package/lib/commonjs/components/{ReorderableListCore/animationDefaults.js → constants.js} +26 -2
  11. package/lib/commonjs/components/constants.js.map +1 -0
  12. package/lib/commonjs/contexts/ScrollViewContainerContext.js.map +1 -1
  13. package/lib/module/components/NestedReorderableList.js +2 -0
  14. package/lib/module/components/NestedReorderableList.js.map +1 -1
  15. package/lib/module/components/ReorderableList.js +4 -3
  16. package/lib/module/components/ReorderableList.js.map +1 -1
  17. package/lib/module/components/{ReorderableListCore/useReorderableListCore.js → ReorderableListCore.js} +188 -95
  18. package/lib/module/components/ReorderableListCore.js.map +1 -0
  19. package/lib/module/components/ScrollViewContainer.js +28 -8
  20. package/lib/module/components/ScrollViewContainer.js.map +1 -1
  21. package/lib/module/components/constants.js +52 -0
  22. package/lib/module/components/constants.js.map +1 -0
  23. package/lib/module/contexts/ScrollViewContainerContext.js.map +1 -1
  24. package/lib/typescript/components/NestedReorderableList.d.ts.map +1 -1
  25. package/lib/typescript/components/ReorderableList.d.ts.map +1 -1
  26. package/lib/typescript/components/{ReorderableListCore/ReorderableListCore.d.ts → ReorderableListCore.d.ts} +2 -1
  27. package/lib/typescript/components/ReorderableListCore.d.ts.map +1 -0
  28. package/lib/typescript/components/ScrollViewContainer.d.ts +2 -1
  29. package/lib/typescript/components/ScrollViewContainer.d.ts.map +1 -1
  30. package/lib/typescript/components/{ReorderableListCore/animationDefaults.d.ts → constants.d.ts} +6 -1
  31. package/lib/typescript/components/constants.d.ts.map +1 -0
  32. package/lib/typescript/contexts/ScrollViewContainerContext.d.ts +1 -0
  33. package/lib/typescript/contexts/ScrollViewContainerContext.d.ts.map +1 -1
  34. package/lib/typescript/types/props.d.ts +9 -0
  35. package/lib/typescript/types/props.d.ts.map +1 -1
  36. package/package.json +1 -1
  37. package/src/components/NestedReorderableList.tsx +2 -0
  38. package/src/components/ReorderableList.tsx +3 -2
  39. package/src/components/{ReorderableListCore/useReorderableListCore.ts → ReorderableListCore.tsx} +321 -184
  40. package/src/components/ScrollViewContainer.tsx +44 -13
  41. package/src/components/{ReorderableListCore/animationDefaults.ts → constants.ts} +34 -0
  42. package/src/contexts/ScrollViewContainerContext.ts +1 -0
  43. package/src/types/props.ts +9 -0
  44. package/lib/commonjs/components/ReorderableListCore/ReorderableListCore.js +0 -121
  45. package/lib/commonjs/components/ReorderableListCore/ReorderableListCore.js.map +0 -1
  46. package/lib/commonjs/components/ReorderableListCore/animationDefaults.js.map +0 -1
  47. package/lib/commonjs/components/ReorderableListCore/autoscrollConfig.js +0 -31
  48. package/lib/commonjs/components/ReorderableListCore/autoscrollConfig.js.map +0 -1
  49. package/lib/commonjs/components/ReorderableListCore/index.js +0 -17
  50. package/lib/commonjs/components/ReorderableListCore/index.js.map +0 -1
  51. package/lib/commonjs/components/ReorderableListCore/useReorderableListCore.js.map +0 -1
  52. package/lib/module/components/ReorderableListCore/ReorderableListCore.js +0 -114
  53. package/lib/module/components/ReorderableListCore/ReorderableListCore.js.map +0 -1
  54. package/lib/module/components/ReorderableListCore/animationDefaults.js +0 -28
  55. package/lib/module/components/ReorderableListCore/animationDefaults.js.map +0 -1
  56. package/lib/module/components/ReorderableListCore/autoscrollConfig.js +0 -25
  57. package/lib/module/components/ReorderableListCore/autoscrollConfig.js.map +0 -1
  58. package/lib/module/components/ReorderableListCore/index.js +0 -2
  59. package/lib/module/components/ReorderableListCore/index.js.map +0 -1
  60. package/lib/module/components/ReorderableListCore/useReorderableListCore.js.map +0 -1
  61. package/lib/typescript/components/ReorderableListCore/ReorderableListCore.d.ts.map +0 -1
  62. package/lib/typescript/components/ReorderableListCore/animationDefaults.d.ts.map +0 -1
  63. package/lib/typescript/components/ReorderableListCore/autoscrollConfig.d.ts +0 -6
  64. package/lib/typescript/components/ReorderableListCore/autoscrollConfig.d.ts.map +0 -1
  65. package/lib/typescript/components/ReorderableListCore/index.d.ts +0 -2
  66. package/lib/typescript/components/ReorderableListCore/index.d.ts.map +0 -1
  67. package/lib/typescript/components/ReorderableListCore/useReorderableListCore.d.ts +0 -183
  68. package/lib/typescript/components/ReorderableListCore/useReorderableListCore.d.ts.map +0 -1
  69. package/src/components/ReorderableListCore/ReorderableListCore.tsx +0 -175
  70. package/src/components/ReorderableListCore/autoscrollConfig.ts +0 -31
  71. package/src/components/ReorderableListCore/index.ts +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","useCallback","useEffect","useMemo","useState","unstable_batchedUpdates","Gesture","State","Easing","runOnJS","runOnUI","scrollTo","useAnimatedReaction","useAnimatedRef","useAnimatedScrollHandler","useSharedValue","withDelay","withTiming","OPACITY_ANIMATION_CONFIG_DEFAULT","SCALE_ANIMATION_CONFIG_DEFAULT","AUTOSCROLL_CONFIG","ReorderableListState","version","split","hasAutomaticBatching","length","parseInt","useReorderableListCore","ref","autoscrollThreshold","autoscrollThresholdOffset","autoscrollSpeedScale","autoscrollDelay","autoscrollActivationDelta","animationDuration","onReorder","onDragStart","onDragEnd","onLayout","onIndexChange","scrollViewContainerRef","scrollViewHeightY","scrollViewScrollOffsetY","scrollViewScrollEnabled","initialScrollEnabled","initialScrollViewScrollEnabled","nestedScrollable","cellAnimations","shouldUpdateActiveItem","panActivateAfterLongPress","panEnabled","flatListRef","activeIndex","setActiveIndex","scrollEnabled","gestureState","UNDETERMINED","currentY","currentTranslationY","currentItemDragCenterY","startItemDragCenterY","flatListScrollOffsetY","flatListHeightY","nestedFlatListPositionY","dragScrollTranslationY","dragInitialScrollOffsetY","scrollViewDragScrollTranslationY","scrollViewDragInitialScrollOffsetY","draggedHeight","itemOffset","itemHeight","autoscrollTrigger","lastAutoscrollTrigger","dragY","currentIndex","draggedIndex","state","IDLE","dragEndHandlers","startY","duration","scaleDefault","opacityDefault","dragDirection","lastDragDirectionPivot","autoscrollDelta","value","listContextValue","transform","scale","opacity","setDragDirection","e","direction","velocityY","absoluteY","Math","abs","setCurrentItemDragCenterY","itemCenter","itemY","translationY","panGestureHandler","Pan","onBegin","y","onUpdate","DRAGGED","RELEASED","onEnd","onFinalize","panGestureHandlerWithOptions","activateAfterLongPress","enabled","gestureHandler","Simultaneous","Native","setScrollEnabled","_flatListRef$current","current","setNativeProps","_scrollViewContainerR","resetSharedValues","resetSharedValuesAfterAnimations","setTimeout","reorder","fromIndex","toIndex","updateState","from","to","recomputeLayout","itemDirection","index1","index2","newOffset1","newHeight1","newOffset2","newHeight2","computeCurrentIndex","relativeDragCenterY","currentOffset","currentHeight","currentCenter","max","possibleIndex","min","possibleOffset","possibleCenter","distanceFromCurrent","distanceFromPossible","setCurrentIndex","newIndex","index","runDefaultDragAnimations","type","scaleConfig","toValue","opacityConfig","ACTIVE","BEGAN","AUTOSCROLL","handlers","Array","isArray","forEach","fn","currentItemOffset","currentItemHeight","draggedItemOffset","draggedItemHeight","newTopPosition","easing","out","ease","calculateHiddenArea","top","bottom","calculateThresholdArea","hiddenArea","offsetTop","offsetBottom","threshold","visibleHeight","area","calculateThresholdAreaParent","shouldScrollParent","thresholdAreaParent","scrollDirection","thresholdArea","autoscrollIncrement","increment","scrollOffset","listRef","handleScroll","contentOffset","startDrag","handleFlatListLayout","nativeEvent","layout","height","handleRef"],"sourceRoot":"../../../../src","sources":["components/ReorderableListCore/useReorderableListCore.ts"],"mappings":"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","ignoreList":[]}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReorderableListCore.d.ts","sourceRoot":"","sources":["../../../../src/components/ReorderableListCore/ReorderableListCore.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAClD,OAAO,EAEL,QAAQ,EAGR,UAAU,EACX,MAAM,cAAc,CAAC;AAEtB,OAAO,EAGL,aAAa,EACd,MAAM,8BAA8B,CAAC;AACtC,OAAiB,EACf,WAAW,EAEZ,MAAM,yBAAyB,CAAC;AAKjC,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,aAAa,CAAC;AAStD,UAAU,wBAAwB,CAAC,CAAC,CAAE,SAAQ,oBAAoB,CAAC,CAAC,CAAC;IAEnE,sBAAsB,EAAE,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC;IAChE,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;IACnD,uBAAuB,EAAE,WAAW,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;IACzD,uBAAuB,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC;IAC1D,kBAAkB,EAAE,aAAa,GAAG,SAAS,CAAC;IAC9C,8BAA8B,EAAE,OAAO,GAAG,SAAS,CAAC;IACpD,UAAU,EAAE,OAAO,GAAG,SAAS,CAAC;IAChC,aAAa,EAAE,OAAO,GAAG,SAAS,CAAC;CACpC;AA6HD,QAAA,MAAM,2BAA2B;;MAM5B,MAAM,YAAY,CAAC;AAExB,OAAO,EAAC,2BAA2B,IAAI,mBAAmB,EAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"animationDefaults.d.ts","sourceRoot":"","sources":["../../../../src/components/ReorderableListCore/animationDefaults.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,gBAAgB,EAAC,MAAM,yBAAyB,CAAC;AAKjE,UAAU,eAAe;IACvB,KAAK,EAAE,gBAAgB,GAAG;QAAC,OAAO,EAAE,MAAM,CAAA;KAAC,CAAC;IAC5C,GAAG,EAAE,gBAAgB,GAAG;QAAC,OAAO,EAAE,MAAM,CAAA;KAAC,CAAC;CAC3C;AAED,eAAO,MAAM,8BAA8B,EAAE,eAW5C,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,eAW9C,CAAC"}
@@ -1,6 +0,0 @@
1
- export declare const IS_FABRIC: boolean;
2
- export declare const AUTOSCROLL_CONFIG: {
3
- delay: number;
4
- increment: number;
5
- };
6
- //# sourceMappingURL=autoscrollConfig.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"autoscrollConfig.d.ts","sourceRoot":"","sources":["../../../../src/components/ReorderableListCore/autoscrollConfig.ts"],"names":[],"mappings":"AAiBA,eAAO,MAAM,SAAS,SACqD,CAAC;AAE5E,eAAO,MAAM,iBAAiB;;;CAU5B,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from './ReorderableListCore';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ReorderableListCore/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
@@ -1,183 +0,0 @@
1
- import React from 'react';
2
- import { FlatList, LayoutChangeEvent, ScrollView } from 'react-native';
3
- import { SharedValue } from 'react-native-reanimated';
4
- import { ReorderableListCellAnimations, ReorderableListDragEndEvent, ReorderableListDragStartEvent, ReorderableListIndexChangeEvent } from '../../types';
5
- import type { ReorderableListReorderEvent } from '../../types';
6
- interface UseReorderableListCoreArgs<T> {
7
- ref: React.ForwardedRef<FlatList<T>>;
8
- autoscrollThreshold: number;
9
- autoscrollThresholdOffset: {
10
- top?: number;
11
- bottom?: number;
12
- } | undefined;
13
- autoscrollSpeedScale: number;
14
- autoscrollDelay: number;
15
- autoscrollActivationDelta: number;
16
- animationDuration: number;
17
- onReorder: (event: ReorderableListReorderEvent) => void;
18
- onDragStart?: (event: ReorderableListDragStartEvent) => void;
19
- onDragEnd?: (event: ReorderableListDragEndEvent) => void;
20
- onIndexChange?: (event: ReorderableListIndexChangeEvent) => void;
21
- onLayout?: (event: LayoutChangeEvent) => void;
22
- scrollViewContainerRef: React.RefObject<ScrollView> | undefined;
23
- scrollViewHeightY: SharedValue<number> | undefined;
24
- scrollViewScrollOffsetY: SharedValue<number> | undefined;
25
- scrollViewScrollEnabled: SharedValue<boolean> | undefined;
26
- initialScrollEnabled: boolean | undefined;
27
- initialScrollViewScrollEnabled: boolean | undefined;
28
- nestedScrollable: boolean | undefined;
29
- cellAnimations: ReorderableListCellAnimations | undefined;
30
- shouldUpdateActiveItem: boolean | undefined;
31
- panEnabled: boolean;
32
- panActivateAfterLongPress: number | undefined;
33
- }
34
- export declare const useReorderableListCore: <T>({ ref, autoscrollThreshold, autoscrollThresholdOffset, autoscrollSpeedScale, autoscrollDelay, autoscrollActivationDelta, animationDuration, onReorder, onDragStart, onDragEnd, onLayout, onIndexChange, scrollViewContainerRef, scrollViewHeightY, scrollViewScrollOffsetY, scrollViewScrollEnabled, initialScrollEnabled, initialScrollViewScrollEnabled, nestedScrollable, cellAnimations, shouldUpdateActiveItem, panActivateAfterLongPress, panEnabled, }: UseReorderableListCoreArgs<T>) => {
35
- gestureHandler: import("react-native-gesture-handler/lib/typescript/handlers/gestures/gestureComposition").SimultaneousGesture;
36
- handleScroll: import("react-native-reanimated").ScrollHandlerProcessed<Record<string, unknown>>;
37
- handleFlatListLayout: (e: LayoutChangeEvent) => void;
38
- handleRef: (value: FlatList<T>) => void;
39
- startDrag: (index: number) => void;
40
- listContextValue: {
41
- draggedHeight: SharedValue<number>;
42
- currentIndex: SharedValue<number>;
43
- draggedIndex: SharedValue<number>;
44
- dragEndHandlers: SharedValue<((from: number, to: number) => void)[][]>;
45
- activeIndex: number;
46
- cellAnimations: {
47
- transform: readonly import("../../types").MaximumOneOf<import("../../types").SharedValueOrType<import("../../types").Transforms>>[] | undefined;
48
- opacity: number | SharedValue<number> | undefined;
49
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | SharedValue<"box-none" | "none" | "box-only" | "auto" | undefined> | undefined;
50
- filter?: string | readonly import("react-native").FilterFunction[] | SharedValue<string | readonly import("react-native").FilterFunction[] | undefined> | undefined;
51
- backfaceVisibility?: "visible" | "hidden" | SharedValue<"visible" | "hidden" | undefined> | undefined;
52
- backgroundColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
53
- borderBlockColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
54
- borderBlockEndColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
55
- borderBlockStartColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
56
- borderBottomColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
57
- borderBottomEndRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
58
- borderBottomLeftRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
59
- borderBottomRightRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
60
- borderBottomStartRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
61
- borderColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
62
- borderCurve?: "circular" | "continuous" | SharedValue<"circular" | "continuous" | undefined> | undefined;
63
- borderEndColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
64
- borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
65
- borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
66
- borderLeftColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
67
- borderRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
68
- borderRightColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
69
- borderStartColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
70
- borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
71
- borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
72
- borderStyle?: "solid" | "dotted" | "dashed" | SharedValue<"solid" | "dotted" | "dashed" | undefined> | undefined;
73
- borderTopColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
74
- borderTopEndRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
75
- borderTopLeftRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
76
- borderTopRightRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
77
- borderTopStartRadius?: string | import("react-native").AnimatableNumericValue | SharedValue<string | import("react-native").AnimatableNumericValue | undefined> | undefined;
78
- elevation?: number | SharedValue<number | undefined> | undefined;
79
- isolation?: "auto" | "isolate" | SharedValue<"auto" | "isolate" | undefined> | undefined;
80
- cursor?: import("react-native").CursorValue | SharedValue<import("react-native").CursorValue | undefined> | undefined;
81
- boxShadow?: string | readonly import("react-native").BoxShadowValue[] | SharedValue<string | readonly import("react-native").BoxShadowValue[] | undefined> | undefined;
82
- alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly" | SharedValue<"center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined> | undefined;
83
- alignItems?: import("react-native").FlexAlignType | SharedValue<import("react-native").FlexAlignType | undefined> | undefined;
84
- alignSelf?: "auto" | import("react-native").FlexAlignType | SharedValue<"auto" | import("react-native").FlexAlignType | undefined> | undefined;
85
- aspectRatio?: string | number | SharedValue<string | number | undefined> | undefined;
86
- borderBottomWidth?: number | SharedValue<number | undefined> | undefined;
87
- borderEndWidth?: number | SharedValue<number | undefined> | undefined;
88
- borderLeftWidth?: number | SharedValue<number | undefined> | undefined;
89
- borderRightWidth?: number | SharedValue<number | undefined> | undefined;
90
- borderStartWidth?: number | SharedValue<number | undefined> | undefined;
91
- borderTopWidth?: number | SharedValue<number | undefined> | undefined;
92
- borderWidth?: number | SharedValue<number | undefined> | undefined;
93
- bottom?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
94
- display?: "flex" | "none" | SharedValue<"flex" | "none" | undefined> | undefined;
95
- end?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
96
- flex?: number | SharedValue<number | undefined> | undefined;
97
- flexBasis?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
98
- flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | SharedValue<"row" | "column" | "row-reverse" | "column-reverse" | undefined> | undefined;
99
- rowGap?: string | number | SharedValue<string | number | undefined> | undefined;
100
- gap?: string | number | SharedValue<string | number | undefined> | undefined;
101
- columnGap?: string | number | SharedValue<string | number | undefined> | undefined;
102
- flexGrow?: number | SharedValue<number | undefined> | undefined;
103
- flexShrink?: number | SharedValue<number | undefined> | undefined;
104
- flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | SharedValue<"wrap" | "nowrap" | "wrap-reverse" | undefined> | undefined;
105
- height?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
106
- justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | SharedValue<"center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined> | undefined;
107
- left?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
108
- margin?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
109
- marginBottom?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
110
- marginEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
111
- marginHorizontal?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
112
- marginLeft?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
113
- marginRight?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
114
- marginStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
115
- marginTop?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
116
- marginVertical?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
117
- maxHeight?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
118
- maxWidth?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
119
- minHeight?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
120
- minWidth?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
121
- overflow?: "visible" | "hidden" | "scroll" | SharedValue<"visible" | "hidden" | "scroll" | undefined> | undefined;
122
- padding?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
123
- paddingBottom?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
124
- paddingEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
125
- paddingHorizontal?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
126
- paddingLeft?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
127
- paddingRight?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
128
- paddingStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
129
- paddingTop?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
130
- paddingVertical?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
131
- position?: "absolute" | "relative" | "static" | SharedValue<"absolute" | "relative" | "static" | undefined> | undefined;
132
- right?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
133
- start?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
134
- top?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
135
- width?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
136
- zIndex?: number | SharedValue<number | undefined> | undefined;
137
- direction?: "inherit" | "ltr" | "rtl" | SharedValue<"inherit" | "ltr" | "rtl" | undefined> | undefined;
138
- inset?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
139
- insetBlock?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
140
- insetBlockEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
141
- insetBlockStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
142
- insetInline?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
143
- insetInlineEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
144
- insetInlineStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
145
- marginBlock?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
146
- marginBlockEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
147
- marginBlockStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
148
- marginInline?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
149
- marginInlineEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
150
- marginInlineStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
151
- paddingBlock?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
152
- paddingBlockEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
153
- paddingBlockStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
154
- paddingInline?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
155
- paddingInlineEnd?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
156
- paddingInlineStart?: import("react-native").DimensionValue | SharedValue<import("react-native").DimensionValue | undefined> | undefined;
157
- shadowColor?: import("react-native").ColorValue | SharedValue<import("react-native").ColorValue | undefined> | undefined;
158
- shadowOffset?: Readonly<{
159
- width: number;
160
- height: number;
161
- }> | SharedValue<Readonly<{
162
- width: number;
163
- height: number;
164
- }> | undefined> | undefined;
165
- shadowOpacity?: import("react-native").AnimatableNumericValue | SharedValue<import("react-native").AnimatableNumericValue | undefined> | undefined;
166
- shadowRadius?: number | SharedValue<number | undefined> | undefined;
167
- transformOrigin?: string | (string | number)[] | SharedValue<string | (string | number)[] | undefined> | undefined;
168
- transformMatrix?: number[] | SharedValue<number[] | undefined> | undefined;
169
- rotation?: import("react-native").AnimatableNumericValue | SharedValue<import("react-native").AnimatableNumericValue | undefined> | undefined;
170
- scaleX?: import("react-native").AnimatableNumericValue | SharedValue<import("react-native").AnimatableNumericValue | undefined> | undefined;
171
- scaleY?: import("react-native").AnimatableNumericValue | SharedValue<import("react-native").AnimatableNumericValue | undefined> | undefined;
172
- translateX?: import("react-native").AnimatableNumericValue | SharedValue<import("react-native").AnimatableNumericValue | undefined> | undefined;
173
- translateY?: import("react-native").AnimatableNumericValue | SharedValue<import("react-native").AnimatableNumericValue | undefined> | undefined;
174
- };
175
- };
176
- itemOffset: SharedValue<number[]>;
177
- itemHeight: SharedValue<number[]>;
178
- draggedIndex: SharedValue<number>;
179
- dragY: SharedValue<number>;
180
- duration: SharedValue<number>;
181
- };
182
- export {};
183
- //# sourceMappingURL=useReorderableListCore.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useReorderableListCore.d.ts","sourceRoot":"","sources":["../../../../src/components/ReorderableListCore/useReorderableListCore.ts"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AACvE,OAAO,EACL,QAAQ,EACR,iBAAiB,EACjB,UAAU,EAEX,MAAM,cAAc,CAAC;AAQtB,OAAiB,EAGf,WAAW,EAUZ,MAAM,yBAAyB,CAAC;AAOjC,OAAO,EACL,6BAA6B,EAC7B,2BAA2B,EAC3B,6BAA6B,EAC7B,+BAA+B,EAEhC,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EAAC,2BAA2B,EAAC,MAAM,aAAa,CAAC;AAO7D,UAAU,0BAA0B,CAAC,CAAC;IACpC,GAAG,EAAE,KAAK,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;IACrC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,yBAAyB,EAAE;QAAC,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAC,GAAG,SAAS,CAAC;IACvE,oBAAoB,EAAE,MAAM,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,yBAAyB,EAAE,MAAM,CAAC;IAClC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,SAAS,EAAE,CAAC,KAAK,EAAE,2BAA2B,KAAK,IAAI,CAAC;IACxD,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,6BAA6B,KAAK,IAAI,CAAC;IAC7D,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,2BAA2B,KAAK,IAAI,CAAC;IACzD,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,+BAA+B,KAAK,IAAI,CAAC;IACjE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;IAC9C,sBAAsB,EAAE,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC;IAChE,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;IACnD,uBAAuB,EAAE,WAAW,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;IACzD,uBAAuB,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC;IAC1D,oBAAoB,EAAE,OAAO,GAAG,SAAS,CAAC;IAC1C,8BAA8B,EAAE,OAAO,GAAG,SAAS,CAAC;IACpD,gBAAgB,EAAE,OAAO,GAAG,SAAS,CAAC;IACtC,cAAc,EAAE,6BAA6B,GAAG,SAAS,CAAC;IAC1D,sBAAsB,EAAE,OAAO,GAAG,SAAS,CAAC;IAC5C,UAAU,EAAE,OAAO,CAAC;IACpB,yBAAyB,EAAE,MAAM,GAAG,SAAS,CAAC;CAC/C;AAED,eAAO,MAAM,sBAAsB;;;;;uBAisBvB,MAAM;;;;;6CA3oBN,MAAM,MAAM,MAAM,KAAK,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2tBtC,CAAC"}
@@ -1,175 +0,0 @@
1
- import React, {useCallback, useMemo} from 'react';
2
- import {
3
- CellRendererProps,
4
- FlatList,
5
- FlatListProps,
6
- Platform,
7
- ScrollView,
8
- } from 'react-native';
9
-
10
- import {
11
- Gesture,
12
- GestureDetector,
13
- NativeGesture,
14
- } from 'react-native-gesture-handler';
15
- import Animated, {
16
- SharedValue,
17
- useComposedEventHandler,
18
- } from 'react-native-reanimated';
19
-
20
- import {AUTOSCROLL_CONFIG} from './autoscrollConfig';
21
- import {useReorderableListCore} from './useReorderableListCore';
22
- import {ReorderableListContext} from '../../contexts';
23
- import type {ReorderableListProps} from '../../types';
24
- import {ReorderableListCell} from '../ReorderableListCell';
25
-
26
- const AnimatedFlatList = Animated.createAnimatedComponent(
27
- FlatList,
28
- ) as unknown as <T>(
29
- props: FlatListProps<T> & {ref?: React.Ref<FlatList<T>>},
30
- ) => React.ReactElement;
31
-
32
- interface ReorderableListCoreProps<T> extends ReorderableListProps<T> {
33
- // not optional but undefined to avoid forgetting to pass a prop
34
- scrollViewContainerRef: React.RefObject<ScrollView> | undefined;
35
- scrollViewHeightY: SharedValue<number> | undefined;
36
- scrollViewScrollOffsetY: SharedValue<number> | undefined;
37
- scrollViewScrollEnabled: SharedValue<boolean> | undefined;
38
- outerScrollGesture: NativeGesture | undefined;
39
- initialScrollViewScrollEnabled: boolean | undefined;
40
- scrollable: boolean | undefined;
41
- scrollEnabled: boolean | undefined;
42
- }
43
-
44
- const ReorderableListCore = <T,>(
45
- {
46
- autoscrollThreshold = 0.1,
47
- autoscrollThresholdOffset,
48
- autoscrollSpeedScale = 1,
49
- autoscrollDelay = AUTOSCROLL_CONFIG.delay,
50
- autoscrollActivationDelta = 5,
51
- animationDuration = 200,
52
- onLayout,
53
- onReorder,
54
- onScroll,
55
- onDragStart,
56
- onDragEnd,
57
- onIndexChange,
58
- scrollViewContainerRef,
59
- scrollViewHeightY,
60
- scrollViewScrollOffsetY,
61
- scrollViewScrollEnabled,
62
- initialScrollViewScrollEnabled,
63
- scrollable,
64
- outerScrollGesture,
65
- cellAnimations,
66
- shouldUpdateActiveItem,
67
- panEnabled = true,
68
- panActivateAfterLongPress,
69
- ...rest
70
- }: ReorderableListCoreProps<T>,
71
- ref: React.ForwardedRef<FlatList<T>>,
72
- ) => {
73
- const {
74
- gestureHandler,
75
- handleScroll,
76
- handleFlatListLayout,
77
- handleRef,
78
- startDrag,
79
- listContextValue,
80
- itemOffset,
81
- itemHeight,
82
- dragY,
83
- draggedIndex,
84
- duration,
85
- } = useReorderableListCore({
86
- ref,
87
- autoscrollThreshold,
88
- autoscrollThresholdOffset,
89
- autoscrollSpeedScale,
90
- autoscrollDelay,
91
- autoscrollActivationDelta,
92
- animationDuration,
93
- onLayout,
94
- onReorder,
95
- onDragStart,
96
- onDragEnd,
97
- onIndexChange,
98
- scrollViewContainerRef,
99
- scrollViewHeightY,
100
- scrollViewScrollOffsetY,
101
- scrollViewScrollEnabled,
102
- // flatlist will default to true if we pass explicitly undefined,
103
- // but internally we would treat it as false, so we force true
104
- initialScrollEnabled:
105
- typeof rest.scrollEnabled === 'undefined' ? true : rest.scrollEnabled,
106
- initialScrollViewScrollEnabled:
107
- typeof initialScrollViewScrollEnabled === 'undefined'
108
- ? true
109
- : initialScrollViewScrollEnabled,
110
- nestedScrollable: scrollable,
111
- cellAnimations,
112
- shouldUpdateActiveItem,
113
- panEnabled,
114
- panActivateAfterLongPress,
115
- });
116
-
117
- const combinedGesture = useMemo(() => {
118
- // android is able to handle nested scroll view, but not the full height ones like iOS
119
- if (outerScrollGesture && !(Platform.OS === 'android' && scrollable)) {
120
- return Gesture.Simultaneous(outerScrollGesture, gestureHandler);
121
- }
122
-
123
- return gestureHandler;
124
- }, [scrollable, outerScrollGesture, gestureHandler]);
125
-
126
- const composedScrollHandler = useComposedEventHandler([
127
- handleScroll,
128
- onScroll || null,
129
- ]);
130
-
131
- const renderAnimatedCell = useCallback(
132
- ({cellKey, ...props}: CellRendererProps<T>) => (
133
- <ReorderableListCell
134
- {...props}
135
- // forces remount with key change on reorder
136
- key={`${cellKey}+${props.index}`}
137
- itemOffset={itemOffset}
138
- itemHeight={itemHeight}
139
- dragY={dragY}
140
- draggedIndex={draggedIndex}
141
- animationDuration={duration}
142
- startDrag={startDrag}
143
- />
144
- ),
145
- [itemOffset, itemHeight, dragY, draggedIndex, duration, startDrag],
146
- );
147
-
148
- return (
149
- <ReorderableListContext.Provider value={listContextValue}>
150
- <GestureDetector gesture={combinedGesture}>
151
- <AnimatedFlatList
152
- {...rest}
153
- ref={handleRef}
154
- CellRendererComponent={renderAnimatedCell}
155
- onLayout={handleFlatListLayout}
156
- onScroll={composedScrollHandler}
157
- scrollEventThrottle={1}
158
- horizontal={false}
159
- removeClippedSubviews={false}
160
- numColumns={1}
161
- />
162
- </GestureDetector>
163
- </ReorderableListContext.Provider>
164
- );
165
- };
166
-
167
- const MemoizedReorderableListCore = React.memo(
168
- React.forwardRef(ReorderableListCore),
169
- ) as <T>(
170
- props: ReorderableListCoreProps<T> & {
171
- ref?: React.ForwardedRef<FlatList<T> | null>;
172
- },
173
- ) => React.ReactElement;
174
-
175
- export {MemoizedReorderableListCore as ReorderableListCore};
@@ -1,31 +0,0 @@
1
- import {Platform} from 'react-native';
2
-
3
- const IOS_CONFIG = {
4
- delay: 80,
5
- increment: 100,
6
- };
7
-
8
- const ANDROID_FABRIC_CONFIG = {
9
- delay: 50,
10
- increment: 80,
11
- };
12
-
13
- const ANDROID_PAPER_CONFIG = {
14
- delay: 10,
15
- increment: 4,
16
- };
17
-
18
- export const IS_FABRIC =
19
- global && typeof global === 'object' && 'nativeFabricUIManager' in global;
20
-
21
- export const AUTOSCROLL_CONFIG = Platform.select({
22
- // autoscroll behaves differently with Fabric and Paper on Android
23
- android: IS_FABRIC ? ANDROID_FABRIC_CONFIG : ANDROID_PAPER_CONFIG,
24
- ios: IOS_CONFIG,
25
-
26
- // unsupported platforms
27
- web: IOS_CONFIG,
28
- macos: IOS_CONFIG,
29
- windows: IOS_CONFIG,
30
- native: IOS_CONFIG,
31
- });
@@ -1 +0,0 @@
1
- export * from './ReorderableListCore';