@react-native-oh-tpl/react-native-gesture-handler 2.12.1-0.0.1 → 2.12.6-1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (918) hide show
  1. package/README.md +1 -62
  2. package/harmony/gesture_handler/build-profile.json5 +8 -0
  3. package/harmony/gesture_handler/hvigorfile.ts +2 -0
  4. package/harmony/gesture_handler/index.ets +3 -0
  5. package/harmony/gesture_handler/oh-package.json5 +11 -0
  6. package/harmony/gesture_handler/src/main/cpp/CMakeLists.txt +8 -0
  7. package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.cpp +34 -0
  8. package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.h +15 -0
  9. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerButtonComponentDescriptor.h +60 -0
  10. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.cpp +17 -0
  11. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.h +12 -0
  12. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerRootViewComponentDescriptor.h +60 -0
  13. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/CircularBuffer.ts +1 -1
  14. package/harmony/gesture_handler/src/main/ets/Event.ts +68 -0
  15. package/harmony/gesture_handler/src/main/ets/EventDispatcher.ts +38 -0
  16. package/harmony/gesture_handler/src/main/ets/GestureHandler.ts +663 -0
  17. package/harmony/gesture_handler/src/main/ets/GestureHandlerArkUIAdapter.ets +202 -0
  18. package/harmony/gesture_handler/src/main/ets/GestureHandlerFactory.ts +45 -0
  19. package/harmony/gesture_handler/src/main/ets/GestureHandlerOrchestrator.ts +280 -0
  20. package/harmony/gesture_handler/src/main/ets/GestureHandlerPackage.ts +22 -0
  21. package/harmony/gesture_handler/src/main/ets/GestureHandlerRegistry.ts +28 -0
  22. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/InteractionManager.ts +36 -57
  23. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/LeastSquareSolver.ts +1 -1
  24. package/harmony/gesture_handler/src/main/ets/NativeViewGestureHandler.ts +115 -0
  25. package/harmony/gesture_handler/src/main/ets/OutgoingEvent.ts +34 -0
  26. package/harmony/gesture_handler/src/main/ets/PanGestureHandler.ts +328 -0
  27. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/PointerTracker.ts +13 -14
  28. package/harmony/gesture_handler/src/main/ets/RNGHError.ts +5 -0
  29. package/harmony/gesture_handler/src/main/ets/RNGHLogger.ts +29 -0
  30. package/harmony/gesture_handler/src/main/ets/RNGHRootTouchHandler.ets +58 -0
  31. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerButton.ets +37 -0
  32. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerModule.ts +125 -0
  33. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerRootView.ets +56 -0
  34. package/harmony/gesture_handler/src/main/ets/RNOHScrollLocker.ts +11 -0
  35. package/harmony/gesture_handler/src/main/ets/State.ts +47 -0
  36. package/harmony/gesture_handler/src/main/ets/TapGestureHandler.ts +206 -0
  37. package/harmony/gesture_handler/src/main/ets/Vector2D.ts +36 -0
  38. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/VelocityTracker.ts +4 -4
  39. package/harmony/gesture_handler/src/main/ets/View.ts +71 -0
  40. package/harmony/gesture_handler/src/main/ets/ViewRegistry.ts +43 -0
  41. package/harmony/gesture_handler/src/main/ets/pages/Index.ets +17 -0
  42. package/harmony/gesture_handler/src/main/ets/webviewability/WebviewAbility.ts +41 -0
  43. package/harmony/gesture_handler/src/main/module.json5 +7 -0
  44. package/harmony/gesture_handler/src/main/resources/base/element/color.json +8 -0
  45. package/harmony/gesture_handler/src/main/resources/base/element/string.json +16 -0
  46. package/harmony/gesture_handler/src/main/resources/base/media/icon.png +0 -0
  47. package/harmony/gesture_handler/src/main/resources/base/profile/main_pages.json +5 -0
  48. package/harmony/gesture_handler/src/main/resources/en_US/element/string.json +16 -0
  49. package/harmony/gesture_handler/src/main/resources/zh_CN/element/string.json +16 -0
  50. package/harmony/gesture_handler/ts.ts +1 -0
  51. package/harmony/gesture_handler.har +0 -0
  52. package/lib/commonjs/RNGestureHandlerModule.js +2 -22
  53. package/lib/commonjs/RNGestureHandlerModule.js.map +1 -1
  54. package/lib/commonjs/components/GestureButtons.js +88 -142
  55. package/lib/commonjs/components/GestureButtons.js.map +1 -1
  56. package/lib/commonjs/components/GestureHandlerButton.js +2 -7
  57. package/lib/commonjs/components/GestureHandlerButton.js.map +1 -1
  58. package/lib/commonjs/components/GestureHandlerRootView.js +13 -13
  59. package/lib/commonjs/components/GestureHandlerRootView.js.map +1 -1
  60. package/lib/commonjs/components/RNGestureHandlerButton.js +23 -0
  61. package/lib/commonjs/components/RNGestureHandlerButton.js.map +1 -0
  62. package/lib/commonjs/components/touchables/GenericTouchable.js +94 -136
  63. package/lib/commonjs/components/touchables/GenericTouchable.js.map +1 -1
  64. package/lib/commonjs/components/touchables/TouchableOpacity.js +32 -51
  65. package/lib/commonjs/components/touchables/TouchableOpacity.js.map +1 -1
  66. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +4 -12
  67. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  68. package/lib/commonjs/components/touchables/index.js +2 -21
  69. package/lib/commonjs/components/touchables/index.js.map +1 -1
  70. package/lib/commonjs/handlers/NativeViewGestureHandler.js +6 -14
  71. package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +1 -1
  72. package/lib/commonjs/handlers/PanGestureHandler.js +12 -32
  73. package/lib/commonjs/handlers/PanGestureHandler.js.map +1 -1
  74. package/lib/commonjs/handlers/TapGestureHandler.js +6 -11
  75. package/lib/commonjs/handlers/TapGestureHandler.js.map +1 -1
  76. package/lib/commonjs/handlers/createHandler.js +141 -223
  77. package/lib/commonjs/handlers/createHandler.js.map +1 -1
  78. package/lib/commonjs/handlers/createNativeWrapper.js +16 -26
  79. package/lib/commonjs/handlers/createNativeWrapper.js.map +1 -1
  80. package/lib/commonjs/handlers/gestureHandlerCommon.js +6 -87
  81. package/lib/commonjs/handlers/gestureHandlerCommon.js.map +1 -1
  82. package/lib/commonjs/handlers/gestures/GestureDetector.js +111 -226
  83. package/lib/commonjs/handlers/gestures/GestureDetector.js.map +1 -1
  84. package/lib/commonjs/index.js +168 -211
  85. package/lib/commonjs/index.js.map +1 -1
  86. package/lib/commonjs/init.js +7 -15
  87. package/lib/commonjs/init.js.map +1 -1
  88. package/lib/module/RNGestureHandlerModule.js +2 -18
  89. package/lib/module/RNGestureHandlerModule.js.map +1 -1
  90. package/lib/module/components/GestureButtons.js +83 -121
  91. package/lib/module/components/GestureButtons.js.map +1 -1
  92. package/lib/module/components/GestureHandlerButton.js +2 -2
  93. package/lib/module/components/GestureHandlerButton.js.map +1 -1
  94. package/lib/module/components/GestureHandlerRootView.js +11 -3
  95. package/lib/module/components/GestureHandlerRootView.js.map +1 -1
  96. package/lib/module/components/RNGestureHandlerButton.js +17 -0
  97. package/lib/module/components/RNGestureHandlerButton.js.map +1 -0
  98. package/lib/module/components/touchables/GenericTouchable.js +89 -124
  99. package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
  100. package/lib/module/components/touchables/TouchableOpacity.js +27 -41
  101. package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
  102. package/lib/module/components/touchables/TouchableWithoutFeedback.js +1 -2
  103. package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  104. package/lib/module/components/touchables/index.js +5 -2
  105. package/lib/module/components/touchables/index.js.map +1 -1
  106. package/lib/module/handlers/NativeViewGestureHandler.js +1 -1
  107. package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
  108. package/lib/module/handlers/PanGestureHandler.js +6 -21
  109. package/lib/module/handlers/PanGestureHandler.js.map +1 -1
  110. package/lib/module/handlers/TapGestureHandler.js +2 -1
  111. package/lib/module/handlers/TapGestureHandler.js.map +1 -1
  112. package/lib/module/handlers/createHandler.js +140 -196
  113. package/lib/module/handlers/createHandler.js.map +1 -1
  114. package/lib/module/handlers/createNativeWrapper.js +11 -16
  115. package/lib/module/handlers/createNativeWrapper.js.map +1 -1
  116. package/lib/module/handlers/gestureHandlerCommon.js +5 -71
  117. package/lib/module/handlers/gestureHandlerCommon.js.map +1 -1
  118. package/lib/module/handlers/gestures/GestureDetector.js +99 -175
  119. package/lib/module/handlers/gestures/GestureDetector.js.map +1 -1
  120. package/lib/module/index.js +160 -18
  121. package/lib/module/index.js.map +1 -1
  122. package/lib/module/init.js +6 -5
  123. package/lib/module/init.js.map +1 -1
  124. package/lib/typescript/RNGestureHandlerModule.d.ts +7 -13
  125. package/lib/typescript/RNGestureHandlerModule.d.ts.map +1 -0
  126. package/lib/typescript/components/GestureButtons.d.ts +122 -121
  127. package/lib/typescript/components/GestureButtons.d.ts.map +1 -0
  128. package/lib/typescript/components/GestureHandlerButton.d.ts +5 -4
  129. package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -0
  130. package/lib/typescript/components/GestureHandlerRootView.d.ts +7 -6
  131. package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -0
  132. package/lib/typescript/components/RNGestureHandlerButton.d.ts +2 -0
  133. package/lib/typescript/components/RNGestureHandlerButton.d.ts.map +1 -0
  134. package/lib/typescript/components/touchables/GenericTouchable.d.ts +68 -68
  135. package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -0
  136. package/lib/typescript/components/touchables/TouchableOpacity.d.ts +26 -25
  137. package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -0
  138. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +8 -7
  139. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -0
  140. package/lib/typescript/components/touchables/index.d.ts +4 -7
  141. package/lib/typescript/components/touchables/index.d.ts.map +1 -0
  142. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +29 -28
  143. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -0
  144. package/lib/typescript/handlers/PanGestureHandler.d.ts +140 -139
  145. package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -0
  146. package/lib/typescript/handlers/TapGestureHandler.d.ts +58 -57
  147. package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -0
  148. package/lib/typescript/handlers/createHandler.d.ts +12 -11
  149. package/lib/typescript/handlers/createHandler.d.ts.map +1 -0
  150. package/lib/typescript/handlers/createNativeWrapper.d.ts +4 -3
  151. package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -0
  152. package/lib/typescript/handlers/gestureHandlerCommon.d.ts +2 -68
  153. package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -0
  154. package/lib/typescript/handlers/gestures/GestureDetector.d.ts +24 -19
  155. package/lib/typescript/handlers/gestures/GestureDetector.d.ts.map +1 -0
  156. package/lib/typescript/index.d.ts +9 -52
  157. package/lib/typescript/index.d.ts.map +1 -0
  158. package/lib/typescript/init.d.ts +3 -2
  159. package/lib/typescript/init.d.ts.map +1 -0
  160. package/package.json +34 -120
  161. package/src/RNGestureHandlerModule.ts +4 -48
  162. package/src/components/GestureButtons.tsx +7 -5
  163. package/src/components/GestureHandlerButton.tsx +3 -3
  164. package/src/components/GestureHandlerRootView.tsx +15 -4
  165. package/src/components/RNGestureHandlerButton.tsx +23 -0
  166. package/src/components/touchables/GenericTouchable.tsx +7 -7
  167. package/src/components/touchables/TouchableOpacity.tsx +2 -1
  168. package/src/components/touchables/TouchableWithoutFeedback.tsx +3 -3
  169. package/src/components/touchables/index.ts +4 -4
  170. package/src/handlers/NativeViewGestureHandler.ts +1 -1
  171. package/src/handlers/PanGestureHandler.ts +4 -2
  172. package/src/handlers/TapGestureHandler.ts +2 -1
  173. package/src/handlers/createHandler.tsx +17 -15
  174. package/src/handlers/createNativeWrapper.tsx +2 -1
  175. package/src/handlers/gestureHandlerCommon.ts +5 -240
  176. package/src/handlers/gestures/GestureDetector.tsx +40 -39
  177. package/src/index.ts +158 -160
  178. package/src/init.ts +3 -3
  179. package/DrawerLayout/package.json +0 -6
  180. package/LICENSE +0 -21
  181. package/RNGestureHandler.podspec +0 -44
  182. package/Swipeable/package.json +0 -6
  183. package/android/build.gradle +0 -209
  184. package/android/common/src/main/java/com/swmansion/common/GestureHandlerStateManager.kt +0 -5
  185. package/android/fabric/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerComponentsRegistry.java +0 -29
  186. package/android/fabric/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -12
  187. package/android/gradle.properties +0 -19
  188. package/android/noreanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -10
  189. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +0 -50
  190. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +0 -23
  191. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +0 -25
  192. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +0 -16
  193. package/android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -13
  194. package/android/reanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -17
  195. package/android/src/main/AndroidManifest.xml +0 -3
  196. package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -21
  197. package/android/src/main/java/com/swmansion/gesturehandler/core/FlingGestureHandler.kt +0 -100
  198. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +0 -807
  199. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.kt +0 -8
  200. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +0 -671
  201. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerRegistry.kt +0 -8
  202. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureUtils.kt +0 -47
  203. package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +0 -120
  204. package/android/src/main/java/com/swmansion/gesturehandler/core/LongPressGestureHandler.kt +0 -100
  205. package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +0 -11
  206. package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +0 -257
  207. package/android/src/main/java/com/swmansion/gesturehandler/core/OnTouchEventListener.kt +0 -9
  208. package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +0 -322
  209. package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +0 -103
  210. package/android/src/main/java/com/swmansion/gesturehandler/core/PointerEventsConfig.kt +0 -23
  211. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureDetector.kt +0 -125
  212. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +0 -93
  213. package/android/src/main/java/com/swmansion/gesturehandler/core/ScaleGestureDetector.java +0 -558
  214. package/android/src/main/java/com/swmansion/gesturehandler/core/TapGestureHandler.kt +0 -168
  215. package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -10
  216. package/android/src/main/java/com/swmansion/gesturehandler/react/Extensions.kt +0 -16
  217. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +0 -423
  218. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.kt +0 -15
  219. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.kt +0 -75
  220. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +0 -74
  221. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +0 -702
  222. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +0 -100
  223. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +0 -142
  224. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.kt +0 -5
  225. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +0 -78
  226. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.kt +0 -51
  227. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.kt +0 -78
  228. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +0 -69
  229. package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -51
  230. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.kt +0 -30
  231. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.kt +0 -22
  232. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.kt +0 -30
  233. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.kt +0 -33
  234. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.kt +0 -5
  235. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.kt +0 -18
  236. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.kt +0 -42
  237. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.kt +0 -30
  238. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.kt +0 -30
  239. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.kt +0 -30
  240. package/android/src/main/jni/CMakeLists.txt +0 -37
  241. package/android/src/main/jni/cpp-adapter.cpp +0 -44
  242. package/ios/Handlers/RNFlingHandler.h +0 -4
  243. package/ios/Handlers/RNFlingHandler.m +0 -152
  244. package/ios/Handlers/RNForceTouchHandler.h +0 -4
  245. package/ios/Handlers/RNForceTouchHandler.m +0 -175
  246. package/ios/Handlers/RNHoverHandler.h +0 -12
  247. package/ios/Handlers/RNHoverHandler.m +0 -153
  248. package/ios/Handlers/RNLongPressHandler.h +0 -12
  249. package/ios/Handlers/RNLongPressHandler.m +0 -183
  250. package/ios/Handlers/RNManualHandler.h +0 -4
  251. package/ios/Handlers/RNManualHandler.m +0 -88
  252. package/ios/Handlers/RNNativeViewHandler.h +0 -15
  253. package/ios/Handlers/RNNativeViewHandler.mm +0 -193
  254. package/ios/Handlers/RNPanHandler.h +0 -12
  255. package/ios/Handlers/RNPanHandler.m +0 -331
  256. package/ios/Handlers/RNPinchHandler.h +0 -12
  257. package/ios/Handlers/RNPinchHandler.m +0 -95
  258. package/ios/Handlers/RNRotationHandler.h +0 -12
  259. package/ios/Handlers/RNRotationHandler.m +0 -93
  260. package/ios/Handlers/RNTapHandler.h +0 -12
  261. package/ios/Handlers/RNTapHandler.m +0 -265
  262. package/ios/RNGHTouchEventType.h +0 -9
  263. package/ios/RNGestureHandler.h +0 -90
  264. package/ios/RNGestureHandler.m +0 -493
  265. package/ios/RNGestureHandler.xcodeproj/project.pbxproj +0 -690
  266. package/ios/RNGestureHandler.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  267. package/ios/RNGestureHandlerActionType.h +0 -10
  268. package/ios/RNGestureHandlerButton.h +0 -19
  269. package/ios/RNGestureHandlerButton.m +0 -77
  270. package/ios/RNGestureHandlerButtonComponentView.h +0 -17
  271. package/ios/RNGestureHandlerButtonComponentView.mm +0 -64
  272. package/ios/RNGestureHandlerButtonManager.h +0 -5
  273. package/ios/RNGestureHandlerButtonManager.m +0 -34
  274. package/ios/RNGestureHandlerDirection.h +0 -8
  275. package/ios/RNGestureHandlerEvents.h +0 -65
  276. package/ios/RNGestureHandlerEvents.m +0 -260
  277. package/ios/RNGestureHandlerManager.h +0 -35
  278. package/ios/RNGestureHandlerManager.mm +0 -367
  279. package/ios/RNGestureHandlerModule.h +0 -7
  280. package/ios/RNGestureHandlerModule.mm +0 -320
  281. package/ios/RNGestureHandlerPointerTracker.h +0 -25
  282. package/ios/RNGestureHandlerPointerTracker.m +0 -243
  283. package/ios/RNGestureHandlerRegistry.h +0 -21
  284. package/ios/RNGestureHandlerRegistry.m +0 -63
  285. package/ios/RNGestureHandlerRootViewComponentView.mm +0 -21
  286. package/ios/RNGestureHandlerState.h +0 -10
  287. package/ios/RNGestureHandlerStateManager.h +0 -5
  288. package/ios/RNManualActivationRecognizer.h +0 -10
  289. package/ios/RNManualActivationRecognizer.m +0 -88
  290. package/ios/RNRootViewGestureRecognizer.h +0 -17
  291. package/ios/RNRootViewGestureRecognizer.m +0 -106
  292. package/jest-utils/package.json +0 -6
  293. package/jestSetup.js +0 -7
  294. package/lib/commonjs/ActionType.js +0 -15
  295. package/lib/commonjs/ActionType.js.map +0 -1
  296. package/lib/commonjs/Directions.js +0 -15
  297. package/lib/commonjs/Directions.js.map +0 -1
  298. package/lib/commonjs/EnableNewWebImplementation.js +0 -35
  299. package/lib/commonjs/EnableNewWebImplementation.js.map +0 -1
  300. package/lib/commonjs/GestureHandlerRootViewContext.js +0 -15
  301. package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
  302. package/lib/commonjs/PlatformConstants.js +0 -15
  303. package/lib/commonjs/PlatformConstants.js.map +0 -1
  304. package/lib/commonjs/PlatformConstants.web.js +0 -14
  305. package/lib/commonjs/PlatformConstants.web.js.map +0 -1
  306. package/lib/commonjs/RNGestureHandlerModule.macos.js +0 -149
  307. package/lib/commonjs/RNGestureHandlerModule.macos.js.map +0 -1
  308. package/lib/commonjs/RNGestureHandlerModule.web.js +0 -163
  309. package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
  310. package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -158
  311. package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
  312. package/lib/commonjs/RNRenderer.js +0 -16
  313. package/lib/commonjs/RNRenderer.js.map +0 -1
  314. package/lib/commonjs/RNRenderer.web.js +0 -11
  315. package/lib/commonjs/RNRenderer.web.js.map +0 -1
  316. package/lib/commonjs/State.js +0 -18
  317. package/lib/commonjs/State.js.map +0 -1
  318. package/lib/commonjs/TouchEventType.js +0 -16
  319. package/lib/commonjs/TouchEventType.js.map +0 -1
  320. package/lib/commonjs/components/DrawerLayout.js +0 -566
  321. package/lib/commonjs/components/DrawerLayout.js.map +0 -1
  322. package/lib/commonjs/components/GestureComponents.js +0 -115
  323. package/lib/commonjs/components/GestureComponents.js.map +0 -1
  324. package/lib/commonjs/components/GestureComponents.web.js +0 -52
  325. package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
  326. package/lib/commonjs/components/GestureHandlerButton.web.js +0 -24
  327. package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
  328. package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -31
  329. package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
  330. package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -25
  331. package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
  332. package/lib/commonjs/components/Swipeable.js +0 -408
  333. package/lib/commonjs/components/Swipeable.js.map +0 -1
  334. package/lib/commonjs/components/gestureHandlerRootHOC.js +0 -40
  335. package/lib/commonjs/components/gestureHandlerRootHOC.js.map +0 -1
  336. package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -109
  337. package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
  338. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -100
  339. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  340. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -12
  341. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
  342. package/lib/commonjs/getReactNativeVersion.js +0 -22
  343. package/lib/commonjs/getReactNativeVersion.js.map +0 -1
  344. package/lib/commonjs/getReactNativeVersion.web.js +0 -11
  345. package/lib/commonjs/getReactNativeVersion.web.js.map +0 -1
  346. package/lib/commonjs/getShadowNodeFromRef.js +0 -27
  347. package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
  348. package/lib/commonjs/getShadowNodeFromRef.web.js +0 -15
  349. package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
  350. package/lib/commonjs/ghQueueMicrotask.js +0 -12
  351. package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
  352. package/lib/commonjs/handlers/FlingGestureHandler.js +0 -25
  353. package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
  354. package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -49
  355. package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
  356. package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -27
  357. package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
  358. package/lib/commonjs/handlers/PinchGestureHandler.js +0 -23
  359. package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
  360. package/lib/commonjs/handlers/PressabilityDebugView.js +0 -14
  361. package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
  362. package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -12
  363. package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
  364. package/lib/commonjs/handlers/RotationGestureHandler.js +0 -23
  365. package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
  366. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
  367. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
  368. package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -147
  369. package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
  370. package/lib/commonjs/handlers/gestures/flingGesture.js +0 -34
  371. package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
  372. package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -65
  373. package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
  374. package/lib/commonjs/handlers/gestures/gesture.js +0 -241
  375. package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
  376. package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -105
  377. package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
  378. package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -90
  379. package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
  380. package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -65
  381. package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
  382. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -32
  383. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
  384. package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -74
  385. package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
  386. package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -35
  387. package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
  388. package/lib/commonjs/handlers/gestures/manualGesture.js +0 -31
  389. package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
  390. package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
  391. package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
  392. package/lib/commonjs/handlers/gestures/panGesture.js +0 -149
  393. package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
  394. package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -45
  395. package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
  396. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -37
  397. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
  398. package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -45
  399. package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
  400. package/lib/commonjs/handlers/gestures/tapGesture.js +0 -60
  401. package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
  402. package/lib/commonjs/handlers/handlersRegistry.js +0 -67
  403. package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
  404. package/lib/commonjs/jestUtils/index.js +0 -20
  405. package/lib/commonjs/jestUtils/index.js.map +0 -1
  406. package/lib/commonjs/jestUtils/jestUtils.js +0 -375
  407. package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
  408. package/lib/commonjs/mocks.js +0 -66
  409. package/lib/commonjs/mocks.js.map +0 -1
  410. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js +0 -15
  411. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
  412. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js +0 -15
  413. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
  414. package/lib/commonjs/typeUtils.js +0 -2
  415. package/lib/commonjs/typeUtils.js.map +0 -1
  416. package/lib/commonjs/utils.js +0 -63
  417. package/lib/commonjs/utils.js.map +0 -1
  418. package/lib/commonjs/web/constants.js +0 -16
  419. package/lib/commonjs/web/constants.js.map +0 -1
  420. package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -165
  421. package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
  422. package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -156
  423. package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
  424. package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -167
  425. package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
  426. package/lib/commonjs/web/handlers/GestureHandler.js +0 -794
  427. package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
  428. package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -62
  429. package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
  430. package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -151
  431. package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
  432. package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -61
  433. package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
  434. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -178
  435. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
  436. package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -448
  437. package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
  438. package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -174
  439. package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
  440. package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -186
  441. package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
  442. package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -280
  443. package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
  444. package/lib/commonjs/web/interfaces.js +0 -55
  445. package/lib/commonjs/web/interfaces.js.map +0 -1
  446. package/lib/commonjs/web/tools/CircularBuffer.js +0 -59
  447. package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
  448. package/lib/commonjs/web/tools/EventManager.js +0 -127
  449. package/lib/commonjs/web/tools/EventManager.js.map +0 -1
  450. package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -6
  451. package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
  452. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -349
  453. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  454. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -118
  455. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  456. package/lib/commonjs/web/tools/InteractionManager.js +0 -114
  457. package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
  458. package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -204
  459. package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
  460. package/lib/commonjs/web/tools/NodeManager.js +0 -48
  461. package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
  462. package/lib/commonjs/web/tools/PointerEventManager.js +0 -198
  463. package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
  464. package/lib/commonjs/web/tools/PointerTracker.js +0 -226
  465. package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
  466. package/lib/commonjs/web/tools/TouchEventManager.js +0 -138
  467. package/lib/commonjs/web/tools/TouchEventManager.js.map +0 -1
  468. package/lib/commonjs/web/tools/VelocityTracker.js +0 -111
  469. package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
  470. package/lib/commonjs/web/utils.js +0 -15
  471. package/lib/commonjs/web/utils.js.map +0 -1
  472. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js +0 -105
  473. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js.map +0 -1
  474. package/lib/commonjs/web_hammer/DraggingGestureHandler.js +0 -53
  475. package/lib/commonjs/web_hammer/DraggingGestureHandler.js.map +0 -1
  476. package/lib/commonjs/web_hammer/Errors.js +0 -16
  477. package/lib/commonjs/web_hammer/Errors.js.map +0 -1
  478. package/lib/commonjs/web_hammer/FlingGestureHandler.js +0 -170
  479. package/lib/commonjs/web_hammer/FlingGestureHandler.js.map +0 -1
  480. package/lib/commonjs/web_hammer/GestureHandler.js +0 -579
  481. package/lib/commonjs/web_hammer/GestureHandler.js.map +0 -1
  482. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js +0 -54
  483. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js.map +0 -1
  484. package/lib/commonjs/web_hammer/LongPressGestureHandler.js +0 -71
  485. package/lib/commonjs/web_hammer/LongPressGestureHandler.js.map +0 -1
  486. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js +0 -66
  487. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js.map +0 -1
  488. package/lib/commonjs/web_hammer/NodeManager.js +0 -46
  489. package/lib/commonjs/web_hammer/NodeManager.js.map +0 -1
  490. package/lib/commonjs/web_hammer/PanGestureHandler.js +0 -208
  491. package/lib/commonjs/web_hammer/PanGestureHandler.js.map +0 -1
  492. package/lib/commonjs/web_hammer/PinchGestureHandler.js +0 -40
  493. package/lib/commonjs/web_hammer/PinchGestureHandler.js.map +0 -1
  494. package/lib/commonjs/web_hammer/PressGestureHandler.js +0 -188
  495. package/lib/commonjs/web_hammer/PressGestureHandler.js.map +0 -1
  496. package/lib/commonjs/web_hammer/RotationGestureHandler.js +0 -44
  497. package/lib/commonjs/web_hammer/RotationGestureHandler.js.map +0 -1
  498. package/lib/commonjs/web_hammer/TapGestureHandler.js +0 -192
  499. package/lib/commonjs/web_hammer/TapGestureHandler.js.map +0 -1
  500. package/lib/commonjs/web_hammer/constants.js +0 -64
  501. package/lib/commonjs/web_hammer/constants.js.map +0 -1
  502. package/lib/commonjs/web_hammer/utils.js +0 -42
  503. package/lib/commonjs/web_hammer/utils.js.map +0 -1
  504. package/lib/module/ActionType.js +0 -7
  505. package/lib/module/ActionType.js.map +0 -1
  506. package/lib/module/Directions.js +0 -7
  507. package/lib/module/Directions.js.map +0 -1
  508. package/lib/module/EnableNewWebImplementation.js +0 -22
  509. package/lib/module/EnableNewWebImplementation.js.map +0 -1
  510. package/lib/module/GestureHandlerRootViewContext.js +0 -3
  511. package/lib/module/GestureHandlerRootViewContext.js.map +0 -1
  512. package/lib/module/PlatformConstants.js +0 -5
  513. package/lib/module/PlatformConstants.js.map +0 -1
  514. package/lib/module/PlatformConstants.web.js +0 -7
  515. package/lib/module/PlatformConstants.web.js.map +0 -1
  516. package/lib/module/RNGestureHandlerModule.macos.js +0 -110
  517. package/lib/module/RNGestureHandlerModule.macos.js.map +0 -1
  518. package/lib/module/RNGestureHandlerModule.web.js +0 -122
  519. package/lib/module/RNGestureHandlerModule.web.js.map +0 -1
  520. package/lib/module/RNGestureHandlerModule.windows.js +0 -118
  521. package/lib/module/RNGestureHandlerModule.windows.js.map +0 -1
  522. package/lib/module/RNRenderer.js +0 -4
  523. package/lib/module/RNRenderer.js.map +0 -1
  524. package/lib/module/RNRenderer.web.js +0 -4
  525. package/lib/module/RNRenderer.web.js.map +0 -1
  526. package/lib/module/State.js +0 -10
  527. package/lib/module/State.js.map +0 -1
  528. package/lib/module/TouchEventType.js +0 -8
  529. package/lib/module/TouchEventType.js.map +0 -1
  530. package/lib/module/components/DrawerLayout.js +0 -551
  531. package/lib/module/components/DrawerLayout.js.map +0 -1
  532. package/lib/module/components/GestureComponents.js +0 -90
  533. package/lib/module/components/GestureComponents.js.map +0 -1
  534. package/lib/module/components/GestureComponents.web.js +0 -28
  535. package/lib/module/components/GestureComponents.web.js.map +0 -1
  536. package/lib/module/components/GestureHandlerButton.web.js +0 -9
  537. package/lib/module/components/GestureHandlerButton.web.js.map +0 -1
  538. package/lib/module/components/GestureHandlerRootView.android.js +0 -14
  539. package/lib/module/components/GestureHandlerRootView.android.js.map +0 -1
  540. package/lib/module/components/GestureHandlerRootView.web.js +0 -9
  541. package/lib/module/components/GestureHandlerRootView.web.js.map +0 -1
  542. package/lib/module/components/Swipeable.js +0 -390
  543. package/lib/module/components/Swipeable.js.map +0 -1
  544. package/lib/module/components/gestureHandlerRootHOC.js +0 -22
  545. package/lib/module/components/gestureHandlerRootHOC.js.map +0 -1
  546. package/lib/module/components/touchables/TouchableHighlight.js +0 -95
  547. package/lib/module/components/touchables/TouchableHighlight.js.map +0 -1
  548. package/lib/module/components/touchables/TouchableNativeFeedback.android.js +0 -84
  549. package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  550. package/lib/module/components/touchables/TouchableNativeFeedback.js +0 -3
  551. package/lib/module/components/touchables/TouchableNativeFeedback.js.map +0 -1
  552. package/lib/module/getReactNativeVersion.js +0 -10
  553. package/lib/module/getReactNativeVersion.js.map +0 -1
  554. package/lib/module/getReactNativeVersion.web.js +0 -4
  555. package/lib/module/getReactNativeVersion.web.js.map +0 -1
  556. package/lib/module/getShadowNodeFromRef.js +0 -20
  557. package/lib/module/getShadowNodeFromRef.js.map +0 -1
  558. package/lib/module/getShadowNodeFromRef.web.js +0 -8
  559. package/lib/module/getShadowNodeFromRef.web.js.map +0 -1
  560. package/lib/module/ghQueueMicrotask.js +0 -5
  561. package/lib/module/ghQueueMicrotask.js.map +0 -1
  562. package/lib/module/handlers/FlingGestureHandler.js +0 -11
  563. package/lib/module/handlers/FlingGestureHandler.js.map +0 -1
  564. package/lib/module/handlers/ForceTouchGestureHandler.js +0 -31
  565. package/lib/module/handlers/ForceTouchGestureHandler.js.map +0 -1
  566. package/lib/module/handlers/LongPressGestureHandler.js +0 -13
  567. package/lib/module/handlers/LongPressGestureHandler.js.map +0 -1
  568. package/lib/module/handlers/PinchGestureHandler.js +0 -10
  569. package/lib/module/handlers/PinchGestureHandler.js.map +0 -1
  570. package/lib/module/handlers/PressabilityDebugView.js +0 -3
  571. package/lib/module/handlers/PressabilityDebugView.js.map +0 -1
  572. package/lib/module/handlers/PressabilityDebugView.web.js +0 -5
  573. package/lib/module/handlers/PressabilityDebugView.web.js.map +0 -1
  574. package/lib/module/handlers/RotationGestureHandler.js +0 -10
  575. package/lib/module/handlers/RotationGestureHandler.js.map +0 -1
  576. package/lib/module/handlers/gestureHandlerTypesCompat.js +0 -2
  577. package/lib/module/handlers/gestureHandlerTypesCompat.js.map +0 -1
  578. package/lib/module/handlers/gestures/eventReceiver.js +0 -131
  579. package/lib/module/handlers/gestures/eventReceiver.js.map +0 -1
  580. package/lib/module/handlers/gestures/flingGesture.js +0 -24
  581. package/lib/module/handlers/gestures/flingGesture.js.map +0 -1
  582. package/lib/module/handlers/gestures/forceTouchGesture.js +0 -56
  583. package/lib/module/handlers/gestures/forceTouchGesture.js.map +0 -1
  584. package/lib/module/handlers/gestures/gesture.js +0 -222
  585. package/lib/module/handlers/gestures/gesture.js.map +0 -1
  586. package/lib/module/handlers/gestures/gestureComposition.js +0 -90
  587. package/lib/module/handlers/gestures/gestureComposition.js.map +0 -1
  588. package/lib/module/handlers/gestures/gestureObjects.js +0 -71
  589. package/lib/module/handlers/gestures/gestureObjects.js.map +0 -1
  590. package/lib/module/handlers/gestures/gestureStateManager.js +0 -54
  591. package/lib/module/handlers/gestures/gestureStateManager.js.map +0 -1
  592. package/lib/module/handlers/gestures/gestureStateManager.web.js +0 -21
  593. package/lib/module/handlers/gestures/gestureStateManager.web.js.map +0 -1
  594. package/lib/module/handlers/gestures/hoverGesture.js +0 -62
  595. package/lib/module/handlers/gestures/hoverGesture.js.map +0 -1
  596. package/lib/module/handlers/gestures/longPressGesture.js +0 -25
  597. package/lib/module/handlers/gestures/longPressGesture.js.map +0 -1
  598. package/lib/module/handlers/gestures/manualGesture.js +0 -22
  599. package/lib/module/handlers/gestures/manualGesture.js.map +0 -1
  600. package/lib/module/handlers/gestures/nativeGesture.js +0 -24
  601. package/lib/module/handlers/gestures/nativeGesture.js.map +0 -1
  602. package/lib/module/handlers/gestures/panGesture.js +0 -140
  603. package/lib/module/handlers/gestures/panGesture.js.map +0 -1
  604. package/lib/module/handlers/gestures/pinchGesture.js +0 -36
  605. package/lib/module/handlers/gestures/pinchGesture.js.map +0 -1
  606. package/lib/module/handlers/gestures/reanimatedWrapper.js +0 -30
  607. package/lib/module/handlers/gestures/reanimatedWrapper.js.map +0 -1
  608. package/lib/module/handlers/gestures/rotationGesture.js +0 -36
  609. package/lib/module/handlers/gestures/rotationGesture.js.map +0 -1
  610. package/lib/module/handlers/gestures/tapGesture.js +0 -50
  611. package/lib/module/handlers/gestures/tapGesture.js.map +0 -1
  612. package/lib/module/handlers/handlersRegistry.js +0 -44
  613. package/lib/module/handlers/handlersRegistry.js.map +0 -1
  614. package/lib/module/jestUtils/index.js +0 -2
  615. package/lib/module/jestUtils/index.js.map +0 -1
  616. package/lib/module/jestUtils/jestUtils.js +0 -350
  617. package/lib/module/jestUtils/jestUtils.js.map +0 -1
  618. package/lib/module/mocks.js +0 -56
  619. package/lib/module/mocks.js.map +0 -1
  620. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js +0 -3
  621. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
  622. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js +0 -3
  623. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
  624. package/lib/module/typeUtils.js +0 -2
  625. package/lib/module/typeUtils.js.map +0 -1
  626. package/lib/module/utils.js +0 -44
  627. package/lib/module/utils.js.map +0 -1
  628. package/lib/module/web/constants.js +0 -8
  629. package/lib/module/web/constants.js.map +0 -1
  630. package/lib/module/web/detectors/RotationGestureDetector.js +0 -155
  631. package/lib/module/web/detectors/RotationGestureDetector.js.map +0 -1
  632. package/lib/module/web/detectors/ScaleGestureDetector.js +0 -145
  633. package/lib/module/web/detectors/ScaleGestureDetector.js.map +0 -1
  634. package/lib/module/web/handlers/FlingGestureHandler.js +0 -152
  635. package/lib/module/web/handlers/FlingGestureHandler.js.map +0 -1
  636. package/lib/module/web/handlers/GestureHandler.js +0 -776
  637. package/lib/module/web/handlers/GestureHandler.js.map +0 -1
  638. package/lib/module/web/handlers/HoverGestureHandler.js +0 -47
  639. package/lib/module/web/handlers/HoverGestureHandler.js.map +0 -1
  640. package/lib/module/web/handlers/LongPressGestureHandler.js +0 -136
  641. package/lib/module/web/handlers/LongPressGestureHandler.js.map +0 -1
  642. package/lib/module/web/handlers/ManualGestureHandler.js +0 -49
  643. package/lib/module/web/handlers/ManualGestureHandler.js.map +0 -1
  644. package/lib/module/web/handlers/NativeViewGestureHandler.js +0 -163
  645. package/lib/module/web/handlers/NativeViewGestureHandler.js.map +0 -1
  646. package/lib/module/web/handlers/PanGestureHandler.js +0 -433
  647. package/lib/module/web/handlers/PanGestureHandler.js.map +0 -1
  648. package/lib/module/web/handlers/PinchGestureHandler.js +0 -159
  649. package/lib/module/web/handlers/PinchGestureHandler.js.map +0 -1
  650. package/lib/module/web/handlers/RotationGestureHandler.js +0 -171
  651. package/lib/module/web/handlers/RotationGestureHandler.js.map +0 -1
  652. package/lib/module/web/handlers/TapGestureHandler.js +0 -265
  653. package/lib/module/web/handlers/TapGestureHandler.js.map +0 -1
  654. package/lib/module/web/interfaces.js +0 -45
  655. package/lib/module/web/interfaces.js.map +0 -1
  656. package/lib/module/web/tools/CircularBuffer.js +0 -50
  657. package/lib/module/web/tools/CircularBuffer.js.map +0 -1
  658. package/lib/module/web/tools/EventManager.js +0 -118
  659. package/lib/module/web/tools/EventManager.js.map +0 -1
  660. package/lib/module/web/tools/GestureHandlerDelegate.js +0 -2
  661. package/lib/module/web/tools/GestureHandlerDelegate.js.map +0 -1
  662. package/lib/module/web/tools/GestureHandlerOrchestrator.js +0 -335
  663. package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  664. package/lib/module/web/tools/GestureHandlerWebDelegate.js +0 -102
  665. package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  666. package/lib/module/web/tools/InteractionManager.js +0 -105
  667. package/lib/module/web/tools/InteractionManager.js.map +0 -1
  668. package/lib/module/web/tools/LeastSquareSolver.js +0 -195
  669. package/lib/module/web/tools/LeastSquareSolver.js.map +0 -1
  670. package/lib/module/web/tools/NodeManager.js +0 -39
  671. package/lib/module/web/tools/NodeManager.js.map +0 -1
  672. package/lib/module/web/tools/PointerEventManager.js +0 -184
  673. package/lib/module/web/tools/PointerEventManager.js.map +0 -1
  674. package/lib/module/web/tools/PointerTracker.js +0 -213
  675. package/lib/module/web/tools/PointerTracker.js.map +0 -1
  676. package/lib/module/web/tools/TouchEventManager.js +0 -124
  677. package/lib/module/web/tools/TouchEventManager.js.map +0 -1
  678. package/lib/module/web/tools/VelocityTracker.js +0 -98
  679. package/lib/module/web/tools/VelocityTracker.js.map +0 -1
  680. package/lib/module/web/utils.js +0 -8
  681. package/lib/module/web/utils.js.map +0 -1
  682. package/lib/module/web_hammer/DiscreteGestureHandler.js +0 -94
  683. package/lib/module/web_hammer/DiscreteGestureHandler.js.map +0 -1
  684. package/lib/module/web_hammer/DraggingGestureHandler.js +0 -40
  685. package/lib/module/web_hammer/DraggingGestureHandler.js.map +0 -1
  686. package/lib/module/web_hammer/Errors.js +0 -7
  687. package/lib/module/web_hammer/Errors.js.map +0 -1
  688. package/lib/module/web_hammer/FlingGestureHandler.js +0 -156
  689. package/lib/module/web_hammer/FlingGestureHandler.js.map +0 -1
  690. package/lib/module/web_hammer/GestureHandler.js +0 -563
  691. package/lib/module/web_hammer/GestureHandler.js.map +0 -1
  692. package/lib/module/web_hammer/IndiscreteGestureHandler.js +0 -44
  693. package/lib/module/web_hammer/IndiscreteGestureHandler.js.map +0 -1
  694. package/lib/module/web_hammer/LongPressGestureHandler.js +0 -58
  695. package/lib/module/web_hammer/LongPressGestureHandler.js.map +0 -1
  696. package/lib/module/web_hammer/NativeViewGestureHandler.js +0 -49
  697. package/lib/module/web_hammer/NativeViewGestureHandler.js.map +0 -1
  698. package/lib/module/web_hammer/NodeManager.js +0 -33
  699. package/lib/module/web_hammer/NodeManager.js.map +0 -1
  700. package/lib/module/web_hammer/PanGestureHandler.js +0 -194
  701. package/lib/module/web_hammer/PanGestureHandler.js.map +0 -1
  702. package/lib/module/web_hammer/PinchGestureHandler.js +0 -29
  703. package/lib/module/web_hammer/PinchGestureHandler.js.map +0 -1
  704. package/lib/module/web_hammer/PressGestureHandler.js +0 -174
  705. package/lib/module/web_hammer/PressGestureHandler.js.map +0 -1
  706. package/lib/module/web_hammer/RotationGestureHandler.js +0 -32
  707. package/lib/module/web_hammer/RotationGestureHandler.js.map +0 -1
  708. package/lib/module/web_hammer/TapGestureHandler.js +0 -180
  709. package/lib/module/web_hammer/TapGestureHandler.js.map +0 -1
  710. package/lib/module/web_hammer/constants.js +0 -43
  711. package/lib/module/web_hammer/constants.js.map +0 -1
  712. package/lib/module/web_hammer/utils.js +0 -19
  713. package/lib/module/web_hammer/utils.js.map +0 -1
  714. package/lib/typescript/ActionType.d.ts +0 -7
  715. package/lib/typescript/Directions.d.ts +0 -7
  716. package/lib/typescript/EnableNewWebImplementation.d.ts +0 -3
  717. package/lib/typescript/GestureHandlerRootViewContext.d.ts +0 -3
  718. package/lib/typescript/PlatformConstants.d.ts +0 -5
  719. package/lib/typescript/PlatformConstants.web.d.ts +0 -4
  720. package/lib/typescript/RNGestureHandlerModule.macos.d.ts +0 -47
  721. package/lib/typescript/RNGestureHandlerModule.web.d.ts +0 -50
  722. package/lib/typescript/RNGestureHandlerModule.windows.d.ts +0 -48
  723. package/lib/typescript/RNRenderer.d.ts +0 -1
  724. package/lib/typescript/RNRenderer.web.d.ts +0 -3
  725. package/lib/typescript/State.d.ts +0 -9
  726. package/lib/typescript/TouchEventType.d.ts +0 -8
  727. package/lib/typescript/components/DrawerLayout.d.ts +0 -148
  728. package/lib/typescript/components/GestureComponents.d.ts +0 -22
  729. package/lib/typescript/components/GestureComponents.web.d.ts +0 -8
  730. package/lib/typescript/components/GestureHandlerButton.web.d.ts +0 -4
  731. package/lib/typescript/components/GestureHandlerRootView.android.d.ts +0 -6
  732. package/lib/typescript/components/GestureHandlerRootView.web.d.ts +0 -6
  733. package/lib/typescript/components/Swipeable.d.ts +0 -178
  734. package/lib/typescript/components/gestureHandlerRootHOC.d.ts +0 -3
  735. package/lib/typescript/components/touchables/TouchableHighlight.d.ts +0 -36
  736. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +0 -45
  737. package/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts +0 -2
  738. package/lib/typescript/getReactNativeVersion.d.ts +0 -4
  739. package/lib/typescript/getReactNativeVersion.web.d.ts +0 -1
  740. package/lib/typescript/getShadowNodeFromRef.d.ts +0 -1
  741. package/lib/typescript/getShadowNodeFromRef.web.d.ts +0 -1
  742. package/lib/typescript/ghQueueMicrotask.d.ts +0 -1
  743. package/lib/typescript/handlers/FlingGestureHandler.d.ts +0 -34
  744. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +0 -44
  745. package/lib/typescript/handlers/LongPressGestureHandler.d.ts +0 -56
  746. package/lib/typescript/handlers/PinchGestureHandler.d.ts +0 -29
  747. package/lib/typescript/handlers/PressabilityDebugView.d.ts +0 -1
  748. package/lib/typescript/handlers/PressabilityDebugView.web.d.ts +0 -1
  749. package/lib/typescript/handlers/RotationGestureHandler.d.ts +0 -29
  750. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +0 -42
  751. package/lib/typescript/handlers/gestures/eventReceiver.d.ts +0 -4
  752. package/lib/typescript/handlers/gestures/flingGesture.d.ts +0 -9
  753. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +0 -15
  754. package/lib/typescript/handlers/gestures/gesture.d.ts +0 -110
  755. package/lib/typescript/handlers/gestures/gestureComposition.d.ts +0 -21
  756. package/lib/typescript/handlers/gestures/gestureObjects.d.ts +0 -41
  757. package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +0 -9
  758. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +0 -4
  759. package/lib/typescript/handlers/gestures/hoverGesture.d.ts +0 -32
  760. package/lib/typescript/handlers/gestures/longPressGesture.d.ts +0 -9
  761. package/lib/typescript/handlers/gestures/manualGesture.d.ts +0 -7
  762. package/lib/typescript/handlers/gestures/nativeGesture.d.ts +0 -9
  763. package/lib/typescript/handlers/gestures/panGesture.d.ts +0 -26
  764. package/lib/typescript/handlers/gestures/pinchGesture.d.ts +0 -11
  765. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +0 -14
  766. package/lib/typescript/handlers/gestures/rotationGesture.d.ts +0 -12
  767. package/lib/typescript/handlers/gestures/tapGesture.d.ts +0 -14
  768. package/lib/typescript/handlers/handlersRegistry.d.ts +0 -14
  769. package/lib/typescript/jestUtils/index.d.ts +0 -1
  770. package/lib/typescript/jestUtils/jestUtils.d.ts +0 -28
  771. package/lib/typescript/mocks.d.ts +0 -44
  772. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +0 -14
  773. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +0 -6
  774. package/lib/typescript/typeUtils.d.ts +0 -1
  775. package/lib/typescript/utils.d.ts +0 -8
  776. package/lib/typescript/web/constants.d.ts +0 -7
  777. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +0 -30
  778. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +0 -29
  779. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +0 -27
  780. package/lib/typescript/web/handlers/GestureHandler.d.ts +0 -90
  781. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +0 -10
  782. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +0 -26
  783. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +0 -12
  784. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +0 -24
  785. package/lib/typescript/web/handlers/PanGestureHandler.d.ts +0 -55
  786. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +0 -28
  787. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +0 -29
  788. package/lib/typescript/web/handlers/TapGestureHandler.d.ts +0 -39
  789. package/lib/typescript/web/interfaces.d.ts +0 -141
  790. package/lib/typescript/web/tools/CircularBuffer.d.ts +0 -11
  791. package/lib/typescript/web/tools/EventManager.d.ts +0 -34
  792. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +0 -22
  793. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +0 -29
  794. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +0 -21
  795. package/lib/typescript/web/tools/InteractionManager.d.ts +0 -17
  796. package/lib/typescript/web/tools/LeastSquareSolver.d.ts +0 -12
  797. package/lib/typescript/web/tools/NodeManager.d.ts +0 -11
  798. package/lib/typescript/web/tools/PointerEventManager.d.ts +0 -8
  799. package/lib/typescript/web/tools/PointerTracker.d.ts +0 -53
  800. package/lib/typescript/web/tools/TouchEventManager.d.ts +0 -6
  801. package/lib/typescript/web/tools/VelocityTracker.d.ts +0 -13
  802. package/lib/typescript/web/utils.d.ts +0 -4
  803. package/lib/typescript/web_hammer/DiscreteGestureHandler.d.ts +0 -20
  804. package/lib/typescript/web_hammer/DraggingGestureHandler.d.ts +0 -15
  805. package/lib/typescript/web_hammer/Errors.d.ts +0 -3
  806. package/lib/typescript/web_hammer/FlingGestureHandler.d.ts +0 -43
  807. package/lib/typescript/web_hammer/GestureHandler.d.ts +0 -145
  808. package/lib/typescript/web_hammer/IndiscreteGestureHandler.d.ts +0 -40
  809. package/lib/typescript/web_hammer/LongPressGestureHandler.d.ts +0 -38
  810. package/lib/typescript/web_hammer/NativeViewGestureHandler.d.ts +0 -7
  811. package/lib/typescript/web_hammer/NodeManager.d.ts +0 -8
  812. package/lib/typescript/web_hammer/PanGestureHandler.d.ts +0 -56
  813. package/lib/typescript/web_hammer/PinchGestureHandler.d.ts +0 -13
  814. package/lib/typescript/web_hammer/PressGestureHandler.d.ts +0 -83
  815. package/lib/typescript/web_hammer/RotationGestureHandler.d.ts +0 -13
  816. package/lib/typescript/web_hammer/TapGestureHandler.d.ts +0 -57
  817. package/lib/typescript/web_hammer/constants.d.ts +0 -39
  818. package/lib/typescript/web_hammer/utils.d.ts +0 -9
  819. package/src/ActionType.ts +0 -9
  820. package/src/Directions.ts +0 -9
  821. package/src/EnableNewWebImplementation.ts +0 -35
  822. package/src/GestureHandlerRootViewContext.ts +0 -3
  823. package/src/PlatformConstants.ts +0 -8
  824. package/src/PlatformConstants.web.ts +0 -5
  825. package/src/RNGestureHandlerModule.macos.ts +0 -133
  826. package/src/RNGestureHandlerModule.web.ts +0 -146
  827. package/src/RNGestureHandlerModule.windows.ts +0 -144
  828. package/src/RNRenderer.ts +0 -3
  829. package/src/RNRenderer.web.ts +0 -3
  830. package/src/State.ts +0 -13
  831. package/src/TouchEventType.ts +0 -10
  832. package/src/components/DrawerLayout.tsx +0 -743
  833. package/src/components/GestureComponents.tsx +0 -148
  834. package/src/components/GestureComponents.web.tsx +0 -41
  835. package/src/components/GestureHandlerButton.web.tsx +0 -6
  836. package/src/components/GestureHandlerRootView.android.tsx +0 -24
  837. package/src/components/GestureHandlerRootView.web.tsx +0 -17
  838. package/src/components/Swipeable.tsx +0 -584
  839. package/src/components/gestureHandlerRootHOC.tsx +0 -32
  840. package/src/components/touchables/TouchableHighlight.tsx +0 -115
  841. package/src/components/touchables/TouchableNativeFeedback.android.tsx +0 -91
  842. package/src/components/touchables/TouchableNativeFeedback.tsx +0 -3
  843. package/src/getReactNativeVersion.ts +0 -11
  844. package/src/getReactNativeVersion.web.ts +0 -3
  845. package/src/getShadowNodeFromRef.ts +0 -22
  846. package/src/getShadowNodeFromRef.web.ts +0 -7
  847. package/src/ghQueueMicrotask.ts +0 -5
  848. package/src/handlers/FlingGestureHandler.ts +0 -59
  849. package/src/handlers/ForceTouchGestureHandler.ts +0 -90
  850. package/src/handlers/LongPressGestureHandler.ts +0 -88
  851. package/src/handlers/PinchGestureHandler.ts +0 -48
  852. package/src/handlers/PressabilityDebugView.tsx +0 -2
  853. package/src/handlers/PressabilityDebugView.web.tsx +0 -4
  854. package/src/handlers/RotationGestureHandler.ts +0 -48
  855. package/src/handlers/gestureHandlerTypesCompat.ts +0 -106
  856. package/src/handlers/gestures/eventReceiver.ts +0 -155
  857. package/src/handlers/gestures/flingGesture.ts +0 -27
  858. package/src/handlers/gestures/forceTouchGesture.ts +0 -74
  859. package/src/handlers/gestures/gesture.ts +0 -349
  860. package/src/handlers/gestures/gestureComposition.ts +0 -122
  861. package/src/handlers/gestures/gestureObjects.ts +0 -84
  862. package/src/handlers/gestures/gestureStateManager.ts +0 -62
  863. package/src/handlers/gestures/gestureStateManager.web.ts +0 -24
  864. package/src/handlers/gestures/hoverGesture.ts +0 -83
  865. package/src/handlers/gestures/longPressGesture.ts +0 -28
  866. package/src/handlers/gestures/manualGesture.ts +0 -31
  867. package/src/handlers/gestures/nativeGesture.ts +0 -27
  868. package/src/handlers/gestures/panGesture.ts +0 -152
  869. package/src/handlers/gestures/pinchGesture.ts +0 -51
  870. package/src/handlers/gestures/reanimatedWrapper.ts +0 -56
  871. package/src/handlers/gestures/rotationGesture.ts +0 -51
  872. package/src/handlers/gestures/tapGesture.ts +0 -53
  873. package/src/handlers/handlersRegistry.ts +0 -60
  874. package/src/jestUtils/index.ts +0 -1
  875. package/src/jestUtils/jestUtils.ts +0 -505
  876. package/src/mocks.ts +0 -67
  877. package/src/specs/RNGestureHandlerButtonNativeComponent.ts +0 -18
  878. package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -6
  879. package/src/typeUtils.ts +0 -1
  880. package/src/utils.ts +0 -54
  881. package/src/web/constants.ts +0 -8
  882. package/src/web/detectors/RotationGestureDetector.ts +0 -168
  883. package/src/web/detectors/ScaleGestureDetector.ts +0 -172
  884. package/src/web/handlers/FlingGestureHandler.ts +0 -161
  885. package/src/web/handlers/GestureHandler.ts +0 -849
  886. package/src/web/handlers/HoverGestureHandler.ts +0 -43
  887. package/src/web/handlers/LongPressGestureHandler.ts +0 -125
  888. package/src/web/handlers/ManualGestureHandler.ts +0 -43
  889. package/src/web/handlers/NativeViewGestureHandler.ts +0 -167
  890. package/src/web/handlers/PanGestureHandler.ts +0 -485
  891. package/src/web/handlers/PinchGestureHandler.ts +0 -158
  892. package/src/web/handlers/RotationGestureHandler.ts +0 -172
  893. package/src/web/handlers/TapGestureHandler.ts +0 -273
  894. package/src/web/interfaces.ts +0 -167
  895. package/src/web/tools/EventManager.ts +0 -104
  896. package/src/web/tools/GestureHandlerDelegate.ts +0 -23
  897. package/src/web/tools/GestureHandlerOrchestrator.ts +0 -389
  898. package/src/web/tools/GestureHandlerWebDelegate.ts +0 -115
  899. package/src/web/tools/NodeManager.ts +0 -43
  900. package/src/web/tools/PointerEventManager.ts +0 -202
  901. package/src/web/tools/TouchEventManager.ts +0 -167
  902. package/src/web/utils.ts +0 -8
  903. package/src/web_hammer/DiscreteGestureHandler.ts +0 -82
  904. package/src/web_hammer/DraggingGestureHandler.ts +0 -34
  905. package/src/web_hammer/Errors.ts +0 -7
  906. package/src/web_hammer/FlingGestureHandler.ts +0 -134
  907. package/src/web_hammer/GestureHandler.ts +0 -599
  908. package/src/web_hammer/IndiscreteGestureHandler.ts +0 -33
  909. package/src/web_hammer/LongPressGestureHandler.ts +0 -56
  910. package/src/web_hammer/NativeViewGestureHandler.ts +0 -47
  911. package/src/web_hammer/NodeManager.ts +0 -42
  912. package/src/web_hammer/PanGestureHandler.ts +0 -226
  913. package/src/web_hammer/PinchGestureHandler.ts +0 -25
  914. package/src/web_hammer/PressGestureHandler.ts +0 -167
  915. package/src/web_hammer/RotationGestureHandler.ts +0 -25
  916. package/src/web_hammer/TapGestureHandler.ts +0 -172
  917. package/src/web_hammer/constants.ts +0 -48
  918. package/src/web_hammer/utils.ts +0 -24
@@ -1 +1 @@
1
- {"version":3,"sources":["GestureButtons.tsx"],"names":["RawButton","GestureHandlerButton","shouldCancelWhenOutside","shouldActivateOnStart","BaseButton","React","Component","constructor","props","nativeEvent","state","oldState","pointerInside","active","State","ACTIVE","lastActive","onActiveStateChange","longPressDetected","CANCELLED","onPress","Platform","OS","BEGAN","onLongPress","longPressTimeout","setTimeout","delayLongPress","undefined","clearTimeout","END","FAILED","e","onHandlerStateChange","handleEvent","onGestureEvent","render","rippleColor","rest","AnimatedBaseButton","Animated","createAnimatedComponent","btnStyles","StyleSheet","create","underlay","position","left","right","bottom","top","RectButton","opacity","setValue","activeOpacity","Value","children","style","resolvedStyle","flatten","backgroundColor","underlayColor","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","BorderlessButton","borderless"],"mappings":"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","sourcesContent":["import * as React from 'react';\r\nimport {\r\n Animated,\r\n Platform,\r\n processColor,\r\n StyleSheet,\r\n StyleProp,\r\n ViewStyle,\r\n} from 'react-native';\r\n\r\nimport createNativeWrapper from '../handlers/createNativeWrapper';\r\nimport GestureHandlerButton from './GestureHandlerButton';\r\nimport { State } from '../State';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n} from '../handlers/gestureHandlerCommon';\r\nimport {\r\n NativeViewGestureHandlerPayload,\r\n NativeViewGestureHandlerProps,\r\n} from '../handlers/NativeViewGestureHandler';\r\n\r\nexport interface RawButtonProps extends NativeViewGestureHandlerProps {\r\n /**\r\n * Defines if more than one button could be pressed simultaneously. By default\r\n * set true.\r\n */\r\n exclusive?: boolean;\r\n // TODO: we should transform props in `createNativeWrapper`\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines color of native ripple animation used since API level 21.\r\n */\r\n rippleColor?: any; // it was present in BaseButtonProps before but is used here in code\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines radius of native ripple animation used since API level 21.\r\n */\r\n rippleRadius?: number | null;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Set this to true if you want the ripple animation to render outside the view bounds.\r\n */\r\n borderless?: boolean;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines whether the ripple animation should be drawn on the foreground of the view.\r\n */\r\n foreground?: boolean;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Set this to true if you don't want the system to play sound when the button is pressed.\r\n */\r\n touchSoundDisabled?: boolean;\r\n}\r\n\r\nexport interface BaseButtonProps extends RawButtonProps {\r\n /**\r\n * Called when the button gets pressed (analogous to `onPress` in\r\n * `TouchableHighlight` from RN core).\r\n */\r\n onPress?: (pointerInside: boolean) => void;\r\n\r\n /**\r\n * Called when the button gets pressed and is held for `delayLongPress`\r\n * milliseconds.\r\n */\r\n onLongPress?: () => void;\r\n\r\n /**\r\n * Called when button changes from inactive to active and vice versa. It\r\n * passes active state as a boolean variable as a first parameter for that\r\n * method.\r\n */\r\n onActiveStateChange?: (active: boolean) => void;\r\n style?: StyleProp<ViewStyle>;\r\n testID?: string;\r\n\r\n /**\r\n * Delay, in milliseconds, after which the `onLongPress` callback gets called.\r\n * Defaults to 600.\r\n */\r\n delayLongPress?: number;\r\n}\r\n\r\nexport interface RectButtonProps extends BaseButtonProps {\r\n /**\r\n * Background color that will be dimmed when button is in active state.\r\n */\r\n underlayColor?: string;\r\n\r\n /**\r\n * iOS only.\r\n *\r\n * Opacity applied to the underlay when button is in active state.\r\n */\r\n activeOpacity?: number;\r\n}\r\n\r\nexport interface BorderlessButtonProps extends BaseButtonProps {\r\n /**\r\n * iOS only.\r\n *\r\n * Opacity applied to the button when it is in an active state.\r\n */\r\n activeOpacity?: number;\r\n}\r\n\r\nexport const RawButton = createNativeWrapper(GestureHandlerButton, {\r\n shouldCancelWhenOutside: false,\r\n shouldActivateOnStart: false,\r\n});\r\n\r\nexport class BaseButton extends React.Component<BaseButtonProps> {\r\n static defaultProps = {\r\n delayLongPress: 600,\r\n };\r\n\r\n private lastActive: boolean;\r\n private longPressTimeout: ReturnType<typeof setTimeout> | undefined;\r\n private longPressDetected: boolean;\r\n\r\n constructor(props: BaseButtonProps) {\r\n super(props);\r\n this.lastActive = false;\r\n this.longPressDetected = false;\r\n }\r\n\r\n private handleEvent = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>) => {\r\n const { state, oldState, pointerInside } = nativeEvent;\r\n const active = pointerInside && state === State.ACTIVE;\r\n\r\n if (active !== this.lastActive && this.props.onActiveStateChange) {\r\n this.props.onActiveStateChange(active);\r\n }\r\n\r\n if (\r\n !this.longPressDetected &&\r\n oldState === State.ACTIVE &&\r\n state !== State.CANCELLED &&\r\n this.lastActive &&\r\n this.props.onPress\r\n ) {\r\n this.props.onPress(active);\r\n }\r\n\r\n if (\r\n !this.lastActive &&\r\n // NativeViewGestureHandler sends different events based on platform\r\n state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) &&\r\n pointerInside\r\n ) {\r\n this.longPressDetected = false;\r\n if (this.props.onLongPress) {\r\n this.longPressTimeout = setTimeout(\r\n this.onLongPress,\r\n this.props.delayLongPress\r\n );\r\n }\r\n } else if (\r\n // cancel longpress timeout if it's set and the finger moved out of the view\r\n state === State.ACTIVE &&\r\n !pointerInside &&\r\n this.longPressTimeout !== undefined\r\n ) {\r\n clearTimeout(this.longPressTimeout);\r\n this.longPressTimeout = undefined;\r\n } else if (\r\n // cancel longpress timeout if it's set and the gesture has finished\r\n this.longPressTimeout !== undefined &&\r\n (state === State.END ||\r\n state === State.CANCELLED ||\r\n state === State.FAILED)\r\n ) {\r\n clearTimeout(this.longPressTimeout);\r\n this.longPressTimeout = undefined;\r\n }\r\n\r\n this.lastActive = active;\r\n };\r\n\r\n private onLongPress = () => {\r\n this.longPressDetected = true;\r\n this.props.onLongPress?.();\r\n };\r\n\r\n // Normally, the parent would execute it's handler first, then forward the\r\n // event to listeners. However, here our handler is virtually only forwarding\r\n // events to listeners, so we reverse the order to keep the proper order of\r\n // the callbacks (from \"raw\" ones to \"processed\").\r\n private onHandlerStateChange = (\r\n e: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>\r\n ) => {\r\n this.props.onHandlerStateChange?.(e);\r\n this.handleEvent(e);\r\n };\r\n\r\n private onGestureEvent = (\r\n e: GestureEvent<NativeViewGestureHandlerPayload>\r\n ) => {\r\n this.props.onGestureEvent?.(e);\r\n this.handleEvent(\r\n e as HandlerStateChangeEvent<NativeViewGestureHandlerPayload>\r\n ); // TODO: maybe it is not correct\r\n };\r\n\r\n render() {\r\n const { rippleColor, ...rest } = this.props;\r\n\r\n return (\r\n <RawButton\r\n rippleColor={processColor(rippleColor)}\r\n {...rest}\r\n onGestureEvent={this.onGestureEvent}\r\n onHandlerStateChange={this.onHandlerStateChange}\r\n />\r\n );\r\n }\r\n}\r\n\r\nconst AnimatedBaseButton = Animated.createAnimatedComponent(BaseButton);\r\n\r\nconst btnStyles = StyleSheet.create({\r\n underlay: {\r\n position: 'absolute',\r\n left: 0,\r\n right: 0,\r\n bottom: 0,\r\n top: 0,\r\n },\r\n});\r\n\r\nexport class RectButton extends React.Component<RectButtonProps> {\r\n static defaultProps = {\r\n activeOpacity: 0.105,\r\n underlayColor: 'black',\r\n };\r\n\r\n private opacity: Animated.Value;\r\n\r\n constructor(props: RectButtonProps) {\r\n super(props);\r\n this.opacity = new Animated.Value(0);\r\n }\r\n\r\n private onActiveStateChange = (active: boolean) => {\r\n if (Platform.OS !== 'android') {\r\n this.opacity.setValue(active ? this.props.activeOpacity! : 0);\r\n }\r\n\r\n this.props.onActiveStateChange?.(active);\r\n };\r\n\r\n render() {\r\n const { children, style, ...rest } = this.props;\r\n\r\n const resolvedStyle = StyleSheet.flatten(style ?? {});\r\n\r\n return (\r\n <BaseButton\r\n {...rest}\r\n style={resolvedStyle}\r\n onActiveStateChange={this.onActiveStateChange}>\r\n <Animated.View\r\n style={[\r\n btnStyles.underlay,\r\n {\r\n opacity: this.opacity,\r\n backgroundColor: this.props.underlayColor,\r\n borderRadius: resolvedStyle.borderRadius,\r\n borderTopLeftRadius: resolvedStyle.borderTopLeftRadius,\r\n borderTopRightRadius: resolvedStyle.borderTopRightRadius,\r\n borderBottomLeftRadius: resolvedStyle.borderBottomLeftRadius,\r\n borderBottomRightRadius: resolvedStyle.borderBottomRightRadius,\r\n },\r\n ]}\r\n />\r\n {children}\r\n </BaseButton>\r\n );\r\n }\r\n}\r\n\r\nexport class BorderlessButton extends React.Component<BorderlessButtonProps> {\r\n static defaultProps = {\r\n activeOpacity: 0.3,\r\n borderless: true,\r\n };\r\n\r\n private opacity: Animated.Value;\r\n\r\n constructor(props: BorderlessButtonProps) {\r\n super(props);\r\n this.opacity = new Animated.Value(1);\r\n }\r\n\r\n private onActiveStateChange = (active: boolean) => {\r\n if (Platform.OS !== 'android') {\r\n this.opacity.setValue(active ? this.props.activeOpacity! : 1);\r\n }\r\n\r\n this.props.onActiveStateChange?.(active);\r\n };\r\n\r\n render() {\r\n const { children, style, ...rest } = this.props;\r\n\r\n return (\r\n <AnimatedBaseButton\r\n {...rest}\r\n onActiveStateChange={this.onActiveStateChange}\r\n style={[style, Platform.OS === 'ios' && { opacity: this.opacity }]}>\r\n {children}\r\n </AnimatedBaseButton>\r\n );\r\n }\r\n}\r\n\r\nexport { default as PureNativeButton } from './GestureHandlerButton';\r\n"]}
1
+ {"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_createNativeWrapper","_interopRequireDefault","_GestureHandlerButton","_State","obj","__esModule","default","_getRequireWildcardCache","e","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_extends","assign","bind","target","arguments","length","source","key","apply","RawButton","exports","createNativeWrapper","GestureHandlerButton","shouldCancelWhenOutside","shouldActivateOnStart","BaseButton","Component","defaultProps","delayLongPress","constructor","props","lastActive","longPressDetected","handleEvent","nativeEvent","state","oldState","pointerInside","active","State","ACTIVE","onActiveStateChange","CANCELLED","onPress","Platform","OS","BEGAN","onLongPress","longPressTimeout","setTimeout","undefined","clearTimeout","END","FAILED","_this$props$onLongPre","_this$props","onHandlerStateChange","_this$props$onHandler","_this$props2","onGestureEvent","_this$props$onGesture","_this$props3","render","rippleColor","rest","createElement","processColor","AnimatedBaseButton","Animated","createAnimatedComponent","btnStyles","StyleSheet","create","underlay","position","left","right","bottom","top","RectButton","activeOpacity","underlayColor","opacity","Value","_this$props$onActiveS","_this$props4","setValue","children","style","resolvedStyle","flatten","View","backgroundColor","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","BorderlessButton","borderless","_this$props$onActiveS2","_this$props5"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureButtons.tsx"],"mappings":"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"}
@@ -4,11 +4,6 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = void 0;
7
-
8
- var _RNGestureHandlerButtonNativeComponent = _interopRequireDefault(require("../specs/RNGestureHandlerButtonNativeComponent"));
9
-
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
-
12
- var _default = _RNGestureHandlerButtonNativeComponent.default;
13
- exports.default = _default;
7
+ var _RNGestureHandlerButton = require("./RNGestureHandlerButton");
8
+ var _default = exports.default = _RNGestureHandlerButton.RNGestureHandlerButton;
14
9
  //# sourceMappingURL=GestureHandlerButton.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["GestureHandlerButton.tsx"],"names":["RNGestureHandlerButtonNativeComponent"],"mappings":";;;;;;;AAEA;;;;eAEeA,8C","sourcesContent":["import { HostComponent } from 'react-native';\r\nimport { RawButtonProps } from './GestureButtons';\r\nimport RNGestureHandlerButtonNativeComponent from '../specs/RNGestureHandlerButtonNativeComponent';\r\n\r\nexport default RNGestureHandlerButtonNativeComponent as HostComponent<RawButtonProps>;\r\n"]}
1
+ {"version":3,"names":["_RNGestureHandlerButton","require","_default","exports","default","RNGestureHandlerButton"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureHandlerButton.tsx"],"mappings":";;;;;;AAEA,IAAAA,uBAAA,GAAAC,OAAA;AAAkE,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAEnDC,8CAAsB"}
@@ -4,21 +4,21 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = GestureHandlerRootView;
7
-
7
+ var _reactNativeHarmony = require("react-native-harmony");
8
8
  var React = _interopRequireWildcard(require("react"));
9
-
10
- var _reactNative = require("react-native");
11
-
12
9
  var _init = require("../init");
13
-
14
- var _GestureHandlerRootViewContext = _interopRequireDefault(require("../GestureHandlerRootViewContext"));
15
-
10
+ var _GestureHandlerRootViewContext = _interopRequireDefault(require("react-native-gesture-handler/src/GestureHandlerRootViewContext"));
16
11
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17
-
18
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
19
-
20
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
21
-
12
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
13
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
14
+ const GestureHandlerRootViewNativeComponent = (0, _reactNativeHarmony.registerViewConfig)('RNGestureHandlerRootView', () => ({
15
+ uiViewClassName: 'RNGestureHandlerRootView',
16
+ bubblingEventTypes: {},
17
+ directEventTypes: {},
18
+ validAttributes: {
19
+ ..._reactNativeHarmony.ReactNativeViewAttributes.UIView
20
+ }
21
+ }));
22
22
  function GestureHandlerRootView(props) {
23
23
  // try initialize fabric on the first render, at this point we can
24
24
  // reliably check if fabric is enabled (the function contains a flag
@@ -26,6 +26,6 @@ function GestureHandlerRootView(props) {
26
26
  (0, _init.maybeInitializeFabric)();
27
27
  return /*#__PURE__*/React.createElement(_GestureHandlerRootViewContext.default.Provider, {
28
28
  value: true
29
- }, /*#__PURE__*/React.createElement(_reactNative.View, props));
29
+ }, /*#__PURE__*/React.createElement(GestureHandlerRootViewNativeComponent, props));
30
30
  }
31
31
  //# sourceMappingURL=GestureHandlerRootView.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["GestureHandlerRootView.tsx"],"names":["GestureHandlerRootView","props"],"mappings":";;;;;;;AAAA;;AAEA;;AACA;;AACA;;;;;;;;AAKe,SAASA,sBAAT,CACbC,KADa,EAEb;AACA;AACA;AACA;AACA;AAEA,sBACE,oBAAC,sCAAD,CAA+B,QAA/B;AAAwC,IAAA,KAAK;AAA7C,kBACE,oBAAC,iBAAD,EAAUA,KAAV,CADF,CADF;AAKD","sourcesContent":["import * as React from 'react';\r\nimport { PropsWithChildren } from 'react';\r\nimport { View, ViewProps } from 'react-native';\r\nimport { maybeInitializeFabric } from '../init';\r\nimport GestureHandlerRootViewContext from '../GestureHandlerRootViewContext';\r\n\r\nexport interface GestureHandlerRootViewProps\r\n extends PropsWithChildren<ViewProps> {}\r\n\r\nexport default function GestureHandlerRootView(\r\n props: GestureHandlerRootViewProps\r\n) {\r\n // try initialize fabric on the first render, at this point we can\r\n // reliably check if fabric is enabled (the function contains a flag\r\n // to make sure it's called only once)\r\n maybeInitializeFabric();\r\n\r\n return (\r\n <GestureHandlerRootViewContext.Provider value>\r\n <View {...props} />\r\n </GestureHandlerRootViewContext.Provider>\r\n );\r\n}\r\n"]}
1
+ {"version":3,"names":["_reactNativeHarmony","require","React","_interopRequireWildcard","_init","_GestureHandlerRootViewContext","_interopRequireDefault","obj","__esModule","default","_getRequireWildcardCache","e","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","GestureHandlerRootViewNativeComponent","registerViewConfig","uiViewClassName","bubblingEventTypes","directEventTypes","validAttributes","ReactNativeViewAttributes","UIView","GestureHandlerRootView","props","maybeInitializeFabric","createElement","Provider","value"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureHandlerRootView.tsx"],"mappings":";;;;;;AAAA,IAAAA,mBAAA,GAAAC,OAAA;AACA,IAAAC,KAAA,GAAAC,uBAAA,CAAAF,OAAA;AAGA,IAAAG,KAAA,GAAAH,OAAA;AACA,IAAAI,8BAAA,GAAAC,sBAAA,CAAAL,OAAA;AAA2G,SAAAK,uBAAAC,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAR,wBAAAQ,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAH,UAAA,SAAAG,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAF,OAAA,EAAAE,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAC,GAAA,CAAAJ,CAAA,UAAAG,CAAA,CAAAE,GAAA,CAAAL,CAAA,OAAAM,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAZ,CAAA,oBAAAY,CAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAY,CAAA,SAAAI,CAAA,GAAAR,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAX,CAAA,EAAAY,CAAA,UAAAI,CAAA,KAAAA,CAAA,CAAAX,GAAA,IAAAW,CAAA,CAAAC,GAAA,IAAAR,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAI,CAAA,IAAAV,CAAA,CAAAM,CAAA,IAAAZ,CAAA,CAAAY,CAAA,YAAAN,CAAA,CAAAR,OAAA,GAAAE,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAc,GAAA,CAAAjB,CAAA,EAAAM,CAAA,GAAAA,CAAA;AAG3G,MAAMY,qCAAqC,GAAG,IAAAC,sCAAkB,EAAC,0BAA0B,EAAE,OAAO;EAClGC,eAAe,EAAE,0BAA0B;EAC3CC,kBAAkB,EAAE,CAAC,CAAC;EACtBC,gBAAgB,EAAE,CAAC,CAAC;EACpBC,eAAe,EAAE;IACf,GAAGC,6CAAyB,CAACC;EAC/B;AACF,CAAC,CAAC,CAAC;AAKY,SAASC,sBAAsBA,CAC5CC,KAAkC,EAClC;EACA;EACA;EACA;EACA,IAAAC,2BAAqB,EAAC,CAAC;EAEvB,oBACErC,KAAA,CAAAsC,aAAA,CAACnC,8BAAA,CAAAI,OAA6B,CAACgC,QAAQ;IAACC,KAAK;EAAA,gBAC3CxC,KAAA,CAAAsC,aAAA,CAACX,qCAAqC,EAAKS,KAAQ,CACb,CAAC;AAE7C"}
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.RNGestureHandlerButton = void 0;
7
+ var _reactNativeHarmony = require("react-native-harmony");
8
+ const RNGestureHandlerButton = exports.RNGestureHandlerButton = (0, _reactNativeHarmony.registerViewConfig)('RNGestureHandlerButton', () => ({
9
+ uiViewClassName: 'RNGestureHandlerButton',
10
+ bubblingEventTypes: {},
11
+ directEventTypes: {},
12
+ validAttributes: {
13
+ ..._reactNativeHarmony.ReactNativeViewAttributes.UIView,
14
+ exclusive: true,
15
+ foreground: true,
16
+ borderless: true,
17
+ enabled: true,
18
+ rippleColor: true,
19
+ rippleRadius: true,
20
+ touchSoundDisabled: true
21
+ }
22
+ }));
23
+ //# sourceMappingURL=RNGestureHandlerButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_reactNativeHarmony","require","RNGestureHandlerButton","exports","registerViewConfig","uiViewClassName","bubblingEventTypes","directEventTypes","validAttributes","ReactNativeViewAttributes","UIView","exclusive","foreground","borderless","enabled","rippleColor","rippleRadius","touchSoundDisabled"],"sourceRoot":"..\\..\\..\\src","sources":["components/RNGestureHandlerButton.tsx"],"mappings":";;;;;;AAAA,IAAAA,mBAAA,GAAAC,OAAA;AAKO,MAAMC,sBAAsB,GAAAC,OAAA,CAAAD,sBAAA,GAAG,IAAAE,sCAAkB,EACtD,wBAAwB,EACxB,OAAO;EACLC,eAAe,EAAE,wBAAwB;EACzCC,kBAAkB,EAAE,CAAC,CAAC;EACtBC,gBAAgB,EAAE,CAAC,CAAC;EACpBC,eAAe,EAAE;IACf,GAAGC,6CAAyB,CAACC,MAAM;IACnCC,SAAS,EAAE,IAAI;IACfC,UAAU,EAAE,IAAI;IAChBC,UAAU,EAAE,IAAI;IAChBC,OAAO,EAAE,IAAI;IACbC,WAAW,EAAE,IAAI;IACjBC,YAAY,EAAE,IAAI;IAClBC,kBAAkB,EAAE;EACtB;AACF,CAAC,CACH,CAAC"}
@@ -4,23 +4,14 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = exports.TOUCHABLE_STATE = void 0;
7
-
8
- var React = _interopRequireWildcard(require("react"));
9
-
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var React = _react;
10
9
  var _reactNative = require("react-native");
11
-
12
- var _State = require("../../State");
13
-
10
+ var _State = require("react-native-gesture-handler/src/State");
14
11
  var _GestureButtons = require("../GestureButtons");
15
-
16
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
17
-
18
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
21
-
22
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
23
-
12
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
13
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
14
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
24
15
  /**
25
16
  * Each touchable is a states' machine which preforms transitions.
26
17
  * On very beginning (and on the very end or recognition) touchable is
@@ -28,86 +19,37 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
28
19
  * travel outside it transits to special MOVED_OUTSIDE state. Gesture recognition
29
20
  * finishes in UNDETERMINED state.
30
21
  */
31
- const TOUCHABLE_STATE = {
22
+ const TOUCHABLE_STATE = exports.TOUCHABLE_STATE = {
32
23
  UNDETERMINED: 0,
33
24
  BEGAN: 1,
34
25
  MOVED_OUTSIDE: 2
35
26
  };
36
- exports.TOUCHABLE_STATE = TOUCHABLE_STATE;
27
+
28
+ // TODO: maybe can be better
29
+ // TODO: all clearTimeout have ! added, maybe they shouldn't ?
37
30
 
38
31
  /**
39
32
  * GenericTouchable is not intented to be used as it is.
40
33
  * Should be treated as a source for the rest of touchables
41
34
  */
42
- class GenericTouchable extends React.Component {
43
- constructor(...args) {
44
- super(...args);
45
-
46
- _defineProperty(this, "pressInTimeout", void 0);
47
-
48
- _defineProperty(this, "pressOutTimeout", void 0);
49
-
50
- _defineProperty(this, "longPressTimeout", void 0);
51
-
52
- _defineProperty(this, "longPressDetected", false);
53
-
54
- _defineProperty(this, "pointerInside", true);
55
-
56
- _defineProperty(this, "STATE", TOUCHABLE_STATE.UNDETERMINED);
57
-
58
- _defineProperty(this, "onGestureEvent", ({
59
- nativeEvent: {
60
- pointerInside
61
- }
62
- }) => {
63
- if (this.pointerInside !== pointerInside) {
64
- if (pointerInside) {
65
- this.onMoveIn();
66
- } else {
67
- this.onMoveOut();
68
- }
69
- }
70
-
71
- this.pointerInside = pointerInside;
72
- });
73
35
 
74
- _defineProperty(this, "onHandlerStateChange", ({
75
- nativeEvent
76
- }) => {
77
- const {
78
- state
79
- } = nativeEvent;
80
-
81
- if (state === _State.State.CANCELLED || state === _State.State.FAILED) {
82
- // Need to handle case with external cancellation (e.g. by ScrollView)
83
- this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
84
- } else if ( // This platform check is an implication of slightly different behavior of handlers on different platform.
85
- // And Android "Active" state is achieving on first move of a finger, not on press in.
86
- // On iOS event on "Began" is not delivered.
87
- state === (_reactNative.Platform.OS !== 'android' ? _State.State.ACTIVE : _State.State.BEGAN) && this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
88
- // Moving inside requires
89
- this.handlePressIn();
90
- } else if (state === _State.State.END) {
91
- const shouldCallOnPress = !this.longPressDetected && this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE && this.pressOutTimeout === null;
92
- this.handleGoToUndetermined();
93
-
94
- if (shouldCallOnPress) {
95
- var _this$props$onPress, _this$props;
96
-
97
- // Calls only inside component whether no long press was called previously
98
- (_this$props$onPress = (_this$props = this.props).onPress) === null || _this$props$onPress === void 0 ? void 0 : _this$props$onPress.call(_this$props);
99
- }
100
- }
101
- });
36
+ class GenericTouchable extends _react.Component {
37
+ static defaultProps = {
38
+ delayLongPress: 600,
39
+ extraButtonProps: {
40
+ rippleColor: 'transparent',
41
+ exclusive: true
42
+ }
43
+ };
102
44
 
103
- _defineProperty(this, "onLongPressDetected", () => {
104
- var _this$props$onLongPre, _this$props2;
45
+ // timeout handlers
105
46
 
106
- this.longPressDetected = true; // checked for in the caller of `onLongPressDetected`, but better to check twice
47
+ // This flag is required since recognition of longPress implies not-invoking onPress
48
+ longPressDetected = false;
49
+ pointerInside = true;
107
50
 
108
- (_this$props$onLongPre = (_this$props2 = this.props).onLongPress) === null || _this$props$onLongPre === void 0 ? void 0 : _this$props$onLongPre.call(_this$props2);
109
- });
110
- }
51
+ // State of touchable
52
+ STATE = TOUCHABLE_STATE.UNDETERMINED;
111
53
 
112
54
  // handlePressIn in called on first touch on traveling inside component.
113
55
  // Handles state transition with delay.
@@ -120,15 +62,13 @@ class GenericTouchable extends React.Component {
120
62
  } else {
121
63
  this.moveToState(TOUCHABLE_STATE.BEGAN);
122
64
  }
123
-
124
65
  if (this.props.onLongPress) {
125
66
  const time = (this.props.delayPressIn || 0) + (this.props.delayLongPress || 0);
126
67
  this.longPressTimeout = setTimeout(this.onLongPressDetected, time);
127
68
  }
128
- } // handleMoveOutside in called on traveling outside component.
69
+ }
70
+ // handleMoveOutside in called on traveling outside component.
129
71
  // Handles state transition with delay.
130
-
131
-
132
72
  handleMoveOutside() {
133
73
  if (this.props.delayPressOut) {
134
74
  this.pressOutTimeout = this.pressOutTimeout || setTimeout(() => {
@@ -138,18 +78,16 @@ class GenericTouchable extends React.Component {
138
78
  } else {
139
79
  this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);
140
80
  }
141
- } // handleGoToUndetermined transits to UNDETERMINED state with proper delay
142
-
81
+ }
143
82
 
83
+ // handleGoToUndetermined transits to UNDETERMINED state with proper delay
144
84
  handleGoToUndetermined() {
145
85
  clearTimeout(this.pressOutTimeout); // TODO: maybe it can be undefined
146
-
147
86
  if (this.props.delayPressOut) {
148
87
  this.pressOutTimeout = setTimeout(() => {
149
88
  if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
150
89
  this.moveToState(TOUCHABLE_STATE.BEGAN);
151
90
  }
152
-
153
91
  this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
154
92
  this.pressOutTimeout = null;
155
93
  }, this.props.delayPressOut);
@@ -157,16 +95,13 @@ class GenericTouchable extends React.Component {
157
95
  if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
158
96
  this.moveToState(TOUCHABLE_STATE.BEGAN);
159
97
  }
160
-
161
98
  this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
162
99
  }
163
100
  }
164
-
165
101
  componentDidMount() {
166
102
  this.reset();
167
- } // reset timeout to prevent memory leaks.
168
-
169
-
103
+ }
104
+ // reset timeout to prevent memory leaks.
170
105
  reset() {
171
106
  this.longPressDetected = false;
172
107
  this.pointerInside = true;
@@ -176,76 +111,108 @@ class GenericTouchable extends React.Component {
176
111
  this.pressOutTimeout = null;
177
112
  this.longPressTimeout = null;
178
113
  this.pressInTimeout = null;
179
- } // All states' transitions are defined here.
180
-
114
+ }
181
115
 
116
+ // All states' transitions are defined here.
182
117
  moveToState(newState) {
183
- var _this$props$onStateCh, _this$props6;
184
-
118
+ var _this$props$onStateCh, _this$props4;
185
119
  if (newState === this.STATE) {
186
120
  // Ignore dummy transitions
187
121
  return;
188
122
  }
189
-
190
123
  if (newState === TOUCHABLE_STATE.BEGAN) {
191
- var _this$props$onPressIn, _this$props3;
192
-
124
+ var _this$props$onPressIn, _this$props;
193
125
  // First touch and moving inside
194
- (_this$props$onPressIn = (_this$props3 = this.props).onPressIn) === null || _this$props$onPressIn === void 0 ? void 0 : _this$props$onPressIn.call(_this$props3);
126
+ (_this$props$onPressIn = (_this$props = this.props).onPressIn) === null || _this$props$onPressIn === void 0 || _this$props$onPressIn.call(_this$props);
195
127
  } else if (newState === TOUCHABLE_STATE.MOVED_OUTSIDE) {
196
- var _this$props$onPressOu, _this$props4;
197
-
128
+ var _this$props$onPressOu, _this$props2;
198
129
  // Moving outside
199
- (_this$props$onPressOu = (_this$props4 = this.props).onPressOut) === null || _this$props$onPressOu === void 0 ? void 0 : _this$props$onPressOu.call(_this$props4);
130
+ (_this$props$onPressOu = (_this$props2 = this.props).onPressOut) === null || _this$props$onPressOu === void 0 || _this$props$onPressOu.call(_this$props2);
200
131
  } else if (newState === TOUCHABLE_STATE.UNDETERMINED) {
201
132
  // Need to reset each time on transition to UNDETERMINED
202
133
  this.reset();
203
-
204
134
  if (this.STATE === TOUCHABLE_STATE.BEGAN) {
205
- var _this$props$onPressOu2, _this$props5;
206
-
135
+ var _this$props$onPressOu2, _this$props3;
207
136
  // ... and if it happens inside button.
208
- (_this$props$onPressOu2 = (_this$props5 = this.props).onPressOut) === null || _this$props$onPressOu2 === void 0 ? void 0 : _this$props$onPressOu2.call(_this$props5);
137
+ (_this$props$onPressOu2 = (_this$props3 = this.props).onPressOut) === null || _this$props$onPressOu2 === void 0 || _this$props$onPressOu2.call(_this$props3);
209
138
  }
210
- } // Finally call lister (used by subclasses)
211
-
212
-
213
- (_this$props$onStateCh = (_this$props6 = this.props).onStateChange) === null || _this$props$onStateCh === void 0 ? void 0 : _this$props$onStateCh.call(_this$props6, this.STATE, newState); // ... and make transition.
214
-
139
+ }
140
+ // Finally call lister (used by subclasses)
141
+ (_this$props$onStateCh = (_this$props4 = this.props).onStateChange) === null || _this$props$onStateCh === void 0 || _this$props$onStateCh.call(_this$props4, this.STATE, newState);
142
+ // ... and make transition.
215
143
  this.STATE = newState;
216
144
  }
217
-
145
+ onGestureEvent = ({
146
+ nativeEvent: {
147
+ pointerInside
148
+ }
149
+ }) => {
150
+ if (this.pointerInside !== pointerInside) {
151
+ if (pointerInside) {
152
+ this.onMoveIn();
153
+ } else {
154
+ this.onMoveOut();
155
+ }
156
+ }
157
+ this.pointerInside = pointerInside;
158
+ };
159
+ onHandlerStateChange = ({
160
+ nativeEvent
161
+ }) => {
162
+ const {
163
+ state
164
+ } = nativeEvent;
165
+ if (state === _State.State.CANCELLED || state === _State.State.FAILED) {
166
+ // Need to handle case with external cancellation (e.g. by ScrollView)
167
+ this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
168
+ } else if (
169
+ // This platform check is an implication of slightly different behavior of handlers on different platform.
170
+ // And Android "Active" state is achieving on first move of a finger, not on press in.
171
+ // On iOS event on "Began" is not delivered.
172
+ state === (_reactNative.Platform.OS !== 'android' ? _State.State.ACTIVE : _State.State.BEGAN) && this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
173
+ // Moving inside requires
174
+ this.handlePressIn();
175
+ } else if (state === _State.State.END) {
176
+ const shouldCallOnPress = !this.longPressDetected && this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE && this.pressOutTimeout === null;
177
+ this.handleGoToUndetermined();
178
+ if (shouldCallOnPress) {
179
+ var _this$props$onPress, _this$props5;
180
+ // Calls only inside component whether no long press was called previously
181
+ (_this$props$onPress = (_this$props5 = this.props).onPress) === null || _this$props$onPress === void 0 || _this$props$onPress.call(_this$props5);
182
+ }
183
+ }
184
+ };
185
+ onLongPressDetected = () => {
186
+ var _this$props$onLongPre, _this$props6;
187
+ this.longPressDetected = true;
188
+ // checked for in the caller of `onLongPressDetected`, but better to check twice
189
+ (_this$props$onLongPre = (_this$props6 = this.props).onLongPress) === null || _this$props$onLongPre === void 0 || _this$props$onLongPre.call(_this$props6);
190
+ };
218
191
  componentWillUnmount() {
219
192
  // to prevent memory leaks
220
193
  this.reset();
221
194
  }
222
-
223
195
  onMoveIn() {
224
196
  if (this.STATE === TOUCHABLE_STATE.MOVED_OUTSIDE) {
225
197
  // This call is not throttled with delays (like in RN's implementation).
226
198
  this.moveToState(TOUCHABLE_STATE.BEGAN);
227
199
  }
228
200
  }
229
-
230
201
  onMoveOut() {
231
202
  // long press should no longer be detected
232
203
  clearTimeout(this.longPressTimeout);
233
204
  this.longPressTimeout = null;
234
-
235
205
  if (this.STATE === TOUCHABLE_STATE.BEGAN) {
236
206
  this.handleMoveOutside();
237
207
  }
238
208
  }
239
-
240
209
  render() {
241
- var _ref, _this$props$touchSoun;
242
-
243
- const hitSlop = (_ref = typeof this.props.hitSlop === 'number' ? {
210
+ const hitSlop = (typeof this.props.hitSlop === 'number' ? {
244
211
  top: this.props.hitSlop,
245
212
  left: this.props.hitSlop,
246
213
  bottom: this.props.hitSlop,
247
214
  right: this.props.hitSlop
248
- } : this.props.hitSlop) !== null && _ref !== void 0 ? _ref : undefined;
215
+ } : this.props.hitSlop) ?? undefined;
249
216
  const coreProps = {
250
217
  accessible: this.props.accessible !== false,
251
218
  accessibilityLabel: this.props.accessibilityLabel,
@@ -261,29 +228,20 @@ class GenericTouchable extends React.Component {
261
228
  };
262
229
  return /*#__PURE__*/React.createElement(_GestureButtons.BaseButton, _extends({
263
230
  style: this.props.containerStyle,
264
- onHandlerStateChange: // TODO: not sure if it can be undefined instead of null
231
+ onHandlerStateChange:
232
+ // TODO: not sure if it can be undefined instead of null
265
233
  this.props.disabled ? undefined : this.onHandlerStateChange,
266
234
  onGestureEvent: this.onGestureEvent,
267
235
  hitSlop: hitSlop,
268
236
  shouldActivateOnStart: this.props.shouldActivateOnStart,
269
237
  disallowInterruption: this.props.disallowInterruption,
270
238
  testID: this.props.testID,
271
- touchSoundDisabled: (_this$props$touchSoun = this.props.touchSoundDisabled) !== null && _this$props$touchSoun !== void 0 ? _this$props$touchSoun : false,
239
+ touchSoundDisabled: this.props.touchSoundDisabled ?? false,
272
240
  enabled: !this.props.disabled
273
241
  }, this.props.extraButtonProps), /*#__PURE__*/React.createElement(_reactNative.Animated.View, _extends({}, coreProps, {
274
242
  style: this.props.style
275
243
  }), this.props.children));
276
244
  }
277
-
278
245
  }
279
-
280
246
  exports.default = GenericTouchable;
281
-
282
- _defineProperty(GenericTouchable, "defaultProps", {
283
- delayLongPress: 600,
284
- extraButtonProps: {
285
- rippleColor: 'transparent',
286
- exclusive: true
287
- }
288
- });
289
247
  //# sourceMappingURL=GenericTouchable.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["GenericTouchable.tsx"],"names":["TOUCHABLE_STATE","UNDETERMINED","BEGAN","MOVED_OUTSIDE","GenericTouchable","Component","nativeEvent","pointerInside","onMoveIn","onMoveOut","state","State","CANCELLED","FAILED","moveToState","Platform","OS","ACTIVE","STATE","handlePressIn","END","shouldCallOnPress","longPressDetected","pressOutTimeout","handleGoToUndetermined","props","onPress","onLongPress","delayPressIn","pressInTimeout","setTimeout","time","delayLongPress","longPressTimeout","onLongPressDetected","handleMoveOutside","delayPressOut","clearTimeout","componentDidMount","reset","newState","onPressIn","onPressOut","onStateChange","componentWillUnmount","render","hitSlop","top","left","bottom","right","undefined","coreProps","accessible","accessibilityLabel","accessibilityHint","accessibilityRole","accessibilityState","accessibilityActions","onAccessibilityAction","nativeID","onLayout","containerStyle","disabled","onHandlerStateChange","onGestureEvent","shouldActivateOnStart","disallowInterruption","testID","touchSoundDisabled","extraButtonProps","style","children","rippleColor","exclusive"],"mappings":"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","sourcesContent":["import * as React from 'react';\r\nimport { Component } from 'react';\r\nimport {\r\n Animated,\r\n Platform,\r\n StyleProp,\r\n ViewStyle,\r\n TouchableWithoutFeedbackProps,\r\n Insets,\r\n} from 'react-native';\r\n\r\nimport { State } from '../../State';\r\nimport { BaseButton } from '../GestureButtons';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n} from '../../handlers/gestureHandlerCommon';\r\nimport { NativeViewGestureHandlerPayload } from '../../handlers/NativeViewGestureHandler';\r\nimport { TouchableNativeFeedbackExtraProps } from './TouchableNativeFeedback.android';\r\n\r\n/**\r\n * Each touchable is a states' machine which preforms transitions.\r\n * On very beginning (and on the very end or recognition) touchable is\r\n * UNDETERMINED. Then it moves to BEGAN. If touchable recognizes that finger\r\n * travel outside it transits to special MOVED_OUTSIDE state. Gesture recognition\r\n * finishes in UNDETERMINED state.\r\n */\r\nexport const TOUCHABLE_STATE = {\r\n UNDETERMINED: 0,\r\n BEGAN: 1,\r\n MOVED_OUTSIDE: 2,\r\n} as const;\r\n\r\ntype TouchableState = typeof TOUCHABLE_STATE[keyof typeof TOUCHABLE_STATE];\r\n\r\nexport interface GenericTouchableProps\r\n extends Omit<TouchableWithoutFeedbackProps, 'hitSlop'> {\r\n // Decided to drop not used fields from RN's implementation.\r\n // e.g. onBlur and onFocus as well as deprecated props. - TODO: this comment may be unuseful in this moment\r\n\r\n // TODO: in RN these events get native event parameter, which prolly could be used in our implementation too\r\n onPress?: () => void;\r\n onPressIn?: () => void;\r\n onPressOut?: () => void;\r\n onLongPress?: () => void;\r\n\r\n nativeID?: string;\r\n shouldActivateOnStart?: boolean;\r\n disallowInterruption?: boolean;\r\n\r\n containerStyle?: StyleProp<ViewStyle>;\r\n hitSlop?: Insets | number;\r\n}\r\n\r\ninterface InternalProps {\r\n extraButtonProps: TouchableNativeFeedbackExtraProps;\r\n onStateChange?: (oldState: TouchableState, newState: TouchableState) => void;\r\n}\r\n\r\n// TODO: maybe can be better\r\n// TODO: all clearTimeout have ! added, maybe they shouldn't ?\r\ntype Timeout = ReturnType<typeof setTimeout> | null | undefined;\r\n\r\n/**\r\n * GenericTouchable is not intented to be used as it is.\r\n * Should be treated as a source for the rest of touchables\r\n */\r\n\r\nexport default class GenericTouchable extends Component<\r\n GenericTouchableProps & InternalProps\r\n> {\r\n static defaultProps = {\r\n delayLongPress: 600,\r\n extraButtonProps: {\r\n rippleColor: 'transparent',\r\n exclusive: true,\r\n },\r\n };\r\n\r\n // timeout handlers\r\n pressInTimeout: Timeout;\r\n pressOutTimeout: Timeout;\r\n longPressTimeout: Timeout;\r\n\r\n // This flag is required since recognition of longPress implies not-invoking onPress\r\n longPressDetected = false;\r\n\r\n pointerInside = true;\r\n\r\n // State of touchable\r\n STATE: TouchableState = TOUCHABLE_STATE.UNDETERMINED;\r\n\r\n // handlePressIn in called on first touch on traveling inside component.\r\n // Handles state transition with delay.\r\n handlePressIn() {\r\n if (this.props.delayPressIn) {\r\n this.pressInTimeout = setTimeout(() => {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n this.pressInTimeout = null;\r\n }, this.props.delayPressIn);\r\n } else {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n if (this.props.onLongPress) {\r\n const time =\r\n (this.props.delayPressIn || 0) + (this.props.delayLongPress || 0);\r\n this.longPressTimeout = setTimeout(this.onLongPressDetected, time);\r\n }\r\n }\r\n // handleMoveOutside in called on traveling outside component.\r\n // Handles state transition with delay.\r\n handleMoveOutside() {\r\n if (this.props.delayPressOut) {\r\n this.pressOutTimeout =\r\n this.pressOutTimeout ||\r\n setTimeout(() => {\r\n this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);\r\n this.pressOutTimeout = null;\r\n }, this.props.delayPressOut);\r\n } else {\r\n this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);\r\n }\r\n }\r\n\r\n // handleGoToUndetermined transits to UNDETERMINED state with proper delay\r\n handleGoToUndetermined() {\r\n clearTimeout(this.pressOutTimeout!); // TODO: maybe it can be undefined\r\n if (this.props.delayPressOut) {\r\n this.pressOutTimeout = setTimeout(() => {\r\n if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n this.pressOutTimeout = null;\r\n }, this.props.delayPressOut);\r\n } else {\r\n if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n }\r\n }\r\n\r\n componentDidMount() {\r\n this.reset();\r\n }\r\n // reset timeout to prevent memory leaks.\r\n reset() {\r\n this.longPressDetected = false;\r\n this.pointerInside = true;\r\n clearTimeout(this.pressInTimeout!);\r\n clearTimeout(this.pressOutTimeout!);\r\n clearTimeout(this.longPressTimeout!);\r\n this.pressOutTimeout = null;\r\n this.longPressTimeout = null;\r\n this.pressInTimeout = null;\r\n }\r\n\r\n // All states' transitions are defined here.\r\n moveToState(newState: TouchableState) {\r\n if (newState === this.STATE) {\r\n // Ignore dummy transitions\r\n return;\r\n }\r\n if (newState === TOUCHABLE_STATE.BEGAN) {\r\n // First touch and moving inside\r\n this.props.onPressIn?.();\r\n } else if (newState === TOUCHABLE_STATE.MOVED_OUTSIDE) {\r\n // Moving outside\r\n this.props.onPressOut?.();\r\n } else if (newState === TOUCHABLE_STATE.UNDETERMINED) {\r\n // Need to reset each time on transition to UNDETERMINED\r\n this.reset();\r\n if (this.STATE === TOUCHABLE_STATE.BEGAN) {\r\n // ... and if it happens inside button.\r\n this.props.onPressOut?.();\r\n }\r\n }\r\n // Finally call lister (used by subclasses)\r\n this.props.onStateChange?.(this.STATE, newState);\r\n // ... and make transition.\r\n this.STATE = newState;\r\n }\r\n\r\n onGestureEvent = ({\r\n nativeEvent: { pointerInside },\r\n }: GestureEvent<NativeViewGestureHandlerPayload>) => {\r\n if (this.pointerInside !== pointerInside) {\r\n if (pointerInside) {\r\n this.onMoveIn();\r\n } else {\r\n this.onMoveOut();\r\n }\r\n }\r\n this.pointerInside = pointerInside;\r\n };\r\n\r\n onHandlerStateChange = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>) => {\r\n const { state } = nativeEvent;\r\n if (state === State.CANCELLED || state === State.FAILED) {\r\n // Need to handle case with external cancellation (e.g. by ScrollView)\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n } else if (\r\n // This platform check is an implication of slightly different behavior of handlers on different platform.\r\n // And Android \"Active\" state is achieving on first move of a finger, not on press in.\r\n // On iOS event on \"Began\" is not delivered.\r\n state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) &&\r\n this.STATE === TOUCHABLE_STATE.UNDETERMINED\r\n ) {\r\n // Moving inside requires\r\n this.handlePressIn();\r\n } else if (state === State.END) {\r\n const shouldCallOnPress =\r\n !this.longPressDetected &&\r\n this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE &&\r\n this.pressOutTimeout === null;\r\n this.handleGoToUndetermined();\r\n if (shouldCallOnPress) {\r\n // Calls only inside component whether no long press was called previously\r\n this.props.onPress?.();\r\n }\r\n }\r\n };\r\n\r\n onLongPressDetected = () => {\r\n this.longPressDetected = true;\r\n // checked for in the caller of `onLongPressDetected`, but better to check twice\r\n this.props.onLongPress?.();\r\n };\r\n\r\n componentWillUnmount() {\r\n // to prevent memory leaks\r\n this.reset();\r\n }\r\n\r\n onMoveIn() {\r\n if (this.STATE === TOUCHABLE_STATE.MOVED_OUTSIDE) {\r\n // This call is not throttled with delays (like in RN's implementation).\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n }\r\n\r\n onMoveOut() {\r\n // long press should no longer be detected\r\n clearTimeout(this.longPressTimeout!);\r\n this.longPressTimeout = null;\r\n if (this.STATE === TOUCHABLE_STATE.BEGAN) {\r\n this.handleMoveOutside();\r\n }\r\n }\r\n\r\n render() {\r\n const hitSlop =\r\n (typeof this.props.hitSlop === 'number'\r\n ? {\r\n top: this.props.hitSlop,\r\n left: this.props.hitSlop,\r\n bottom: this.props.hitSlop,\r\n right: this.props.hitSlop,\r\n }\r\n : this.props.hitSlop) ?? undefined;\r\n\r\n const coreProps = {\r\n accessible: this.props.accessible !== false,\r\n accessibilityLabel: this.props.accessibilityLabel,\r\n accessibilityHint: this.props.accessibilityHint,\r\n accessibilityRole: this.props.accessibilityRole,\r\n // TODO: check if changed to no 's' correctly, also removed 2 props that are no longer available: `accessibilityComponentType` and `accessibilityTraits`,\r\n // would be good to check if it is ok for sure, see: https://github.com/facebook/react-native/issues/24016\r\n accessibilityState: this.props.accessibilityState,\r\n accessibilityActions: this.props.accessibilityActions,\r\n onAccessibilityAction: this.props.onAccessibilityAction,\r\n nativeID: this.props.nativeID,\r\n onLayout: this.props.onLayout,\r\n };\r\n\r\n return (\r\n <BaseButton\r\n style={this.props.containerStyle}\r\n onHandlerStateChange={\r\n // TODO: not sure if it can be undefined instead of null\r\n this.props.disabled ? undefined : this.onHandlerStateChange\r\n }\r\n onGestureEvent={this.onGestureEvent}\r\n hitSlop={hitSlop}\r\n shouldActivateOnStart={this.props.shouldActivateOnStart}\r\n disallowInterruption={this.props.disallowInterruption}\r\n testID={this.props.testID}\r\n touchSoundDisabled={this.props.touchSoundDisabled ?? false}\r\n enabled={!this.props.disabled}\r\n {...this.props.extraButtonProps}>\r\n <Animated.View {...coreProps} style={this.props.style}>\r\n {this.props.children}\r\n </Animated.View>\r\n </BaseButton>\r\n );\r\n }\r\n}\r\n"]}
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","React","_reactNative","_State","_GestureButtons","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_extends","assign","bind","target","arguments","length","source","key","apply","TOUCHABLE_STATE","exports","UNDETERMINED","BEGAN","MOVED_OUTSIDE","GenericTouchable","Component","defaultProps","delayLongPress","extraButtonProps","rippleColor","exclusive","longPressDetected","pointerInside","STATE","handlePressIn","props","delayPressIn","pressInTimeout","setTimeout","moveToState","onLongPress","time","longPressTimeout","onLongPressDetected","handleMoveOutside","delayPressOut","pressOutTimeout","handleGoToUndetermined","clearTimeout","componentDidMount","reset","newState","_this$props$onStateCh","_this$props4","_this$props$onPressIn","_this$props","onPressIn","_this$props$onPressOu","_this$props2","onPressOut","_this$props$onPressOu2","_this$props3","onStateChange","onGestureEvent","nativeEvent","onMoveIn","onMoveOut","onHandlerStateChange","state","State","CANCELLED","FAILED","Platform","OS","ACTIVE","END","shouldCallOnPress","_this$props$onPress","_this$props5","onPress","_this$props$onLongPre","_this$props6","componentWillUnmount","render","hitSlop","top","left","bottom","right","undefined","coreProps","accessible","accessibilityLabel","accessibilityHint","accessibilityRole","accessibilityState","accessibilityActions","onAccessibilityAction","nativeID","onLayout","createElement","BaseButton","style","containerStyle","disabled","shouldActivateOnStart","disallowInterruption","testID","touchSoundDisabled","enabled","Animated","View","children"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/touchables/GenericTouchable.tsx"],"mappings":"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"}