@shopify/flash-list 2.0.0-alpha.2 → 2.0.0-alpha.21

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 (329) hide show
  1. package/README.md +67 -96
  2. package/android/src/main/kotlin/com/shopify/reactnative/flash_list/BlankAreaEvent.kt +2 -2
  3. package/dist/AnimatedFlashList.d.ts +0 -1
  4. package/dist/AnimatedFlashList.d.ts.map +1 -1
  5. package/dist/AnimatedFlashList.js +3 -3
  6. package/dist/AnimatedFlashList.js.map +1 -1
  7. package/dist/FlashList.d.ts +9 -0
  8. package/dist/FlashList.d.ts.map +1 -1
  9. package/dist/FlashList.js +22 -3
  10. package/dist/FlashList.js.map +1 -1
  11. package/dist/FlashListProps.d.ts +33 -13
  12. package/dist/FlashListProps.d.ts.map +1 -1
  13. package/dist/FlashListProps.js.map +1 -1
  14. package/dist/FlashListRef.d.ts +305 -0
  15. package/dist/FlashListRef.d.ts.map +1 -0
  16. package/dist/FlashListRef.js +3 -0
  17. package/dist/FlashListRef.js.map +1 -0
  18. package/dist/GridLayoutProviderWithProps.js +1 -2
  19. package/dist/GridLayoutProviderWithProps.js.map +1 -1
  20. package/dist/MasonryFlashList.d.ts +2 -2
  21. package/dist/MasonryFlashList.d.ts.map +1 -1
  22. package/dist/MasonryFlashList.js.map +1 -1
  23. package/dist/PureComponentWrapper.js +1 -1
  24. package/dist/PureComponentWrapper.js.map +1 -1
  25. package/dist/__tests__/AverageWindow.test.js.map +1 -1
  26. package/dist/__tests__/ConsecutiveNumbers.test.d.ts +2 -0
  27. package/dist/__tests__/ConsecutiveNumbers.test.d.ts.map +1 -0
  28. package/dist/__tests__/ConsecutiveNumbers.test.js +224 -0
  29. package/dist/__tests__/ConsecutiveNumbers.test.js.map +1 -0
  30. package/dist/__tests__/FlashList.test.js.map +1 -1
  31. package/dist/__tests__/GridLayoutManager.test.d.ts +2 -0
  32. package/dist/__tests__/GridLayoutManager.test.d.ts.map +1 -0
  33. package/dist/__tests__/GridLayoutManager.test.js +69 -0
  34. package/dist/__tests__/GridLayoutManager.test.js.map +1 -0
  35. package/dist/__tests__/GridLayoutProviderWithProps.test.js.map +1 -1
  36. package/dist/__tests__/LayoutCommitObserver.test.d.ts +2 -0
  37. package/dist/__tests__/LayoutCommitObserver.test.d.ts.map +1 -0
  38. package/dist/__tests__/LayoutCommitObserver.test.js +35 -0
  39. package/dist/__tests__/LayoutCommitObserver.test.js.map +1 -0
  40. package/dist/__tests__/LinearLayoutManager.test.d.ts +2 -0
  41. package/dist/__tests__/LinearLayoutManager.test.d.ts.map +1 -0
  42. package/dist/__tests__/LinearLayoutManager.test.js +140 -0
  43. package/dist/__tests__/LinearLayoutManager.test.js.map +1 -0
  44. package/dist/__tests__/MasonryFlashList.test.js.map +1 -1
  45. package/dist/__tests__/MasonryLayoutManager.test.d.ts +2 -0
  46. package/dist/__tests__/MasonryLayoutManager.test.d.ts.map +1 -0
  47. package/dist/__tests__/MasonryLayoutManager.test.js +148 -0
  48. package/dist/__tests__/MasonryLayoutManager.test.js.map +1 -0
  49. package/dist/__tests__/RecyclerView.test.d.ts +2 -0
  50. package/dist/__tests__/RecyclerView.test.d.ts.map +1 -0
  51. package/dist/__tests__/RecyclerView.test.js +103 -0
  52. package/dist/__tests__/RecyclerView.test.js.map +1 -0
  53. package/dist/__tests__/RenderStackManager.test.d.ts +2 -0
  54. package/dist/__tests__/RenderStackManager.test.d.ts.map +1 -0
  55. package/dist/__tests__/RenderStackManager.test.js +485 -0
  56. package/dist/__tests__/RenderStackManager.test.js.map +1 -0
  57. package/dist/__tests__/ViewabilityHelper.test.js.map +1 -1
  58. package/dist/__tests__/findVisibleIndex.test.d.ts +2 -0
  59. package/dist/__tests__/findVisibleIndex.test.d.ts.map +1 -0
  60. package/dist/__tests__/findVisibleIndex.test.js +259 -0
  61. package/dist/__tests__/findVisibleIndex.test.js.map +1 -0
  62. package/dist/__tests__/helpers/createLayoutManager.d.ts +34 -0
  63. package/dist/__tests__/helpers/createLayoutManager.d.ts.map +1 -0
  64. package/dist/__tests__/helpers/createLayoutManager.js +110 -0
  65. package/dist/__tests__/helpers/createLayoutManager.js.map +1 -0
  66. package/dist/__tests__/helpers/mountFlashList.d.ts +2 -2
  67. package/dist/__tests__/helpers/mountFlashList.d.ts.map +1 -1
  68. package/dist/__tests__/helpers/mountFlashList.js +2 -2
  69. package/dist/__tests__/helpers/mountFlashList.js.map +1 -1
  70. package/dist/__tests__/helpers/mountMasonryFlashList.d.ts +2 -2
  71. package/dist/__tests__/helpers/mountMasonryFlashList.d.ts.map +1 -1
  72. package/dist/__tests__/helpers/mountMasonryFlashList.js +2 -2
  73. package/dist/__tests__/helpers/mountMasonryFlashList.js.map +1 -1
  74. package/dist/__tests__/useBlankAreaTracker.test.js.map +1 -1
  75. package/dist/__tests__/useUnmountAwareCallbacks.test.d.ts +2 -0
  76. package/dist/__tests__/useUnmountAwareCallbacks.test.d.ts.map +1 -0
  77. package/dist/__tests__/useUnmountAwareCallbacks.test.js +185 -0
  78. package/dist/__tests__/useUnmountAwareCallbacks.test.js.map +1 -0
  79. package/dist/benchmark/AutoScrollHelper.js +2 -2
  80. package/dist/benchmark/AutoScrollHelper.js.map +1 -1
  81. package/dist/benchmark/JSFPSMonitor.js.map +1 -1
  82. package/dist/benchmark/roundToDecimalPlaces.js +1 -2
  83. package/dist/benchmark/roundToDecimalPlaces.js.map +1 -1
  84. package/dist/benchmark/useBenchmark.js +2 -28
  85. package/dist/benchmark/useBenchmark.js.map +1 -1
  86. package/dist/benchmark/useBlankAreaTracker.js +1 -2
  87. package/dist/benchmark/useBlankAreaTracker.js.map +1 -1
  88. package/dist/benchmark/useDataMultiplier.js +1 -2
  89. package/dist/benchmark/useDataMultiplier.js.map +1 -1
  90. package/dist/benchmark/useFlatListBenchmark.d.ts +0 -1
  91. package/dist/benchmark/useFlatListBenchmark.d.ts.map +1 -1
  92. package/dist/benchmark/useFlatListBenchmark.js +9 -9
  93. package/dist/benchmark/useFlatListBenchmark.js.map +1 -1
  94. package/dist/enableNewCore.d.ts.map +1 -1
  95. package/dist/enableNewCore.js +4 -4
  96. package/dist/enableNewCore.js.map +1 -1
  97. package/dist/errors/CustomError.js.map +1 -1
  98. package/dist/index.d.ts +4 -1
  99. package/dist/index.d.ts.map +1 -1
  100. package/dist/index.js +11 -3
  101. package/dist/index.js.map +1 -1
  102. package/dist/native/auto-layout/AutoLayoutView.d.ts +1 -1
  103. package/dist/native/auto-layout/AutoLayoutView.d.ts.map +1 -1
  104. package/dist/native/auto-layout/AutoLayoutView.js +1 -1
  105. package/dist/native/auto-layout/AutoLayoutView.js.map +1 -1
  106. package/dist/native/auto-layout/AutoLayoutViewNativeComponent.d.ts.map +1 -1
  107. package/dist/native/auto-layout/AutoLayoutViewNativeComponentProps.d.ts +1 -1
  108. package/dist/native/auto-layout/AutoLayoutViewNativeComponentProps.d.ts.map +1 -1
  109. package/dist/native/config/PlatformHelper.android.d.ts +2 -0
  110. package/dist/native/config/PlatformHelper.android.d.ts.map +1 -1
  111. package/dist/native/config/PlatformHelper.android.js +2 -0
  112. package/dist/native/config/PlatformHelper.android.js.map +1 -1
  113. package/dist/native/config/PlatformHelper.d.ts +2 -0
  114. package/dist/native/config/PlatformHelper.d.ts.map +1 -1
  115. package/dist/native/config/PlatformHelper.ios.d.ts +2 -0
  116. package/dist/native/config/PlatformHelper.ios.d.ts.map +1 -1
  117. package/dist/native/config/PlatformHelper.ios.js +2 -0
  118. package/dist/native/config/PlatformHelper.ios.js.map +1 -1
  119. package/dist/native/config/PlatformHelper.js +2 -0
  120. package/dist/native/config/PlatformHelper.js.map +1 -1
  121. package/dist/native/config/PlatformHelper.web.d.ts +2 -0
  122. package/dist/native/config/PlatformHelper.web.d.ts.map +1 -1
  123. package/dist/native/config/PlatformHelper.web.js +3 -1
  124. package/dist/native/config/PlatformHelper.web.js.map +1 -1
  125. package/dist/recyclerview/LayoutCommitObserver.d.ts +12 -0
  126. package/dist/recyclerview/LayoutCommitObserver.d.ts.map +1 -0
  127. package/dist/recyclerview/LayoutCommitObserver.js +62 -0
  128. package/dist/recyclerview/LayoutCommitObserver.js.map +1 -0
  129. package/dist/recyclerview/RecyclerView.d.ts +3 -2
  130. package/dist/recyclerview/RecyclerView.d.ts.map +1 -1
  131. package/dist/recyclerview/RecyclerView.js +133 -69
  132. package/dist/recyclerview/RecyclerView.js.map +1 -1
  133. package/dist/recyclerview/RecyclerViewContextProvider.d.ts +41 -7
  134. package/dist/recyclerview/RecyclerViewContextProvider.d.ts.map +1 -1
  135. package/dist/recyclerview/RecyclerViewContextProvider.js +6 -2
  136. package/dist/recyclerview/RecyclerViewContextProvider.js.map +1 -1
  137. package/dist/recyclerview/RecyclerViewManager.d.ts +31 -7
  138. package/dist/recyclerview/RecyclerViewManager.d.ts.map +1 -1
  139. package/dist/recyclerview/RecyclerViewManager.js +154 -117
  140. package/dist/recyclerview/RecyclerViewManager.js.map +1 -1
  141. package/dist/recyclerview/RecyclerViewProps.d.ts +1 -1
  142. package/dist/recyclerview/RecyclerViewProps.d.ts.map +1 -1
  143. package/dist/recyclerview/RenderStackManager.d.ts +86 -0
  144. package/dist/recyclerview/RenderStackManager.d.ts.map +1 -0
  145. package/dist/recyclerview/RenderStackManager.js +343 -0
  146. package/dist/recyclerview/RenderStackManager.js.map +1 -0
  147. package/dist/recyclerview/ViewHolder.d.ts.map +1 -1
  148. package/dist/recyclerview/ViewHolder.js +8 -6
  149. package/dist/recyclerview/ViewHolder.js.map +1 -1
  150. package/dist/recyclerview/ViewHolderCollection.d.ts +10 -4
  151. package/dist/recyclerview/ViewHolderCollection.d.ts.map +1 -1
  152. package/dist/recyclerview/ViewHolderCollection.js +26 -10
  153. package/dist/recyclerview/ViewHolderCollection.js.map +1 -1
  154. package/dist/recyclerview/components/ScrollAnchor.d.ts +2 -1
  155. package/dist/recyclerview/components/ScrollAnchor.d.ts.map +1 -1
  156. package/dist/recyclerview/components/ScrollAnchor.js +12 -9
  157. package/dist/recyclerview/components/ScrollAnchor.js.map +1 -1
  158. package/dist/recyclerview/components/StickyHeaders.d.ts +2 -2
  159. package/dist/recyclerview/components/StickyHeaders.d.ts.map +1 -1
  160. package/dist/recyclerview/components/StickyHeaders.js +44 -45
  161. package/dist/recyclerview/components/StickyHeaders.js.map +1 -1
  162. package/dist/recyclerview/helpers/ConsecutiveNumbers.d.ts +1 -1
  163. package/dist/recyclerview/helpers/ConsecutiveNumbers.d.ts.map +1 -1
  164. package/dist/recyclerview/helpers/ConsecutiveNumbers.js +2 -2
  165. package/dist/recyclerview/helpers/ConsecutiveNumbers.js.map +1 -1
  166. package/dist/recyclerview/helpers/EngagedIndicesTracker.d.ts +48 -2
  167. package/dist/recyclerview/helpers/EngagedIndicesTracker.d.ts.map +1 -1
  168. package/dist/recyclerview/helpers/EngagedIndicesTracker.js +89 -19
  169. package/dist/recyclerview/helpers/EngagedIndicesTracker.js.map +1 -1
  170. package/dist/recyclerview/helpers/RenderTimeTracker.d.ts +11 -0
  171. package/dist/recyclerview/helpers/RenderTimeTracker.d.ts.map +1 -0
  172. package/dist/recyclerview/helpers/RenderTimeTracker.js +42 -0
  173. package/dist/recyclerview/helpers/RenderTimeTracker.js.map +1 -0
  174. package/dist/recyclerview/helpers/VelocityTracker.d.ts +29 -0
  175. package/dist/recyclerview/helpers/VelocityTracker.d.ts.map +1 -0
  176. package/dist/recyclerview/helpers/VelocityTracker.js +70 -0
  177. package/dist/recyclerview/helpers/VelocityTracker.js.map +1 -0
  178. package/dist/recyclerview/hooks/useBoundDetection.d.ts +1 -3
  179. package/dist/recyclerview/hooks/useBoundDetection.d.ts.map +1 -1
  180. package/dist/recyclerview/hooks/useBoundDetection.js +60 -28
  181. package/dist/recyclerview/hooks/useBoundDetection.js.map +1 -1
  182. package/dist/recyclerview/hooks/useLayoutState.d.ts +3 -1
  183. package/dist/recyclerview/hooks/useLayoutState.d.ts.map +1 -1
  184. package/dist/recyclerview/hooks/useLayoutState.js +6 -5
  185. package/dist/recyclerview/hooks/useLayoutState.js.map +1 -1
  186. package/dist/recyclerview/hooks/useMappingHelper.d.ts +9 -0
  187. package/dist/recyclerview/hooks/useMappingHelper.d.ts.map +1 -0
  188. package/dist/recyclerview/hooks/useMappingHelper.js +19 -0
  189. package/dist/recyclerview/hooks/useMappingHelper.js.map +1 -0
  190. package/dist/recyclerview/hooks/useOnLoad.d.ts +2 -2
  191. package/dist/recyclerview/hooks/useOnLoad.d.ts.map +1 -1
  192. package/dist/recyclerview/hooks/useOnLoad.js +9 -10
  193. package/dist/recyclerview/hooks/useOnLoad.js.map +1 -1
  194. package/dist/recyclerview/hooks/useRecyclerViewController.d.ts +5 -49
  195. package/dist/recyclerview/hooks/useRecyclerViewController.d.ts.map +1 -1
  196. package/dist/recyclerview/hooks/useRecyclerViewController.js +343 -191
  197. package/dist/recyclerview/hooks/useRecyclerViewController.js.map +1 -1
  198. package/dist/recyclerview/hooks/useRecyclerViewManager.d.ts +2 -0
  199. package/dist/recyclerview/hooks/useRecyclerViewManager.d.ts.map +1 -1
  200. package/dist/recyclerview/hooks/useRecyclerViewManager.js +11 -1
  201. package/dist/recyclerview/hooks/useRecyclerViewManager.js.map +1 -1
  202. package/dist/recyclerview/hooks/useRecyclingState.d.ts +4 -2
  203. package/dist/recyclerview/hooks/useRecyclingState.d.ts.map +1 -1
  204. package/dist/recyclerview/hooks/useRecyclingState.js +3 -4
  205. package/dist/recyclerview/hooks/useRecyclingState.js.map +1 -1
  206. package/dist/recyclerview/hooks/useSecondaryProps.d.ts +1 -1
  207. package/dist/recyclerview/hooks/useSecondaryProps.d.ts.map +1 -1
  208. package/dist/recyclerview/hooks/useSecondaryProps.js +15 -12
  209. package/dist/recyclerview/hooks/useSecondaryProps.js.map +1 -1
  210. package/dist/recyclerview/hooks/useUnmountAwareCallbacks.d.ts +15 -0
  211. package/dist/recyclerview/hooks/useUnmountAwareCallbacks.d.ts.map +1 -0
  212. package/dist/recyclerview/hooks/useUnmountAwareCallbacks.js +63 -0
  213. package/dist/recyclerview/hooks/useUnmountAwareCallbacks.js.map +1 -0
  214. package/dist/recyclerview/hooks/useUnmountFlag.d.ts +0 -1
  215. package/dist/recyclerview/hooks/useUnmountFlag.d.ts.map +1 -1
  216. package/dist/recyclerview/hooks/useUnmountFlag.js +1 -0
  217. package/dist/recyclerview/hooks/useUnmountFlag.js.map +1 -1
  218. package/dist/recyclerview/layout-managers/GridLayoutManager.d.ts +18 -4
  219. package/dist/recyclerview/layout-managers/GridLayoutManager.d.ts.map +1 -1
  220. package/dist/recyclerview/layout-managers/GridLayoutManager.js +61 -25
  221. package/dist/recyclerview/layout-managers/GridLayoutManager.js.map +1 -1
  222. package/dist/recyclerview/layout-managers/LayoutManager.d.ts +36 -21
  223. package/dist/recyclerview/layout-managers/LayoutManager.d.ts.map +1 -1
  224. package/dist/recyclerview/layout-managers/LayoutManager.js +96 -28
  225. package/dist/recyclerview/layout-managers/LayoutManager.js.map +1 -1
  226. package/dist/recyclerview/layout-managers/LinearLayoutManager.d.ts +1 -2
  227. package/dist/recyclerview/layout-managers/LinearLayoutManager.d.ts.map +1 -1
  228. package/dist/recyclerview/layout-managers/LinearLayoutManager.js +3 -3
  229. package/dist/recyclerview/layout-managers/LinearLayoutManager.js.map +1 -1
  230. package/dist/recyclerview/layout-managers/MasonryLayoutManager.d.ts +9 -1
  231. package/dist/recyclerview/layout-managers/MasonryLayoutManager.d.ts.map +1 -1
  232. package/dist/recyclerview/layout-managers/MasonryLayoutManager.js +30 -16
  233. package/dist/recyclerview/layout-managers/MasonryLayoutManager.js.map +1 -1
  234. package/dist/recyclerview/utils/adjustOffsetForRTL.js +1 -2
  235. package/dist/recyclerview/utils/adjustOffsetForRTL.js.map +1 -1
  236. package/dist/recyclerview/utils/componentUtils.d.ts +1 -1
  237. package/dist/recyclerview/utils/componentUtils.d.ts.map +1 -1
  238. package/dist/recyclerview/utils/componentUtils.js.map +1 -1
  239. package/dist/recyclerview/utils/findVisibleIndex.d.ts.map +1 -1
  240. package/dist/recyclerview/utils/findVisibleIndex.js +3 -5
  241. package/dist/recyclerview/utils/findVisibleIndex.js.map +1 -1
  242. package/dist/recyclerview/utils/measureLayout.d.ts +24 -28
  243. package/dist/recyclerview/utils/measureLayout.d.ts.map +1 -1
  244. package/dist/recyclerview/utils/measureLayout.js +36 -6
  245. package/dist/recyclerview/utils/measureLayout.js.map +1 -1
  246. package/dist/recyclerview/utils/measureLayout.web.d.ts +29 -0
  247. package/dist/recyclerview/utils/measureLayout.web.d.ts.map +1 -0
  248. package/dist/recyclerview/utils/measureLayout.web.js +87 -0
  249. package/dist/recyclerview/utils/measureLayout.web.js.map +1 -0
  250. package/dist/specs/AutoLayoutNativeComponent.d.ts +1 -2
  251. package/dist/specs/AutoLayoutNativeComponent.d.ts.map +1 -1
  252. package/dist/specs/CellContainerNativeComponent.d.ts +0 -1
  253. package/dist/specs/CellContainerNativeComponent.d.ts.map +1 -1
  254. package/dist/tsconfig.tsbuildinfo +1 -1
  255. package/dist/utils/AverageWindow.js.map +1 -1
  256. package/dist/utils/ContentContainerUtils.d.ts.map +1 -1
  257. package/dist/utils/ContentContainerUtils.js.map +1 -1
  258. package/dist/viewability/ViewToken.d.ts +2 -2
  259. package/dist/viewability/ViewToken.d.ts.map +1 -1
  260. package/dist/viewability/ViewabilityHelper.js +1 -1
  261. package/dist/viewability/ViewabilityHelper.js.map +1 -1
  262. package/dist/viewability/ViewabilityManager.d.ts.map +1 -1
  263. package/dist/viewability/ViewabilityManager.js +11 -5
  264. package/dist/viewability/ViewabilityManager.js.map +1 -1
  265. package/jestSetup.js +30 -11
  266. package/package.json +4 -3
  267. package/src/AnimatedFlashList.ts +3 -2
  268. package/src/FlashList.tsx +25 -1
  269. package/src/FlashListProps.ts +42 -11
  270. package/src/FlashListRef.ts +320 -0
  271. package/src/MasonryFlashList.tsx +2 -2
  272. package/src/__tests__/ConsecutiveNumbers.test.ts +232 -0
  273. package/src/__tests__/GridLayoutManager.test.ts +113 -0
  274. package/src/__tests__/LayoutCommitObserver.test.tsx +60 -0
  275. package/src/__tests__/LinearLayoutManager.test.ts +227 -0
  276. package/src/__tests__/MasonryLayoutManager.test.ts +202 -0
  277. package/src/__tests__/RecyclerView.test.tsx +144 -0
  278. package/src/__tests__/RenderStackManager.test.ts +574 -0
  279. package/src/__tests__/findVisibleIndex.test.ts +369 -0
  280. package/src/__tests__/helpers/createLayoutManager.ts +141 -0
  281. package/src/__tests__/useUnmountAwareCallbacks.test.tsx +285 -0
  282. package/src/benchmark/useBenchmark.ts +0 -37
  283. package/src/benchmark/useFlatListBenchmark.ts +2 -2
  284. package/src/enableNewCore.ts +3 -1
  285. package/src/index.ts +14 -3
  286. package/src/native/config/PlatformHelper.android.ts +2 -0
  287. package/src/native/config/PlatformHelper.ios.ts +2 -0
  288. package/src/native/config/PlatformHelper.ts +2 -0
  289. package/src/native/config/PlatformHelper.web.ts +3 -1
  290. package/src/recyclerview/LayoutCommitObserver.tsx +74 -0
  291. package/src/recyclerview/RecyclerView.tsx +178 -89
  292. package/src/recyclerview/RecyclerViewContextProvider.ts +53 -7
  293. package/src/recyclerview/RecyclerViewManager.ts +176 -97
  294. package/src/recyclerview/RecyclerViewProps.ts +2 -1
  295. package/src/recyclerview/RenderStackManager.ts +317 -0
  296. package/src/recyclerview/ViewHolder.tsx +13 -6
  297. package/src/recyclerview/ViewHolderCollection.tsx +45 -16
  298. package/src/recyclerview/components/ScrollAnchor.tsx +24 -11
  299. package/src/recyclerview/components/StickyHeaders.tsx +70 -58
  300. package/src/recyclerview/helpers/ConsecutiveNumbers.ts +2 -2
  301. package/src/recyclerview/helpers/EngagedIndicesTracker.ts +135 -25
  302. package/src/recyclerview/helpers/RenderTimeTracker.ts +42 -0
  303. package/src/recyclerview/helpers/VelocityTracker.ts +77 -0
  304. package/src/recyclerview/hooks/useBoundDetection.ts +74 -25
  305. package/src/recyclerview/hooks/useLayoutState.ts +15 -6
  306. package/src/recyclerview/hooks/useMappingHelper.ts +20 -0
  307. package/src/recyclerview/hooks/useOnLoad.ts +11 -10
  308. package/src/recyclerview/hooks/useRecyclerViewController.tsx +380 -241
  309. package/src/recyclerview/hooks/useRecyclerViewManager.ts +13 -1
  310. package/src/recyclerview/hooks/useRecyclingState.ts +11 -7
  311. package/src/recyclerview/hooks/useSecondaryProps.tsx +12 -7
  312. package/src/recyclerview/hooks/useUnmountAwareCallbacks.ts +73 -0
  313. package/src/recyclerview/hooks/useUnmountFlag.ts +1 -0
  314. package/src/recyclerview/layout-managers/GridLayoutManager.ts +68 -27
  315. package/src/recyclerview/layout-managers/LayoutManager.ts +116 -42
  316. package/src/recyclerview/layout-managers/LinearLayoutManager.ts +12 -8
  317. package/src/recyclerview/layout-managers/MasonryLayoutManager.ts +34 -13
  318. package/src/recyclerview/utils/componentUtils.ts +1 -1
  319. package/src/recyclerview/utils/findVisibleIndex.ts +1 -2
  320. package/src/recyclerview/utils/measureLayout.ts +41 -2
  321. package/src/recyclerview/utils/measureLayout.web.ts +102 -0
  322. package/src/viewability/ViewToken.ts +2 -2
  323. package/src/viewability/ViewabilityHelper.ts +1 -1
  324. package/src/viewability/ViewabilityManager.ts +16 -9
  325. package/dist/recyclerview/RecycleKeyManager.d.ts +0 -82
  326. package/dist/recyclerview/RecycleKeyManager.d.ts.map +0 -1
  327. package/dist/recyclerview/RecycleKeyManager.js +0 -135
  328. package/dist/recyclerview/RecycleKeyManager.js.map +0 -1
  329. package/src/recyclerview/RecycleKeyManager.ts +0 -185
@@ -0,0 +1,317 @@
1
+ import { ConsecutiveNumbers } from "./helpers/ConsecutiveNumbers";
2
+
3
+ /**
4
+ * Manages the recycling of rendered items in a virtualized list.
5
+ * This class handles tracking, recycling, and reusing item keys to optimize
6
+ * rendering performance by minimizing creation/destruction of components.
7
+ */
8
+ export class RenderStackManager {
9
+ public disableRecycling = false;
10
+
11
+ // Maximum number of items that can be in the recycle pool
12
+ private maxItemsInRecyclePool: number;
13
+
14
+ // Stores pools of recycled keys for each item type
15
+ private recycleKeyPools: Map<string, Set<string>>;
16
+
17
+ // Maps active keys to their metadata (item type and stable ID)
18
+ private keyMap: Map<
19
+ string,
20
+ { itemType: string; index: number; stableId: string }
21
+ >;
22
+
23
+ // Maps stable IDs to their corresponding keys for quick lookups
24
+ private stableIdMap: Map<string, string>;
25
+
26
+ // Counter for generating unique sequential keys
27
+ private keyCounter: number;
28
+
29
+ private unProcessedIndices: Set<number>;
30
+
31
+ /**
32
+ * @param maxItemsInRecyclePool - Maximum number of items that can be in the recycle pool
33
+ */
34
+ constructor(maxItemsInRecyclePool: number = Number.MAX_SAFE_INTEGER) {
35
+ this.maxItemsInRecyclePool = maxItemsInRecyclePool;
36
+ this.recycleKeyPools = new Map();
37
+ this.keyMap = new Map();
38
+ this.stableIdMap = new Map();
39
+ this.keyCounter = 0;
40
+ this.unProcessedIndices = new Set();
41
+ }
42
+
43
+ /**
44
+ * Synchronizes the render stack with the current state of data.
45
+ * This method is the core orchestrator that:
46
+ * 1. Recycles keys for items that are no longer valid
47
+ * 2. Updates existing keys for items that remain visible
48
+ * 3. Assigns new keys for newly visible items
49
+ * 4. Cleans up excess items to maintain the recycling pool size
50
+ *
51
+ * @param getStableId - Function to get a stable identifier for an item at a specific index
52
+ * @param getItemType - Function to get the type of an item at a specific index
53
+ * @param engagedIndices - Collection of indices that are currently visible or engaged
54
+ * @param dataLength - Total length of the data set
55
+ */
56
+ public sync(
57
+ getStableId: (index: number) => string,
58
+ getItemType: (index: number) => string,
59
+ engagedIndices: ConsecutiveNumbers,
60
+ dataLength: number
61
+ ) {
62
+ this.clearRecyclePool();
63
+ this.unProcessedIndices.clear();
64
+
65
+ // Recycle keys for items that are no longer valid or visible
66
+ this.keyMap.forEach((keyInfo, key) => {
67
+ const { index, stableId, itemType } = keyInfo;
68
+ if (index >= dataLength) {
69
+ this.recycleKey(key);
70
+ return;
71
+ }
72
+ if (!this.disableRecycling) {
73
+ this.unProcessedIndices.add(index);
74
+ }
75
+ if (!engagedIndices.includes(index)) {
76
+ this.recycleKey(key);
77
+ return;
78
+ }
79
+ const newStableId = getStableId(index);
80
+ const newItemType = getItemType(index);
81
+ if (stableId !== newStableId || itemType !== newItemType) {
82
+ this.recycleKey(key);
83
+ }
84
+ });
85
+
86
+ // First pass: process items that already have optimized keys
87
+ for (const index of engagedIndices) {
88
+ if (this.hasOptimizedKey(getStableId(index))) {
89
+ this.syncItem(index, getItemType(index), getStableId(index));
90
+ }
91
+ }
92
+
93
+ // Second pass: process remaining items that need new keys
94
+ for (const index of engagedIndices) {
95
+ if (!this.hasOptimizedKey(getStableId(index))) {
96
+ this.syncItem(index, getItemType(index), getStableId(index));
97
+ }
98
+ }
99
+
100
+ // create indices that are not in the engagedIndices and less than dataLength
101
+ // select only indices that are not in the engagedIndices
102
+ const validIndicesInPool: number[] = [];
103
+ for (const keyInfo of this.keyMap.values()) {
104
+ const index = keyInfo.index;
105
+ if (index < dataLength && !engagedIndices.includes(index)) {
106
+ validIndicesInPool.push(index);
107
+ }
108
+ }
109
+
110
+ // First pass: process items that already have optimized keys
111
+ for (const index of validIndicesInPool) {
112
+ if (this.hasOptimizedKey(getStableId(index))) {
113
+ this.syncItem(index, getItemType(index), getStableId(index));
114
+ }
115
+ }
116
+
117
+ for (const index of validIndicesInPool) {
118
+ if (!this.hasOptimizedKey(getStableId(index))) {
119
+ this.syncItem(index, getItemType(index), getStableId(index));
120
+ }
121
+ }
122
+
123
+ // Clean up stale items and manage the recycle pool size
124
+ this.cleanup(getStableId, getItemType, engagedIndices, dataLength);
125
+ }
126
+
127
+ /**
128
+ * Checks if a stable ID already has an assigned key
129
+ */
130
+ private hasOptimizedKey(stableId: string): boolean {
131
+ return this.stableIdMap.has(stableId);
132
+ }
133
+
134
+ /**
135
+ * Cleans up stale keys and manages the recycle pool size.
136
+ * This ensures we don't maintain references to items that are no longer in the dataset,
137
+ * and limits the number of recycled items to avoid excessive memory usage.
138
+ */
139
+ private cleanup(
140
+ getStableId: (index: number) => string,
141
+ getItemType: (index: number) => string,
142
+ engagedIndices: ConsecutiveNumbers,
143
+ dataLength: number
144
+ ) {
145
+ const itemsToDelete = new Array<string>();
146
+
147
+ // Remove items that are no longer in the dataset
148
+ for (const [key, keyInfo] of this.keyMap.entries()) {
149
+ const { index, itemType, stableId } = keyInfo;
150
+ const indexOutOfBounds = index >= dataLength;
151
+ const hasStableIdChanged =
152
+ !indexOutOfBounds && getStableId(index) !== stableId;
153
+
154
+ if (indexOutOfBounds || hasStableIdChanged) {
155
+ const nextIndex = this.unProcessedIndices.values().next().value;
156
+ let shouldDeleteKey = true;
157
+
158
+ if (nextIndex !== undefined) {
159
+ const nextItemType = getItemType(nextIndex);
160
+ const nextStableId = getStableId(nextIndex);
161
+ if (itemType === nextItemType) {
162
+ this.syncItem(nextIndex, nextItemType, nextStableId);
163
+ shouldDeleteKey = false;
164
+ }
165
+ }
166
+ if (shouldDeleteKey) {
167
+ this.deleteKeyFromRecyclePool(itemType, key);
168
+ this.stableIdMap.delete(stableId);
169
+ itemsToDelete.push(key);
170
+ }
171
+ }
172
+ }
173
+
174
+ for (const key of itemsToDelete) {
175
+ this.keyMap.delete(key);
176
+ }
177
+
178
+ // Limit the size of the recycle pool
179
+ const itemsRenderedForRecycling = this.keyMap.size - engagedIndices.length;
180
+ if (itemsRenderedForRecycling > this.maxItemsInRecyclePool) {
181
+ const deleteCount =
182
+ itemsRenderedForRecycling - this.maxItemsInRecyclePool;
183
+ let deleted = 0;
184
+
185
+ // Use a for loop so we can break early once we've deleted enough items
186
+ const entries = Array.from(this.keyMap.entries()).reverse();
187
+ for (let i = 0; i < entries.length && deleted < deleteCount; i++) {
188
+ const [key, keyInfo] = entries[i];
189
+ const { index, itemType, stableId } = keyInfo;
190
+
191
+ if (!engagedIndices.includes(index)) {
192
+ this.deleteKeyFromRecyclePool(itemType, key);
193
+ this.stableIdMap.delete(stableId);
194
+ this.keyMap.delete(key);
195
+ deleted++;
196
+ }
197
+ }
198
+ }
199
+ }
200
+
201
+ /**
202
+ * Places a key back into its type-specific recycle pool for future reuse
203
+ */
204
+ private recycleKey(key: string): void {
205
+ if (this.disableRecycling) {
206
+ return;
207
+ }
208
+ const keyInfo = this.keyMap.get(key);
209
+
210
+ if (!keyInfo) {
211
+ return;
212
+ }
213
+
214
+ const { itemType } = keyInfo;
215
+
216
+ // Add key back to its type's pool
217
+ const pool = this.getRecyclePoolForType(itemType);
218
+
219
+ pool.add(key);
220
+ }
221
+
222
+ /**
223
+ * Returns the current render stack containing all active keys and their metadata
224
+ */
225
+ public getRenderStack() {
226
+ return this.keyMap;
227
+ }
228
+
229
+ /**
230
+ * Syncs an individual item by assigning it an appropriate key.
231
+ * Will use an existing key if available, or generate a new one.
232
+ *
233
+ * @returns The key assigned to the item
234
+ */
235
+ private syncItem(index: number, itemType: string, stableId: string): string {
236
+ // Try to reuse an existing key, or get one from the recycle pool, or generate a new one
237
+ const newKey =
238
+ this.stableIdMap.get(stableId) ||
239
+ this.getKeyFromRecyclePool(itemType) ||
240
+ this.generateKey();
241
+
242
+ this.unProcessedIndices.delete(index);
243
+
244
+ const keyInfo = this.keyMap.get(newKey);
245
+ if (keyInfo) {
246
+ // Update an existing key's metadata
247
+ this.deleteKeyFromRecyclePool(itemType, newKey);
248
+ this.deleteKeyFromRecyclePool(keyInfo.itemType, newKey);
249
+ this.stableIdMap.delete(keyInfo.stableId);
250
+ keyInfo.index = index;
251
+ keyInfo.itemType = itemType;
252
+ keyInfo.stableId = stableId;
253
+ } else {
254
+ // Create a new entry in the key map
255
+ this.keyMap.set(newKey, {
256
+ itemType,
257
+ index,
258
+ stableId,
259
+ });
260
+ }
261
+ this.stableIdMap.set(stableId, newKey);
262
+
263
+ return newKey;
264
+ }
265
+
266
+ /**
267
+ * Clears all recycled keys from the pool, effectively resetting the recycling system.
268
+ * This operation does not affect currently active keys.
269
+ */
270
+ private clearRecyclePool() {
271
+ // iterate over all pools and clear them
272
+ for (const pool of this.recycleKeyPools.values()) {
273
+ pool.clear();
274
+ }
275
+ }
276
+
277
+ /**
278
+ * Generates a unique sequential key using an internal counter.
279
+ * @returns A unique key as a string
280
+ */
281
+ private generateKey(): string {
282
+ return (this.keyCounter++).toString();
283
+ }
284
+
285
+ /**
286
+ * Removes a specific key from its type's recycle pool
287
+ */
288
+ private deleteKeyFromRecyclePool(itemType: string, key: string) {
289
+ this.recycleKeyPools.get(itemType)?.delete(key);
290
+ }
291
+
292
+ /**
293
+ * Gets or creates a recycle pool for a specific item type
294
+ */
295
+ private getRecyclePoolForType(itemType: string) {
296
+ let pool = this.recycleKeyPools.get(itemType);
297
+ if (!pool) {
298
+ pool = new Set();
299
+ this.recycleKeyPools.set(itemType, pool);
300
+ }
301
+ return pool;
302
+ }
303
+
304
+ /**
305
+ * Retrieves and removes a key from the type's recycle pool
306
+ * @returns A recycled key or undefined if none available
307
+ */
308
+ private getKeyFromRecyclePool(itemType: string) {
309
+ const pool = this.getRecyclePoolForType(itemType);
310
+ if (pool.size > 0) {
311
+ const key = pool.values().next().value;
312
+ pool.delete(key);
313
+ return key;
314
+ }
315
+ return undefined;
316
+ }
317
+ }
@@ -88,16 +88,19 @@ const ViewHolderInternal = <TItem,>(props: ViewHolderProps<TItem>) => {
88
88
  );
89
89
 
90
90
  const separator = useMemo(() => {
91
- return ItemSeparatorComponent ? (
91
+ return ItemSeparatorComponent && trailingItem !== undefined ? (
92
92
  <ItemSeparatorComponent leadingItem={item} trailingItem={trailingItem} />
93
93
  ) : null;
94
94
  }, [ItemSeparatorComponent, item, trailingItem]);
95
95
 
96
- //console.log("ViewHolder re-render", index);
96
+ // console.log("ViewHolder re-render", index);
97
97
 
98
98
  const children = useMemo(() => {
99
99
  return renderItem?.({ item, index, extraData, target }) ?? null;
100
- }, [item, index, extraData, target, renderItem]);
100
+ // TODO: Test more thoroughly
101
+ // We don't really to re-render the children when the index changes
102
+ // eslint-disable-next-line react-hooks/exhaustive-deps
103
+ }, [item, extraData, target, renderItem]);
101
104
 
102
105
  const style = {
103
106
  flexDirection: horizontal ? "row" : "column",
@@ -110,15 +113,19 @@ const ViewHolderInternal = <TItem,>(props: ViewHolderProps<TItem>) => {
110
113
  maxWidth: layout.maxWidth,
111
114
  left: layout.x,
112
115
  top: layout.y,
113
- zIndex: 0,
114
116
  } as const;
115
117
 
116
- //TODO: Fix this type issue
118
+ // TODO: Fix this type issue
117
119
  const CompatContainer = (CellRendererComponent ??
118
120
  CompatView) as unknown as any;
119
121
 
120
122
  return (
121
- <CompatContainer ref={viewRef} onLayout={onLayout} style={style}>
123
+ <CompatContainer
124
+ ref={viewRef}
125
+ onLayout={onLayout}
126
+ style={style}
127
+ index={index}
128
+ >
122
129
  {children}
123
130
  {separator}
124
131
  </CompatContainer>
@@ -5,9 +5,11 @@
5
5
  */
6
6
 
7
7
  import React, { useEffect, useImperativeHandle, useLayoutEffect } from "react";
8
+
9
+ import { FlashListProps } from "../FlashListProps";
10
+
8
11
  import { ViewHolder, ViewHolderProps } from "./ViewHolder";
9
12
  import { RVDimension, RVLayout } from "./layout-managers/LayoutManager";
10
- import { FlashListProps } from "../FlashListProps";
11
13
  import { CompatView } from "./components/CompatView";
12
14
  import { useRecyclerViewContext } from "./RecyclerViewContextProvider";
13
15
 
@@ -19,7 +21,7 @@ export interface ViewHolderCollectionProps<TItem> {
19
21
  /** The data array to be rendered */
20
22
  data: FlashListProps<TItem>["data"];
21
23
  /** Map of indices to React keys for each rendered item */
22
- renderStack: Map<number, string>;
24
+ renderStack: Map<string, { index: number }>;
23
25
  /** Function to get layout information for a specific index */
24
26
  getLayout: (index: number) => RVLayout;
25
27
  /** Ref to control layout updates from parent components */
@@ -35,15 +37,19 @@ export interface ViewHolderCollectionProps<TItem> {
35
37
  /** Function to get the container's layout dimensions */
36
38
  getChildContainerLayout: () => RVDimension | undefined;
37
39
  /** Callback after layout effects are committed */
38
- onCommitLayoutEffect?: () => void;
40
+ onCommitLayoutEffect: () => void;
39
41
  /** Callback after effects are committed */
40
- onCommitEffect?: () => void;
42
+ onCommitEffect: () => void;
41
43
  /** Optional custom component to wrap each item */
42
44
  CellRendererComponent?: FlashListProps<TItem>["CellRendererComponent"];
43
45
  /** Optional component to render between items */
44
46
  ItemSeparatorComponent?: FlashListProps<TItem>["ItemSeparatorComponent"];
45
47
  /** Whether the list is horizontal or vertical */
46
48
  horizontal: FlashListProps<TItem>["horizontal"];
49
+ /** Function to get the adjustment margin for the container.
50
+ * For startRenderingFromBottom, we need to adjust the height of the container
51
+ */
52
+ getAdjustmentMargin: () => number;
47
53
  }
48
54
 
49
55
  /**
@@ -77,13 +83,13 @@ export const ViewHolderCollection = <TItem,>(
77
83
  ItemSeparatorComponent,
78
84
  onCommitEffect,
79
85
  horizontal,
86
+ getAdjustmentMargin,
80
87
  } = props;
81
88
 
82
89
  const [renderId, setRenderId] = React.useState(0);
83
90
 
84
91
  const containerLayout = getChildContainerLayout();
85
92
 
86
- // TODO: guard againt precision issues
87
93
  const fixedContainerSize = horizontal
88
94
  ? containerLayout?.height
89
95
  : containerLayout?.width;
@@ -98,43 +104,66 @@ export const ViewHolderCollection = <TItem,>(
98
104
  // );
99
105
  recyclerViewContext?.layout();
100
106
  }
107
+ // we need to run this callback on when fixedContainerSize changes
108
+ // eslint-disable-next-line react-hooks/exhaustive-deps
101
109
  }, [fixedContainerSize]);
102
110
 
103
111
  useLayoutEffect(() => {
104
112
  if (renderId > 0) {
105
113
  onCommitLayoutEffect?.();
106
114
  }
115
+ // we need to run this callback on when renderId changes
116
+ // eslint-disable-next-line react-hooks/exhaustive-deps
107
117
  }, [renderId]);
108
118
 
109
119
  useEffect(() => {
110
120
  if (renderId > 0) {
111
121
  onCommitEffect?.();
112
122
  }
123
+ // we need to run this callback on when renderId changes
124
+ // eslint-disable-next-line react-hooks/exhaustive-deps
113
125
  }, [renderId]);
114
126
 
115
127
  // Expose forceUpdate through ref
116
- useImperativeHandle(viewHolderCollectionRef, () => ({
117
- commitLayout: () => {
118
- // This will trigger a re-render of the component
119
- setRenderId((prev) => prev + 1);
120
- },
121
- }));
128
+ useImperativeHandle(
129
+ viewHolderCollectionRef,
130
+ () => ({
131
+ commitLayout: () => {
132
+ // This will trigger a re-render of the component
133
+ setRenderId((prev) => prev + 1);
134
+ },
135
+ }),
136
+ [setRenderId]
137
+ );
122
138
 
123
139
  const hasData = data && data.length > 0;
124
140
 
125
141
  const containerStyle = {
126
142
  width: horizontal ? containerLayout?.width : undefined,
127
143
  height: containerLayout?.height,
144
+ marginTop: horizontal ? undefined : getAdjustmentMargin(),
145
+ marginLeft: horizontal ? getAdjustmentMargin() : undefined,
146
+ // TODO: Temp workaround, useLayoutEffect doesn't block paint in some cases
147
+ // We need to investigate why this is happening
148
+ opacity: renderId > 0 ? 1 : 0,
128
149
  };
129
150
 
151
+ // sort by index and log
152
+ // const sortedRenderStack = Array.from(renderStack.entries()).sort(
153
+ // ([, a], [, b]) => a.index - b.index
154
+ // );
155
+ // console.log(
156
+ // "sortedRenderStack",
157
+ // sortedRenderStack.map(([reactKey, { index }]) => {
158
+ // return `${index} => ${reactKey}`;
159
+ // })
160
+ // );
161
+
130
162
  return (
131
- <CompatView
132
- // TODO: Take care of web scroll bar here
133
- style={hasData && containerStyle}
134
- >
163
+ <CompatView style={hasData && containerStyle}>
135
164
  {containerLayout &&
136
165
  hasData &&
137
- Array.from(renderStack, ([index, reactKey]) => {
166
+ Array.from(renderStack.entries(), ([reactKey, { index }]) => {
138
167
  const item = data[index];
139
168
  const trailingItem = ItemSeparatorComponent
140
169
  ? data[index + 1]
@@ -5,9 +5,9 @@
5
5
  * to adjust the scroll position of the list as the size of content changes without any glitches.
6
6
  */
7
7
 
8
- import { useImperativeHandle, useMemo, useState } from "react";
8
+ import React, { useImperativeHandle, useMemo, useState } from "react";
9
+
9
10
  import { CompatView } from "./CompatView";
10
- import React from "react";
11
11
 
12
12
  /**
13
13
  * Props for the ScrollAnchor component
@@ -15,6 +15,7 @@ import React from "react";
15
15
  export interface ScrollAnchorProps {
16
16
  /** Ref to access scroll anchor methods */
17
17
  scrollAnchorRef: React.Ref<ScrollAnchorRef>;
18
+ horizontal: boolean;
18
19
  }
19
20
 
20
21
  /**
@@ -30,24 +31,36 @@ export interface ScrollAnchorRef {
30
31
  * @param props - Component props
31
32
  * @returns An invisible anchor element used for scrolling
32
33
  */
33
- export function ScrollAnchor({ scrollAnchorRef }: ScrollAnchorProps) {
34
- const [scrollOffset, setScrollOffset] = useState(1000000); //TODO: Fix this value
34
+ export function ScrollAnchor({
35
+ scrollAnchorRef,
36
+ horizontal,
37
+ }: ScrollAnchorProps) {
38
+ const [scrollOffset, setScrollOffset] = useState(1000000); // TODO: Fix this value
35
39
 
36
40
  // Expose scrollBy method through ref
37
- useImperativeHandle(scrollAnchorRef, () => ({
38
- scrollBy: (offset: number) => {
39
- setScrollOffset((prev) => prev + offset);
40
- },
41
- }));
41
+ useImperativeHandle(
42
+ scrollAnchorRef,
43
+ () => ({
44
+ scrollBy: (offset: number) => {
45
+ setScrollOffset((prev) => prev + offset);
46
+ },
47
+ }),
48
+ []
49
+ );
42
50
 
43
51
  // Create an invisible anchor element that can be positioned
44
52
  const anchor = useMemo(() => {
45
53
  return (
46
54
  <CompatView
47
- style={{ position: "absolute", height: 0, top: scrollOffset }}
55
+ style={{
56
+ position: "absolute",
57
+ height: 0,
58
+ top: horizontal ? 0 : scrollOffset,
59
+ left: horizontal ? scrollOffset : 0,
60
+ }}
48
61
  />
49
62
  );
50
- }, [scrollOffset]);
63
+ }, [scrollOffset, horizontal]);
51
64
 
52
65
  return anchor;
53
66
  }