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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (921) hide show
  1. package/README.md +1 -62
  2. package/{LICENSE → harmony/gesture_handler/LICENSE} +21 -21
  3. package/harmony/gesture_handler/OAT.xml +44 -0
  4. package/harmony/gesture_handler/README.OpenSource +11 -0
  5. package/harmony/gesture_handler/README.md +1 -0
  6. package/harmony/gesture_handler/build-profile.json5 +8 -0
  7. package/harmony/gesture_handler/hvigorfile.ts +2 -0
  8. package/harmony/gesture_handler/index.ets +3 -0
  9. package/harmony/gesture_handler/oh-package.json5 +13 -0
  10. package/harmony/gesture_handler/src/main/cpp/CMakeLists.txt +8 -0
  11. package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.cpp +34 -0
  12. package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.h +15 -0
  13. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerButtonComponentDescriptor.h +60 -0
  14. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.cpp +17 -0
  15. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.h +12 -0
  16. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerRootViewComponentDescriptor.h +60 -0
  17. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/CircularBuffer.ts +42 -42
  18. package/harmony/gesture_handler/src/main/ets/Event.ts +68 -0
  19. package/harmony/gesture_handler/src/main/ets/EventDispatcher.ts +38 -0
  20. package/harmony/gesture_handler/src/main/ets/GestureHandler.ts +663 -0
  21. package/harmony/gesture_handler/src/main/ets/GestureHandlerArkUIAdapter.ets +202 -0
  22. package/harmony/gesture_handler/src/main/ets/GestureHandlerFactory.ts +45 -0
  23. package/harmony/gesture_handler/src/main/ets/GestureHandlerOrchestrator.ts +280 -0
  24. package/harmony/gesture_handler/src/main/ets/GestureHandlerPackage.ts +22 -0
  25. package/harmony/gesture_handler/src/main/ets/GestureHandlerRegistry.ts +28 -0
  26. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/InteractionManager.ts +109 -130
  27. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/LeastSquareSolver.ts +182 -182
  28. package/harmony/gesture_handler/src/main/ets/NativeViewGestureHandler.ts +115 -0
  29. package/harmony/gesture_handler/src/main/ets/OutgoingEvent.ts +34 -0
  30. package/harmony/gesture_handler/src/main/ets/PanGestureHandler.ts +328 -0
  31. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/PointerTracker.ts +239 -240
  32. package/harmony/gesture_handler/src/main/ets/RNGHError.ts +5 -0
  33. package/harmony/gesture_handler/src/main/ets/RNGHLogger.ts +29 -0
  34. package/harmony/gesture_handler/src/main/ets/RNGHRootTouchHandler.ets +58 -0
  35. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerButton.ets +37 -0
  36. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerModule.ts +125 -0
  37. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerRootView.ets +57 -0
  38. package/harmony/gesture_handler/src/main/ets/RNOHScrollLocker.ts +11 -0
  39. package/harmony/gesture_handler/src/main/ets/State.ts +47 -0
  40. package/harmony/gesture_handler/src/main/ets/TapGestureHandler.ts +206 -0
  41. package/harmony/gesture_handler/src/main/ets/Vector2D.ts +36 -0
  42. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/VelocityTracker.ts +98 -98
  43. package/harmony/gesture_handler/src/main/ets/View.ts +71 -0
  44. package/harmony/gesture_handler/src/main/ets/ViewRegistry.ts +43 -0
  45. package/harmony/gesture_handler/src/main/ets/pages/Index.ets +17 -0
  46. package/harmony/gesture_handler/src/main/ets/webviewability/WebviewAbility.ts +41 -0
  47. package/harmony/gesture_handler/src/main/module.json5 +7 -0
  48. package/harmony/gesture_handler/src/main/resources/base/element/color.json +8 -0
  49. package/harmony/gesture_handler/src/main/resources/base/element/string.json +16 -0
  50. package/harmony/gesture_handler/src/main/resources/base/media/icon.png +0 -0
  51. package/harmony/gesture_handler/src/main/resources/base/profile/main_pages.json +5 -0
  52. package/harmony/gesture_handler/src/main/resources/en_US/element/string.json +16 -0
  53. package/harmony/gesture_handler/src/main/resources/zh_CN/element/string.json +16 -0
  54. package/harmony/gesture_handler/ts.ts +1 -0
  55. package/harmony/gesture_handler.har +0 -0
  56. package/lib/commonjs/RNGestureHandlerModule.js +2 -22
  57. package/lib/commonjs/RNGestureHandlerModule.js.map +1 -1
  58. package/lib/commonjs/components/GestureButtons.js +88 -142
  59. package/lib/commonjs/components/GestureButtons.js.map +1 -1
  60. package/lib/commonjs/components/GestureHandlerButton.js +2 -7
  61. package/lib/commonjs/components/GestureHandlerButton.js.map +1 -1
  62. package/lib/commonjs/components/GestureHandlerRootView.js +13 -13
  63. package/lib/commonjs/components/GestureHandlerRootView.js.map +1 -1
  64. package/lib/commonjs/components/RNGestureHandlerButton.js +23 -0
  65. package/lib/commonjs/components/RNGestureHandlerButton.js.map +1 -0
  66. package/lib/commonjs/components/touchables/GenericTouchable.js +103 -145
  67. package/lib/commonjs/components/touchables/GenericTouchable.js.map +1 -1
  68. package/lib/commonjs/components/touchables/TouchableOpacity.js +34 -53
  69. package/lib/commonjs/components/touchables/TouchableOpacity.js.map +1 -1
  70. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +4 -12
  71. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  72. package/lib/commonjs/components/touchables/index.js +2 -21
  73. package/lib/commonjs/components/touchables/index.js.map +1 -1
  74. package/lib/commonjs/handlers/NativeViewGestureHandler.js +6 -14
  75. package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +1 -1
  76. package/lib/commonjs/handlers/PanGestureHandler.js +12 -32
  77. package/lib/commonjs/handlers/PanGestureHandler.js.map +1 -1
  78. package/lib/commonjs/handlers/TapGestureHandler.js +6 -11
  79. package/lib/commonjs/handlers/TapGestureHandler.js.map +1 -1
  80. package/lib/commonjs/handlers/createHandler.js +141 -223
  81. package/lib/commonjs/handlers/createHandler.js.map +1 -1
  82. package/lib/commonjs/handlers/createNativeWrapper.js +22 -32
  83. package/lib/commonjs/handlers/createNativeWrapper.js.map +1 -1
  84. package/lib/commonjs/handlers/gestureHandlerCommon.js +6 -87
  85. package/lib/commonjs/handlers/gestureHandlerCommon.js.map +1 -1
  86. package/lib/commonjs/handlers/gestures/GestureDetector.js +111 -226
  87. package/lib/commonjs/handlers/gestures/GestureDetector.js.map +1 -1
  88. package/lib/commonjs/index.js +168 -211
  89. package/lib/commonjs/index.js.map +1 -1
  90. package/lib/commonjs/init.js +7 -15
  91. package/lib/commonjs/init.js.map +1 -1
  92. package/lib/module/RNGestureHandlerModule.js +2 -18
  93. package/lib/module/RNGestureHandlerModule.js.map +1 -1
  94. package/lib/module/components/GestureButtons.js +83 -121
  95. package/lib/module/components/GestureButtons.js.map +1 -1
  96. package/lib/module/components/GestureHandlerButton.js +2 -2
  97. package/lib/module/components/GestureHandlerButton.js.map +1 -1
  98. package/lib/module/components/GestureHandlerRootView.js +11 -3
  99. package/lib/module/components/GestureHandlerRootView.js.map +1 -1
  100. package/lib/module/components/RNGestureHandlerButton.js +17 -0
  101. package/lib/module/components/RNGestureHandlerButton.js.map +1 -0
  102. package/lib/module/components/touchables/GenericTouchable.js +98 -133
  103. package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
  104. package/lib/module/components/touchables/TouchableOpacity.js +29 -43
  105. package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
  106. package/lib/module/components/touchables/TouchableWithoutFeedback.js +1 -2
  107. package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  108. package/lib/module/components/touchables/index.js +5 -2
  109. package/lib/module/components/touchables/index.js.map +1 -1
  110. package/lib/module/handlers/NativeViewGestureHandler.js +1 -1
  111. package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
  112. package/lib/module/handlers/PanGestureHandler.js +6 -21
  113. package/lib/module/handlers/PanGestureHandler.js.map +1 -1
  114. package/lib/module/handlers/TapGestureHandler.js +2 -1
  115. package/lib/module/handlers/TapGestureHandler.js.map +1 -1
  116. package/lib/module/handlers/createHandler.js +140 -196
  117. package/lib/module/handlers/createHandler.js.map +1 -1
  118. package/lib/module/handlers/createNativeWrapper.js +17 -22
  119. package/lib/module/handlers/createNativeWrapper.js.map +1 -1
  120. package/lib/module/handlers/gestureHandlerCommon.js +5 -71
  121. package/lib/module/handlers/gestureHandlerCommon.js.map +1 -1
  122. package/lib/module/handlers/gestures/GestureDetector.js +99 -175
  123. package/lib/module/handlers/gestures/GestureDetector.js.map +1 -1
  124. package/lib/module/index.js +160 -18
  125. package/lib/module/index.js.map +1 -1
  126. package/lib/module/init.js +6 -5
  127. package/lib/module/init.js.map +1 -1
  128. package/lib/typescript/RNGestureHandlerModule.d.ts +7 -13
  129. package/lib/typescript/RNGestureHandlerModule.d.ts.map +1 -0
  130. package/lib/typescript/components/GestureButtons.d.ts +122 -121
  131. package/lib/typescript/components/GestureButtons.d.ts.map +1 -0
  132. package/lib/typescript/components/GestureHandlerButton.d.ts +5 -4
  133. package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -0
  134. package/lib/typescript/components/GestureHandlerRootView.d.ts +7 -6
  135. package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -0
  136. package/lib/typescript/components/RNGestureHandlerButton.d.ts +2 -0
  137. package/lib/typescript/components/RNGestureHandlerButton.d.ts.map +1 -0
  138. package/lib/typescript/components/touchables/GenericTouchable.d.ts +68 -68
  139. package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -0
  140. package/lib/typescript/components/touchables/TouchableOpacity.d.ts +26 -25
  141. package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -0
  142. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +8 -7
  143. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -0
  144. package/lib/typescript/components/touchables/index.d.ts +4 -7
  145. package/lib/typescript/components/touchables/index.d.ts.map +1 -0
  146. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +29 -28
  147. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -0
  148. package/lib/typescript/handlers/PanGestureHandler.d.ts +140 -139
  149. package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -0
  150. package/lib/typescript/handlers/TapGestureHandler.d.ts +58 -57
  151. package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -0
  152. package/lib/typescript/handlers/createHandler.d.ts +12 -11
  153. package/lib/typescript/handlers/createHandler.d.ts.map +1 -0
  154. package/lib/typescript/handlers/createNativeWrapper.d.ts +4 -3
  155. package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -0
  156. package/lib/typescript/handlers/gestureHandlerCommon.d.ts +2 -68
  157. package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -0
  158. package/lib/typescript/handlers/gestures/GestureDetector.d.ts +24 -19
  159. package/lib/typescript/handlers/gestures/GestureDetector.d.ts.map +1 -0
  160. package/lib/typescript/index.d.ts +9 -52
  161. package/lib/typescript/index.d.ts.map +1 -0
  162. package/lib/typescript/init.d.ts +3 -2
  163. package/lib/typescript/init.d.ts.map +1 -0
  164. package/package.json +70 -156
  165. package/src/RNGestureHandlerModule.ts +6 -50
  166. package/src/components/GestureButtons.tsx +334 -332
  167. package/src/components/GestureHandlerButton.tsx +5 -5
  168. package/src/components/GestureHandlerRootView.tsx +34 -23
  169. package/src/components/RNGestureHandlerButton.tsx +23 -0
  170. package/src/components/touchables/GenericTouchable.tsx +301 -301
  171. package/src/components/touchables/TouchableOpacity.tsx +76 -75
  172. package/src/components/touchables/TouchableWithoutFeedback.tsx +14 -14
  173. package/src/components/touchables/index.ts +7 -7
  174. package/src/handlers/NativeViewGestureHandler.ts +55 -55
  175. package/src/handlers/PanGestureHandler.ts +327 -325
  176. package/src/handlers/TapGestureHandler.ts +95 -94
  177. package/src/handlers/createHandler.tsx +535 -533
  178. package/src/handlers/createNativeWrapper.tsx +81 -80
  179. package/src/handlers/gestureHandlerCommon.ts +15 -250
  180. package/src/handlers/gestures/GestureDetector.tsx +823 -822
  181. package/src/index.ts +172 -174
  182. package/src/init.ts +18 -18
  183. package/DrawerLayout/package.json +0 -6
  184. package/RNGestureHandler.podspec +0 -44
  185. package/Swipeable/package.json +0 -6
  186. package/android/build.gradle +0 -209
  187. package/android/common/src/main/java/com/swmansion/common/GestureHandlerStateManager.kt +0 -5
  188. package/android/fabric/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerComponentsRegistry.java +0 -29
  189. package/android/fabric/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -12
  190. package/android/gradle.properties +0 -19
  191. package/android/noreanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -10
  192. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +0 -50
  193. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +0 -23
  194. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +0 -25
  195. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +0 -16
  196. package/android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -13
  197. package/android/reanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -17
  198. package/android/src/main/AndroidManifest.xml +0 -3
  199. package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -21
  200. package/android/src/main/java/com/swmansion/gesturehandler/core/FlingGestureHandler.kt +0 -100
  201. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +0 -807
  202. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.kt +0 -8
  203. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +0 -671
  204. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerRegistry.kt +0 -8
  205. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureUtils.kt +0 -47
  206. package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +0 -120
  207. package/android/src/main/java/com/swmansion/gesturehandler/core/LongPressGestureHandler.kt +0 -100
  208. package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +0 -11
  209. package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +0 -257
  210. package/android/src/main/java/com/swmansion/gesturehandler/core/OnTouchEventListener.kt +0 -9
  211. package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +0 -322
  212. package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +0 -103
  213. package/android/src/main/java/com/swmansion/gesturehandler/core/PointerEventsConfig.kt +0 -23
  214. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureDetector.kt +0 -125
  215. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +0 -93
  216. package/android/src/main/java/com/swmansion/gesturehandler/core/ScaleGestureDetector.java +0 -558
  217. package/android/src/main/java/com/swmansion/gesturehandler/core/TapGestureHandler.kt +0 -168
  218. package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -10
  219. package/android/src/main/java/com/swmansion/gesturehandler/react/Extensions.kt +0 -16
  220. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +0 -423
  221. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.kt +0 -15
  222. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.kt +0 -75
  223. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +0 -74
  224. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +0 -702
  225. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +0 -100
  226. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +0 -142
  227. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.kt +0 -5
  228. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +0 -78
  229. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.kt +0 -51
  230. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.kt +0 -78
  231. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +0 -69
  232. package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -51
  233. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.kt +0 -30
  234. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.kt +0 -22
  235. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.kt +0 -30
  236. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.kt +0 -33
  237. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.kt +0 -5
  238. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.kt +0 -18
  239. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.kt +0 -42
  240. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.kt +0 -30
  241. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.kt +0 -30
  242. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.kt +0 -30
  243. package/android/src/main/jni/CMakeLists.txt +0 -37
  244. package/android/src/main/jni/cpp-adapter.cpp +0 -44
  245. package/ios/Handlers/RNFlingHandler.h +0 -4
  246. package/ios/Handlers/RNFlingHandler.m +0 -152
  247. package/ios/Handlers/RNForceTouchHandler.h +0 -4
  248. package/ios/Handlers/RNForceTouchHandler.m +0 -175
  249. package/ios/Handlers/RNHoverHandler.h +0 -12
  250. package/ios/Handlers/RNHoverHandler.m +0 -153
  251. package/ios/Handlers/RNLongPressHandler.h +0 -12
  252. package/ios/Handlers/RNLongPressHandler.m +0 -183
  253. package/ios/Handlers/RNManualHandler.h +0 -4
  254. package/ios/Handlers/RNManualHandler.m +0 -88
  255. package/ios/Handlers/RNNativeViewHandler.h +0 -15
  256. package/ios/Handlers/RNNativeViewHandler.mm +0 -193
  257. package/ios/Handlers/RNPanHandler.h +0 -12
  258. package/ios/Handlers/RNPanHandler.m +0 -331
  259. package/ios/Handlers/RNPinchHandler.h +0 -12
  260. package/ios/Handlers/RNPinchHandler.m +0 -95
  261. package/ios/Handlers/RNRotationHandler.h +0 -12
  262. package/ios/Handlers/RNRotationHandler.m +0 -93
  263. package/ios/Handlers/RNTapHandler.h +0 -12
  264. package/ios/Handlers/RNTapHandler.m +0 -265
  265. package/ios/RNGHTouchEventType.h +0 -9
  266. package/ios/RNGestureHandler.h +0 -90
  267. package/ios/RNGestureHandler.m +0 -493
  268. package/ios/RNGestureHandler.xcodeproj/project.pbxproj +0 -690
  269. package/ios/RNGestureHandler.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  270. package/ios/RNGestureHandlerActionType.h +0 -10
  271. package/ios/RNGestureHandlerButton.h +0 -19
  272. package/ios/RNGestureHandlerButton.m +0 -77
  273. package/ios/RNGestureHandlerButtonComponentView.h +0 -17
  274. package/ios/RNGestureHandlerButtonComponentView.mm +0 -64
  275. package/ios/RNGestureHandlerButtonManager.h +0 -5
  276. package/ios/RNGestureHandlerButtonManager.m +0 -34
  277. package/ios/RNGestureHandlerDirection.h +0 -8
  278. package/ios/RNGestureHandlerEvents.h +0 -65
  279. package/ios/RNGestureHandlerEvents.m +0 -260
  280. package/ios/RNGestureHandlerManager.h +0 -35
  281. package/ios/RNGestureHandlerManager.mm +0 -367
  282. package/ios/RNGestureHandlerModule.h +0 -7
  283. package/ios/RNGestureHandlerModule.mm +0 -320
  284. package/ios/RNGestureHandlerPointerTracker.h +0 -25
  285. package/ios/RNGestureHandlerPointerTracker.m +0 -243
  286. package/ios/RNGestureHandlerRegistry.h +0 -21
  287. package/ios/RNGestureHandlerRegistry.m +0 -63
  288. package/ios/RNGestureHandlerRootViewComponentView.mm +0 -21
  289. package/ios/RNGestureHandlerState.h +0 -10
  290. package/ios/RNGestureHandlerStateManager.h +0 -5
  291. package/ios/RNManualActivationRecognizer.h +0 -10
  292. package/ios/RNManualActivationRecognizer.m +0 -88
  293. package/ios/RNRootViewGestureRecognizer.h +0 -17
  294. package/ios/RNRootViewGestureRecognizer.m +0 -106
  295. package/jest-utils/package.json +0 -6
  296. package/jestSetup.js +0 -7
  297. package/lib/commonjs/ActionType.js +0 -15
  298. package/lib/commonjs/ActionType.js.map +0 -1
  299. package/lib/commonjs/Directions.js +0 -15
  300. package/lib/commonjs/Directions.js.map +0 -1
  301. package/lib/commonjs/EnableNewWebImplementation.js +0 -35
  302. package/lib/commonjs/EnableNewWebImplementation.js.map +0 -1
  303. package/lib/commonjs/GestureHandlerRootViewContext.js +0 -15
  304. package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
  305. package/lib/commonjs/PlatformConstants.js +0 -15
  306. package/lib/commonjs/PlatformConstants.js.map +0 -1
  307. package/lib/commonjs/PlatformConstants.web.js +0 -14
  308. package/lib/commonjs/PlatformConstants.web.js.map +0 -1
  309. package/lib/commonjs/RNGestureHandlerModule.macos.js +0 -149
  310. package/lib/commonjs/RNGestureHandlerModule.macos.js.map +0 -1
  311. package/lib/commonjs/RNGestureHandlerModule.web.js +0 -163
  312. package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
  313. package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -158
  314. package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
  315. package/lib/commonjs/RNRenderer.js +0 -16
  316. package/lib/commonjs/RNRenderer.js.map +0 -1
  317. package/lib/commonjs/RNRenderer.web.js +0 -11
  318. package/lib/commonjs/RNRenderer.web.js.map +0 -1
  319. package/lib/commonjs/State.js +0 -18
  320. package/lib/commonjs/State.js.map +0 -1
  321. package/lib/commonjs/TouchEventType.js +0 -16
  322. package/lib/commonjs/TouchEventType.js.map +0 -1
  323. package/lib/commonjs/components/DrawerLayout.js +0 -566
  324. package/lib/commonjs/components/DrawerLayout.js.map +0 -1
  325. package/lib/commonjs/components/GestureComponents.js +0 -115
  326. package/lib/commonjs/components/GestureComponents.js.map +0 -1
  327. package/lib/commonjs/components/GestureComponents.web.js +0 -52
  328. package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
  329. package/lib/commonjs/components/GestureHandlerButton.web.js +0 -24
  330. package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
  331. package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -31
  332. package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
  333. package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -25
  334. package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
  335. package/lib/commonjs/components/Swipeable.js +0 -408
  336. package/lib/commonjs/components/Swipeable.js.map +0 -1
  337. package/lib/commonjs/components/gestureHandlerRootHOC.js +0 -40
  338. package/lib/commonjs/components/gestureHandlerRootHOC.js.map +0 -1
  339. package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -109
  340. package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
  341. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -100
  342. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  343. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -12
  344. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
  345. package/lib/commonjs/getReactNativeVersion.js +0 -22
  346. package/lib/commonjs/getReactNativeVersion.js.map +0 -1
  347. package/lib/commonjs/getReactNativeVersion.web.js +0 -11
  348. package/lib/commonjs/getReactNativeVersion.web.js.map +0 -1
  349. package/lib/commonjs/getShadowNodeFromRef.js +0 -27
  350. package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
  351. package/lib/commonjs/getShadowNodeFromRef.web.js +0 -15
  352. package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
  353. package/lib/commonjs/ghQueueMicrotask.js +0 -12
  354. package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
  355. package/lib/commonjs/handlers/FlingGestureHandler.js +0 -25
  356. package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
  357. package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -49
  358. package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
  359. package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -27
  360. package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
  361. package/lib/commonjs/handlers/PinchGestureHandler.js +0 -23
  362. package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
  363. package/lib/commonjs/handlers/PressabilityDebugView.js +0 -14
  364. package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
  365. package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -12
  366. package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
  367. package/lib/commonjs/handlers/RotationGestureHandler.js +0 -23
  368. package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
  369. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
  370. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
  371. package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -147
  372. package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
  373. package/lib/commonjs/handlers/gestures/flingGesture.js +0 -34
  374. package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
  375. package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -65
  376. package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
  377. package/lib/commonjs/handlers/gestures/gesture.js +0 -241
  378. package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
  379. package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -105
  380. package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
  381. package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -90
  382. package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
  383. package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -65
  384. package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
  385. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -32
  386. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
  387. package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -74
  388. package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
  389. package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -35
  390. package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
  391. package/lib/commonjs/handlers/gestures/manualGesture.js +0 -31
  392. package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
  393. package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
  394. package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
  395. package/lib/commonjs/handlers/gestures/panGesture.js +0 -149
  396. package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
  397. package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -45
  398. package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
  399. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -37
  400. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
  401. package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -45
  402. package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
  403. package/lib/commonjs/handlers/gestures/tapGesture.js +0 -60
  404. package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
  405. package/lib/commonjs/handlers/handlersRegistry.js +0 -67
  406. package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
  407. package/lib/commonjs/jestUtils/index.js +0 -20
  408. package/lib/commonjs/jestUtils/index.js.map +0 -1
  409. package/lib/commonjs/jestUtils/jestUtils.js +0 -375
  410. package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
  411. package/lib/commonjs/mocks.js +0 -66
  412. package/lib/commonjs/mocks.js.map +0 -1
  413. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js +0 -15
  414. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
  415. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js +0 -15
  416. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
  417. package/lib/commonjs/typeUtils.js +0 -2
  418. package/lib/commonjs/typeUtils.js.map +0 -1
  419. package/lib/commonjs/utils.js +0 -63
  420. package/lib/commonjs/utils.js.map +0 -1
  421. package/lib/commonjs/web/constants.js +0 -16
  422. package/lib/commonjs/web/constants.js.map +0 -1
  423. package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -165
  424. package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
  425. package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -156
  426. package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
  427. package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -167
  428. package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
  429. package/lib/commonjs/web/handlers/GestureHandler.js +0 -794
  430. package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
  431. package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -62
  432. package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
  433. package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -151
  434. package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
  435. package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -61
  436. package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
  437. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -178
  438. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
  439. package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -448
  440. package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
  441. package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -174
  442. package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
  443. package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -186
  444. package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
  445. package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -280
  446. package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
  447. package/lib/commonjs/web/interfaces.js +0 -55
  448. package/lib/commonjs/web/interfaces.js.map +0 -1
  449. package/lib/commonjs/web/tools/CircularBuffer.js +0 -59
  450. package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
  451. package/lib/commonjs/web/tools/EventManager.js +0 -127
  452. package/lib/commonjs/web/tools/EventManager.js.map +0 -1
  453. package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -6
  454. package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
  455. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -349
  456. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  457. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -118
  458. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  459. package/lib/commonjs/web/tools/InteractionManager.js +0 -114
  460. package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
  461. package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -204
  462. package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
  463. package/lib/commonjs/web/tools/NodeManager.js +0 -48
  464. package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
  465. package/lib/commonjs/web/tools/PointerEventManager.js +0 -198
  466. package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
  467. package/lib/commonjs/web/tools/PointerTracker.js +0 -226
  468. package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
  469. package/lib/commonjs/web/tools/TouchEventManager.js +0 -138
  470. package/lib/commonjs/web/tools/TouchEventManager.js.map +0 -1
  471. package/lib/commonjs/web/tools/VelocityTracker.js +0 -111
  472. package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
  473. package/lib/commonjs/web/utils.js +0 -15
  474. package/lib/commonjs/web/utils.js.map +0 -1
  475. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js +0 -105
  476. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js.map +0 -1
  477. package/lib/commonjs/web_hammer/DraggingGestureHandler.js +0 -53
  478. package/lib/commonjs/web_hammer/DraggingGestureHandler.js.map +0 -1
  479. package/lib/commonjs/web_hammer/Errors.js +0 -16
  480. package/lib/commonjs/web_hammer/Errors.js.map +0 -1
  481. package/lib/commonjs/web_hammer/FlingGestureHandler.js +0 -170
  482. package/lib/commonjs/web_hammer/FlingGestureHandler.js.map +0 -1
  483. package/lib/commonjs/web_hammer/GestureHandler.js +0 -579
  484. package/lib/commonjs/web_hammer/GestureHandler.js.map +0 -1
  485. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js +0 -54
  486. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js.map +0 -1
  487. package/lib/commonjs/web_hammer/LongPressGestureHandler.js +0 -71
  488. package/lib/commonjs/web_hammer/LongPressGestureHandler.js.map +0 -1
  489. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js +0 -66
  490. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js.map +0 -1
  491. package/lib/commonjs/web_hammer/NodeManager.js +0 -46
  492. package/lib/commonjs/web_hammer/NodeManager.js.map +0 -1
  493. package/lib/commonjs/web_hammer/PanGestureHandler.js +0 -208
  494. package/lib/commonjs/web_hammer/PanGestureHandler.js.map +0 -1
  495. package/lib/commonjs/web_hammer/PinchGestureHandler.js +0 -40
  496. package/lib/commonjs/web_hammer/PinchGestureHandler.js.map +0 -1
  497. package/lib/commonjs/web_hammer/PressGestureHandler.js +0 -188
  498. package/lib/commonjs/web_hammer/PressGestureHandler.js.map +0 -1
  499. package/lib/commonjs/web_hammer/RotationGestureHandler.js +0 -44
  500. package/lib/commonjs/web_hammer/RotationGestureHandler.js.map +0 -1
  501. package/lib/commonjs/web_hammer/TapGestureHandler.js +0 -192
  502. package/lib/commonjs/web_hammer/TapGestureHandler.js.map +0 -1
  503. package/lib/commonjs/web_hammer/constants.js +0 -64
  504. package/lib/commonjs/web_hammer/constants.js.map +0 -1
  505. package/lib/commonjs/web_hammer/utils.js +0 -42
  506. package/lib/commonjs/web_hammer/utils.js.map +0 -1
  507. package/lib/module/ActionType.js +0 -7
  508. package/lib/module/ActionType.js.map +0 -1
  509. package/lib/module/Directions.js +0 -7
  510. package/lib/module/Directions.js.map +0 -1
  511. package/lib/module/EnableNewWebImplementation.js +0 -22
  512. package/lib/module/EnableNewWebImplementation.js.map +0 -1
  513. package/lib/module/GestureHandlerRootViewContext.js +0 -3
  514. package/lib/module/GestureHandlerRootViewContext.js.map +0 -1
  515. package/lib/module/PlatformConstants.js +0 -5
  516. package/lib/module/PlatformConstants.js.map +0 -1
  517. package/lib/module/PlatformConstants.web.js +0 -7
  518. package/lib/module/PlatformConstants.web.js.map +0 -1
  519. package/lib/module/RNGestureHandlerModule.macos.js +0 -110
  520. package/lib/module/RNGestureHandlerModule.macos.js.map +0 -1
  521. package/lib/module/RNGestureHandlerModule.web.js +0 -122
  522. package/lib/module/RNGestureHandlerModule.web.js.map +0 -1
  523. package/lib/module/RNGestureHandlerModule.windows.js +0 -118
  524. package/lib/module/RNGestureHandlerModule.windows.js.map +0 -1
  525. package/lib/module/RNRenderer.js +0 -4
  526. package/lib/module/RNRenderer.js.map +0 -1
  527. package/lib/module/RNRenderer.web.js +0 -4
  528. package/lib/module/RNRenderer.web.js.map +0 -1
  529. package/lib/module/State.js +0 -10
  530. package/lib/module/State.js.map +0 -1
  531. package/lib/module/TouchEventType.js +0 -8
  532. package/lib/module/TouchEventType.js.map +0 -1
  533. package/lib/module/components/DrawerLayout.js +0 -551
  534. package/lib/module/components/DrawerLayout.js.map +0 -1
  535. package/lib/module/components/GestureComponents.js +0 -90
  536. package/lib/module/components/GestureComponents.js.map +0 -1
  537. package/lib/module/components/GestureComponents.web.js +0 -28
  538. package/lib/module/components/GestureComponents.web.js.map +0 -1
  539. package/lib/module/components/GestureHandlerButton.web.js +0 -9
  540. package/lib/module/components/GestureHandlerButton.web.js.map +0 -1
  541. package/lib/module/components/GestureHandlerRootView.android.js +0 -14
  542. package/lib/module/components/GestureHandlerRootView.android.js.map +0 -1
  543. package/lib/module/components/GestureHandlerRootView.web.js +0 -9
  544. package/lib/module/components/GestureHandlerRootView.web.js.map +0 -1
  545. package/lib/module/components/Swipeable.js +0 -390
  546. package/lib/module/components/Swipeable.js.map +0 -1
  547. package/lib/module/components/gestureHandlerRootHOC.js +0 -22
  548. package/lib/module/components/gestureHandlerRootHOC.js.map +0 -1
  549. package/lib/module/components/touchables/TouchableHighlight.js +0 -95
  550. package/lib/module/components/touchables/TouchableHighlight.js.map +0 -1
  551. package/lib/module/components/touchables/TouchableNativeFeedback.android.js +0 -84
  552. package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  553. package/lib/module/components/touchables/TouchableNativeFeedback.js +0 -3
  554. package/lib/module/components/touchables/TouchableNativeFeedback.js.map +0 -1
  555. package/lib/module/getReactNativeVersion.js +0 -10
  556. package/lib/module/getReactNativeVersion.js.map +0 -1
  557. package/lib/module/getReactNativeVersion.web.js +0 -4
  558. package/lib/module/getReactNativeVersion.web.js.map +0 -1
  559. package/lib/module/getShadowNodeFromRef.js +0 -20
  560. package/lib/module/getShadowNodeFromRef.js.map +0 -1
  561. package/lib/module/getShadowNodeFromRef.web.js +0 -8
  562. package/lib/module/getShadowNodeFromRef.web.js.map +0 -1
  563. package/lib/module/ghQueueMicrotask.js +0 -5
  564. package/lib/module/ghQueueMicrotask.js.map +0 -1
  565. package/lib/module/handlers/FlingGestureHandler.js +0 -11
  566. package/lib/module/handlers/FlingGestureHandler.js.map +0 -1
  567. package/lib/module/handlers/ForceTouchGestureHandler.js +0 -31
  568. package/lib/module/handlers/ForceTouchGestureHandler.js.map +0 -1
  569. package/lib/module/handlers/LongPressGestureHandler.js +0 -13
  570. package/lib/module/handlers/LongPressGestureHandler.js.map +0 -1
  571. package/lib/module/handlers/PinchGestureHandler.js +0 -10
  572. package/lib/module/handlers/PinchGestureHandler.js.map +0 -1
  573. package/lib/module/handlers/PressabilityDebugView.js +0 -3
  574. package/lib/module/handlers/PressabilityDebugView.js.map +0 -1
  575. package/lib/module/handlers/PressabilityDebugView.web.js +0 -5
  576. package/lib/module/handlers/PressabilityDebugView.web.js.map +0 -1
  577. package/lib/module/handlers/RotationGestureHandler.js +0 -10
  578. package/lib/module/handlers/RotationGestureHandler.js.map +0 -1
  579. package/lib/module/handlers/gestureHandlerTypesCompat.js +0 -2
  580. package/lib/module/handlers/gestureHandlerTypesCompat.js.map +0 -1
  581. package/lib/module/handlers/gestures/eventReceiver.js +0 -131
  582. package/lib/module/handlers/gestures/eventReceiver.js.map +0 -1
  583. package/lib/module/handlers/gestures/flingGesture.js +0 -24
  584. package/lib/module/handlers/gestures/flingGesture.js.map +0 -1
  585. package/lib/module/handlers/gestures/forceTouchGesture.js +0 -56
  586. package/lib/module/handlers/gestures/forceTouchGesture.js.map +0 -1
  587. package/lib/module/handlers/gestures/gesture.js +0 -222
  588. package/lib/module/handlers/gestures/gesture.js.map +0 -1
  589. package/lib/module/handlers/gestures/gestureComposition.js +0 -90
  590. package/lib/module/handlers/gestures/gestureComposition.js.map +0 -1
  591. package/lib/module/handlers/gestures/gestureObjects.js +0 -71
  592. package/lib/module/handlers/gestures/gestureObjects.js.map +0 -1
  593. package/lib/module/handlers/gestures/gestureStateManager.js +0 -54
  594. package/lib/module/handlers/gestures/gestureStateManager.js.map +0 -1
  595. package/lib/module/handlers/gestures/gestureStateManager.web.js +0 -21
  596. package/lib/module/handlers/gestures/gestureStateManager.web.js.map +0 -1
  597. package/lib/module/handlers/gestures/hoverGesture.js +0 -62
  598. package/lib/module/handlers/gestures/hoverGesture.js.map +0 -1
  599. package/lib/module/handlers/gestures/longPressGesture.js +0 -25
  600. package/lib/module/handlers/gestures/longPressGesture.js.map +0 -1
  601. package/lib/module/handlers/gestures/manualGesture.js +0 -22
  602. package/lib/module/handlers/gestures/manualGesture.js.map +0 -1
  603. package/lib/module/handlers/gestures/nativeGesture.js +0 -24
  604. package/lib/module/handlers/gestures/nativeGesture.js.map +0 -1
  605. package/lib/module/handlers/gestures/panGesture.js +0 -140
  606. package/lib/module/handlers/gestures/panGesture.js.map +0 -1
  607. package/lib/module/handlers/gestures/pinchGesture.js +0 -36
  608. package/lib/module/handlers/gestures/pinchGesture.js.map +0 -1
  609. package/lib/module/handlers/gestures/reanimatedWrapper.js +0 -30
  610. package/lib/module/handlers/gestures/reanimatedWrapper.js.map +0 -1
  611. package/lib/module/handlers/gestures/rotationGesture.js +0 -36
  612. package/lib/module/handlers/gestures/rotationGesture.js.map +0 -1
  613. package/lib/module/handlers/gestures/tapGesture.js +0 -50
  614. package/lib/module/handlers/gestures/tapGesture.js.map +0 -1
  615. package/lib/module/handlers/handlersRegistry.js +0 -44
  616. package/lib/module/handlers/handlersRegistry.js.map +0 -1
  617. package/lib/module/jestUtils/index.js +0 -2
  618. package/lib/module/jestUtils/index.js.map +0 -1
  619. package/lib/module/jestUtils/jestUtils.js +0 -350
  620. package/lib/module/jestUtils/jestUtils.js.map +0 -1
  621. package/lib/module/mocks.js +0 -56
  622. package/lib/module/mocks.js.map +0 -1
  623. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js +0 -3
  624. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
  625. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js +0 -3
  626. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
  627. package/lib/module/typeUtils.js +0 -2
  628. package/lib/module/typeUtils.js.map +0 -1
  629. package/lib/module/utils.js +0 -44
  630. package/lib/module/utils.js.map +0 -1
  631. package/lib/module/web/constants.js +0 -8
  632. package/lib/module/web/constants.js.map +0 -1
  633. package/lib/module/web/detectors/RotationGestureDetector.js +0 -155
  634. package/lib/module/web/detectors/RotationGestureDetector.js.map +0 -1
  635. package/lib/module/web/detectors/ScaleGestureDetector.js +0 -145
  636. package/lib/module/web/detectors/ScaleGestureDetector.js.map +0 -1
  637. package/lib/module/web/handlers/FlingGestureHandler.js +0 -152
  638. package/lib/module/web/handlers/FlingGestureHandler.js.map +0 -1
  639. package/lib/module/web/handlers/GestureHandler.js +0 -776
  640. package/lib/module/web/handlers/GestureHandler.js.map +0 -1
  641. package/lib/module/web/handlers/HoverGestureHandler.js +0 -47
  642. package/lib/module/web/handlers/HoverGestureHandler.js.map +0 -1
  643. package/lib/module/web/handlers/LongPressGestureHandler.js +0 -136
  644. package/lib/module/web/handlers/LongPressGestureHandler.js.map +0 -1
  645. package/lib/module/web/handlers/ManualGestureHandler.js +0 -49
  646. package/lib/module/web/handlers/ManualGestureHandler.js.map +0 -1
  647. package/lib/module/web/handlers/NativeViewGestureHandler.js +0 -163
  648. package/lib/module/web/handlers/NativeViewGestureHandler.js.map +0 -1
  649. package/lib/module/web/handlers/PanGestureHandler.js +0 -433
  650. package/lib/module/web/handlers/PanGestureHandler.js.map +0 -1
  651. package/lib/module/web/handlers/PinchGestureHandler.js +0 -159
  652. package/lib/module/web/handlers/PinchGestureHandler.js.map +0 -1
  653. package/lib/module/web/handlers/RotationGestureHandler.js +0 -171
  654. package/lib/module/web/handlers/RotationGestureHandler.js.map +0 -1
  655. package/lib/module/web/handlers/TapGestureHandler.js +0 -265
  656. package/lib/module/web/handlers/TapGestureHandler.js.map +0 -1
  657. package/lib/module/web/interfaces.js +0 -45
  658. package/lib/module/web/interfaces.js.map +0 -1
  659. package/lib/module/web/tools/CircularBuffer.js +0 -50
  660. package/lib/module/web/tools/CircularBuffer.js.map +0 -1
  661. package/lib/module/web/tools/EventManager.js +0 -118
  662. package/lib/module/web/tools/EventManager.js.map +0 -1
  663. package/lib/module/web/tools/GestureHandlerDelegate.js +0 -2
  664. package/lib/module/web/tools/GestureHandlerDelegate.js.map +0 -1
  665. package/lib/module/web/tools/GestureHandlerOrchestrator.js +0 -335
  666. package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  667. package/lib/module/web/tools/GestureHandlerWebDelegate.js +0 -102
  668. package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  669. package/lib/module/web/tools/InteractionManager.js +0 -105
  670. package/lib/module/web/tools/InteractionManager.js.map +0 -1
  671. package/lib/module/web/tools/LeastSquareSolver.js +0 -195
  672. package/lib/module/web/tools/LeastSquareSolver.js.map +0 -1
  673. package/lib/module/web/tools/NodeManager.js +0 -39
  674. package/lib/module/web/tools/NodeManager.js.map +0 -1
  675. package/lib/module/web/tools/PointerEventManager.js +0 -184
  676. package/lib/module/web/tools/PointerEventManager.js.map +0 -1
  677. package/lib/module/web/tools/PointerTracker.js +0 -213
  678. package/lib/module/web/tools/PointerTracker.js.map +0 -1
  679. package/lib/module/web/tools/TouchEventManager.js +0 -124
  680. package/lib/module/web/tools/TouchEventManager.js.map +0 -1
  681. package/lib/module/web/tools/VelocityTracker.js +0 -98
  682. package/lib/module/web/tools/VelocityTracker.js.map +0 -1
  683. package/lib/module/web/utils.js +0 -8
  684. package/lib/module/web/utils.js.map +0 -1
  685. package/lib/module/web_hammer/DiscreteGestureHandler.js +0 -94
  686. package/lib/module/web_hammer/DiscreteGestureHandler.js.map +0 -1
  687. package/lib/module/web_hammer/DraggingGestureHandler.js +0 -40
  688. package/lib/module/web_hammer/DraggingGestureHandler.js.map +0 -1
  689. package/lib/module/web_hammer/Errors.js +0 -7
  690. package/lib/module/web_hammer/Errors.js.map +0 -1
  691. package/lib/module/web_hammer/FlingGestureHandler.js +0 -156
  692. package/lib/module/web_hammer/FlingGestureHandler.js.map +0 -1
  693. package/lib/module/web_hammer/GestureHandler.js +0 -563
  694. package/lib/module/web_hammer/GestureHandler.js.map +0 -1
  695. package/lib/module/web_hammer/IndiscreteGestureHandler.js +0 -44
  696. package/lib/module/web_hammer/IndiscreteGestureHandler.js.map +0 -1
  697. package/lib/module/web_hammer/LongPressGestureHandler.js +0 -58
  698. package/lib/module/web_hammer/LongPressGestureHandler.js.map +0 -1
  699. package/lib/module/web_hammer/NativeViewGestureHandler.js +0 -49
  700. package/lib/module/web_hammer/NativeViewGestureHandler.js.map +0 -1
  701. package/lib/module/web_hammer/NodeManager.js +0 -33
  702. package/lib/module/web_hammer/NodeManager.js.map +0 -1
  703. package/lib/module/web_hammer/PanGestureHandler.js +0 -194
  704. package/lib/module/web_hammer/PanGestureHandler.js.map +0 -1
  705. package/lib/module/web_hammer/PinchGestureHandler.js +0 -29
  706. package/lib/module/web_hammer/PinchGestureHandler.js.map +0 -1
  707. package/lib/module/web_hammer/PressGestureHandler.js +0 -174
  708. package/lib/module/web_hammer/PressGestureHandler.js.map +0 -1
  709. package/lib/module/web_hammer/RotationGestureHandler.js +0 -32
  710. package/lib/module/web_hammer/RotationGestureHandler.js.map +0 -1
  711. package/lib/module/web_hammer/TapGestureHandler.js +0 -180
  712. package/lib/module/web_hammer/TapGestureHandler.js.map +0 -1
  713. package/lib/module/web_hammer/constants.js +0 -43
  714. package/lib/module/web_hammer/constants.js.map +0 -1
  715. package/lib/module/web_hammer/utils.js +0 -19
  716. package/lib/module/web_hammer/utils.js.map +0 -1
  717. package/lib/typescript/ActionType.d.ts +0 -7
  718. package/lib/typescript/Directions.d.ts +0 -7
  719. package/lib/typescript/EnableNewWebImplementation.d.ts +0 -3
  720. package/lib/typescript/GestureHandlerRootViewContext.d.ts +0 -3
  721. package/lib/typescript/PlatformConstants.d.ts +0 -5
  722. package/lib/typescript/PlatformConstants.web.d.ts +0 -4
  723. package/lib/typescript/RNGestureHandlerModule.macos.d.ts +0 -47
  724. package/lib/typescript/RNGestureHandlerModule.web.d.ts +0 -50
  725. package/lib/typescript/RNGestureHandlerModule.windows.d.ts +0 -48
  726. package/lib/typescript/RNRenderer.d.ts +0 -1
  727. package/lib/typescript/RNRenderer.web.d.ts +0 -3
  728. package/lib/typescript/State.d.ts +0 -9
  729. package/lib/typescript/TouchEventType.d.ts +0 -8
  730. package/lib/typescript/components/DrawerLayout.d.ts +0 -148
  731. package/lib/typescript/components/GestureComponents.d.ts +0 -22
  732. package/lib/typescript/components/GestureComponents.web.d.ts +0 -8
  733. package/lib/typescript/components/GestureHandlerButton.web.d.ts +0 -4
  734. package/lib/typescript/components/GestureHandlerRootView.android.d.ts +0 -6
  735. package/lib/typescript/components/GestureHandlerRootView.web.d.ts +0 -6
  736. package/lib/typescript/components/Swipeable.d.ts +0 -178
  737. package/lib/typescript/components/gestureHandlerRootHOC.d.ts +0 -3
  738. package/lib/typescript/components/touchables/TouchableHighlight.d.ts +0 -36
  739. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +0 -45
  740. package/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts +0 -2
  741. package/lib/typescript/getReactNativeVersion.d.ts +0 -4
  742. package/lib/typescript/getReactNativeVersion.web.d.ts +0 -1
  743. package/lib/typescript/getShadowNodeFromRef.d.ts +0 -1
  744. package/lib/typescript/getShadowNodeFromRef.web.d.ts +0 -1
  745. package/lib/typescript/ghQueueMicrotask.d.ts +0 -1
  746. package/lib/typescript/handlers/FlingGestureHandler.d.ts +0 -34
  747. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +0 -44
  748. package/lib/typescript/handlers/LongPressGestureHandler.d.ts +0 -56
  749. package/lib/typescript/handlers/PinchGestureHandler.d.ts +0 -29
  750. package/lib/typescript/handlers/PressabilityDebugView.d.ts +0 -1
  751. package/lib/typescript/handlers/PressabilityDebugView.web.d.ts +0 -1
  752. package/lib/typescript/handlers/RotationGestureHandler.d.ts +0 -29
  753. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +0 -42
  754. package/lib/typescript/handlers/gestures/eventReceiver.d.ts +0 -4
  755. package/lib/typescript/handlers/gestures/flingGesture.d.ts +0 -9
  756. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +0 -15
  757. package/lib/typescript/handlers/gestures/gesture.d.ts +0 -110
  758. package/lib/typescript/handlers/gestures/gestureComposition.d.ts +0 -21
  759. package/lib/typescript/handlers/gestures/gestureObjects.d.ts +0 -41
  760. package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +0 -9
  761. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +0 -4
  762. package/lib/typescript/handlers/gestures/hoverGesture.d.ts +0 -32
  763. package/lib/typescript/handlers/gestures/longPressGesture.d.ts +0 -9
  764. package/lib/typescript/handlers/gestures/manualGesture.d.ts +0 -7
  765. package/lib/typescript/handlers/gestures/nativeGesture.d.ts +0 -9
  766. package/lib/typescript/handlers/gestures/panGesture.d.ts +0 -26
  767. package/lib/typescript/handlers/gestures/pinchGesture.d.ts +0 -11
  768. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +0 -14
  769. package/lib/typescript/handlers/gestures/rotationGesture.d.ts +0 -12
  770. package/lib/typescript/handlers/gestures/tapGesture.d.ts +0 -14
  771. package/lib/typescript/handlers/handlersRegistry.d.ts +0 -14
  772. package/lib/typescript/jestUtils/index.d.ts +0 -1
  773. package/lib/typescript/jestUtils/jestUtils.d.ts +0 -28
  774. package/lib/typescript/mocks.d.ts +0 -44
  775. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +0 -14
  776. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +0 -6
  777. package/lib/typescript/typeUtils.d.ts +0 -1
  778. package/lib/typescript/utils.d.ts +0 -8
  779. package/lib/typescript/web/constants.d.ts +0 -7
  780. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +0 -30
  781. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +0 -29
  782. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +0 -27
  783. package/lib/typescript/web/handlers/GestureHandler.d.ts +0 -90
  784. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +0 -10
  785. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +0 -26
  786. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +0 -12
  787. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +0 -24
  788. package/lib/typescript/web/handlers/PanGestureHandler.d.ts +0 -55
  789. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +0 -28
  790. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +0 -29
  791. package/lib/typescript/web/handlers/TapGestureHandler.d.ts +0 -39
  792. package/lib/typescript/web/interfaces.d.ts +0 -141
  793. package/lib/typescript/web/tools/CircularBuffer.d.ts +0 -11
  794. package/lib/typescript/web/tools/EventManager.d.ts +0 -34
  795. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +0 -22
  796. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +0 -29
  797. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +0 -21
  798. package/lib/typescript/web/tools/InteractionManager.d.ts +0 -17
  799. package/lib/typescript/web/tools/LeastSquareSolver.d.ts +0 -12
  800. package/lib/typescript/web/tools/NodeManager.d.ts +0 -11
  801. package/lib/typescript/web/tools/PointerEventManager.d.ts +0 -8
  802. package/lib/typescript/web/tools/PointerTracker.d.ts +0 -53
  803. package/lib/typescript/web/tools/TouchEventManager.d.ts +0 -6
  804. package/lib/typescript/web/tools/VelocityTracker.d.ts +0 -13
  805. package/lib/typescript/web/utils.d.ts +0 -4
  806. package/lib/typescript/web_hammer/DiscreteGestureHandler.d.ts +0 -20
  807. package/lib/typescript/web_hammer/DraggingGestureHandler.d.ts +0 -15
  808. package/lib/typescript/web_hammer/Errors.d.ts +0 -3
  809. package/lib/typescript/web_hammer/FlingGestureHandler.d.ts +0 -43
  810. package/lib/typescript/web_hammer/GestureHandler.d.ts +0 -145
  811. package/lib/typescript/web_hammer/IndiscreteGestureHandler.d.ts +0 -40
  812. package/lib/typescript/web_hammer/LongPressGestureHandler.d.ts +0 -38
  813. package/lib/typescript/web_hammer/NativeViewGestureHandler.d.ts +0 -7
  814. package/lib/typescript/web_hammer/NodeManager.d.ts +0 -8
  815. package/lib/typescript/web_hammer/PanGestureHandler.d.ts +0 -56
  816. package/lib/typescript/web_hammer/PinchGestureHandler.d.ts +0 -13
  817. package/lib/typescript/web_hammer/PressGestureHandler.d.ts +0 -83
  818. package/lib/typescript/web_hammer/RotationGestureHandler.d.ts +0 -13
  819. package/lib/typescript/web_hammer/TapGestureHandler.d.ts +0 -57
  820. package/lib/typescript/web_hammer/constants.d.ts +0 -39
  821. package/lib/typescript/web_hammer/utils.d.ts +0 -9
  822. package/src/ActionType.ts +0 -9
  823. package/src/Directions.ts +0 -9
  824. package/src/EnableNewWebImplementation.ts +0 -35
  825. package/src/GestureHandlerRootViewContext.ts +0 -3
  826. package/src/PlatformConstants.ts +0 -8
  827. package/src/PlatformConstants.web.ts +0 -5
  828. package/src/RNGestureHandlerModule.macos.ts +0 -133
  829. package/src/RNGestureHandlerModule.web.ts +0 -146
  830. package/src/RNGestureHandlerModule.windows.ts +0 -144
  831. package/src/RNRenderer.ts +0 -3
  832. package/src/RNRenderer.web.ts +0 -3
  833. package/src/State.ts +0 -13
  834. package/src/TouchEventType.ts +0 -10
  835. package/src/components/DrawerLayout.tsx +0 -743
  836. package/src/components/GestureComponents.tsx +0 -148
  837. package/src/components/GestureComponents.web.tsx +0 -41
  838. package/src/components/GestureHandlerButton.web.tsx +0 -6
  839. package/src/components/GestureHandlerRootView.android.tsx +0 -24
  840. package/src/components/GestureHandlerRootView.web.tsx +0 -17
  841. package/src/components/Swipeable.tsx +0 -584
  842. package/src/components/gestureHandlerRootHOC.tsx +0 -32
  843. package/src/components/touchables/TouchableHighlight.tsx +0 -115
  844. package/src/components/touchables/TouchableNativeFeedback.android.tsx +0 -91
  845. package/src/components/touchables/TouchableNativeFeedback.tsx +0 -3
  846. package/src/getReactNativeVersion.ts +0 -11
  847. package/src/getReactNativeVersion.web.ts +0 -3
  848. package/src/getShadowNodeFromRef.ts +0 -22
  849. package/src/getShadowNodeFromRef.web.ts +0 -7
  850. package/src/ghQueueMicrotask.ts +0 -5
  851. package/src/handlers/FlingGestureHandler.ts +0 -59
  852. package/src/handlers/ForceTouchGestureHandler.ts +0 -90
  853. package/src/handlers/LongPressGestureHandler.ts +0 -88
  854. package/src/handlers/PinchGestureHandler.ts +0 -48
  855. package/src/handlers/PressabilityDebugView.tsx +0 -2
  856. package/src/handlers/PressabilityDebugView.web.tsx +0 -4
  857. package/src/handlers/RotationGestureHandler.ts +0 -48
  858. package/src/handlers/gestureHandlerTypesCompat.ts +0 -106
  859. package/src/handlers/gestures/eventReceiver.ts +0 -155
  860. package/src/handlers/gestures/flingGesture.ts +0 -27
  861. package/src/handlers/gestures/forceTouchGesture.ts +0 -74
  862. package/src/handlers/gestures/gesture.ts +0 -349
  863. package/src/handlers/gestures/gestureComposition.ts +0 -122
  864. package/src/handlers/gestures/gestureObjects.ts +0 -84
  865. package/src/handlers/gestures/gestureStateManager.ts +0 -62
  866. package/src/handlers/gestures/gestureStateManager.web.ts +0 -24
  867. package/src/handlers/gestures/hoverGesture.ts +0 -83
  868. package/src/handlers/gestures/longPressGesture.ts +0 -28
  869. package/src/handlers/gestures/manualGesture.ts +0 -31
  870. package/src/handlers/gestures/nativeGesture.ts +0 -27
  871. package/src/handlers/gestures/panGesture.ts +0 -152
  872. package/src/handlers/gestures/pinchGesture.ts +0 -51
  873. package/src/handlers/gestures/reanimatedWrapper.ts +0 -56
  874. package/src/handlers/gestures/rotationGesture.ts +0 -51
  875. package/src/handlers/gestures/tapGesture.ts +0 -53
  876. package/src/handlers/handlersRegistry.ts +0 -60
  877. package/src/jestUtils/index.ts +0 -1
  878. package/src/jestUtils/jestUtils.ts +0 -505
  879. package/src/mocks.ts +0 -67
  880. package/src/specs/RNGestureHandlerButtonNativeComponent.ts +0 -18
  881. package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -6
  882. package/src/typeUtils.ts +0 -1
  883. package/src/utils.ts +0 -54
  884. package/src/web/constants.ts +0 -8
  885. package/src/web/detectors/RotationGestureDetector.ts +0 -168
  886. package/src/web/detectors/ScaleGestureDetector.ts +0 -172
  887. package/src/web/handlers/FlingGestureHandler.ts +0 -161
  888. package/src/web/handlers/GestureHandler.ts +0 -849
  889. package/src/web/handlers/HoverGestureHandler.ts +0 -43
  890. package/src/web/handlers/LongPressGestureHandler.ts +0 -125
  891. package/src/web/handlers/ManualGestureHandler.ts +0 -43
  892. package/src/web/handlers/NativeViewGestureHandler.ts +0 -167
  893. package/src/web/handlers/PanGestureHandler.ts +0 -485
  894. package/src/web/handlers/PinchGestureHandler.ts +0 -158
  895. package/src/web/handlers/RotationGestureHandler.ts +0 -172
  896. package/src/web/handlers/TapGestureHandler.ts +0 -273
  897. package/src/web/interfaces.ts +0 -167
  898. package/src/web/tools/EventManager.ts +0 -104
  899. package/src/web/tools/GestureHandlerDelegate.ts +0 -23
  900. package/src/web/tools/GestureHandlerOrchestrator.ts +0 -389
  901. package/src/web/tools/GestureHandlerWebDelegate.ts +0 -115
  902. package/src/web/tools/NodeManager.ts +0 -43
  903. package/src/web/tools/PointerEventManager.ts +0 -202
  904. package/src/web/tools/TouchEventManager.ts +0 -167
  905. package/src/web/utils.ts +0 -8
  906. package/src/web_hammer/DiscreteGestureHandler.ts +0 -82
  907. package/src/web_hammer/DraggingGestureHandler.ts +0 -34
  908. package/src/web_hammer/Errors.ts +0 -7
  909. package/src/web_hammer/FlingGestureHandler.ts +0 -134
  910. package/src/web_hammer/GestureHandler.ts +0 -599
  911. package/src/web_hammer/IndiscreteGestureHandler.ts +0 -33
  912. package/src/web_hammer/LongPressGestureHandler.ts +0 -56
  913. package/src/web_hammer/NativeViewGestureHandler.ts +0 -47
  914. package/src/web_hammer/NodeManager.ts +0 -42
  915. package/src/web_hammer/PanGestureHandler.ts +0 -226
  916. package/src/web_hammer/PinchGestureHandler.ts +0 -25
  917. package/src/web_hammer/PressGestureHandler.ts +0 -167
  918. package/src/web_hammer/RotationGestureHandler.ts +0 -25
  919. package/src/web_hammer/TapGestureHandler.ts +0 -172
  920. package/src/web_hammer/constants.ts +0 -48
  921. package/src/web_hammer/utils.ts +0 -24
@@ -1,551 +0,0 @@
1
- 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; }
2
-
3
- // This component is based on RN's DrawerLayoutAndroid API
4
- //
5
- // It perhaps deserves to be put in a separate repo, but since it relies on
6
- // react-native-gesture-handler library which isn't very popular at the moment I
7
- // decided to keep it here for the time being. It will allow us to move faster
8
- // and fix issues that may arise in gesture handler library that could be found
9
- // when using the drawer component
10
- import * as React from 'react';
11
- import { Component } from 'react';
12
- import invariant from 'invariant';
13
- import { Animated, StyleSheet, View, Keyboard, StatusBar, I18nManager } from 'react-native';
14
- import { PanGestureHandler } from '../handlers/PanGestureHandler';
15
- import { TapGestureHandler } from '../handlers/TapGestureHandler';
16
- import { State } from '../State';
17
- const DRAG_TOSS = 0.05;
18
- const IDLE = 'Idle';
19
- const DRAGGING = 'Dragging';
20
- const SETTLING = 'Settling';
21
- export default class DrawerLayout extends Component {
22
- constructor(_props) {
23
- super(_props);
24
-
25
- _defineProperty(this, "openValue", void 0);
26
-
27
- _defineProperty(this, "onGestureEvent", void 0);
28
-
29
- _defineProperty(this, "accessibilityIsModalView", /*#__PURE__*/React.createRef());
30
-
31
- _defineProperty(this, "pointerEventsView", /*#__PURE__*/React.createRef());
32
-
33
- _defineProperty(this, "panGestureHandler", /*#__PURE__*/React.createRef());
34
-
35
- _defineProperty(this, "drawerShown", false);
36
-
37
- _defineProperty(this, "updateAnimatedEvent", (props, state) => {
38
- // Event definition is based on
39
- const {
40
- drawerPosition,
41
- drawerWidth,
42
- drawerType
43
- } = props;
44
- const {
45
- dragX: dragXValue,
46
- touchX: touchXValue,
47
- drawerTranslation,
48
- containerWidth
49
- } = state;
50
- let dragX = dragXValue;
51
- let touchX = touchXValue;
52
-
53
- if (drawerPosition !== 'left') {
54
- // Most of the code is written in a way to handle left-side drawer. In
55
- // order to handle right-side drawer the only thing we need to do is to
56
- // reverse events coming from gesture handler in a way they emulate
57
- // left-side drawer gestures. E.g. dragX is simply -dragX, and touchX is
58
- // calulcated by subtracing real touchX from the width of the container
59
- // (such that when touch happens at the right edge the value is simply 0)
60
- dragX = Animated.multiply(new Animated.Value(-1), dragXValue); // TODO(TS): (for all "as" in this file) make sure we can map this
61
-
62
- touchX = Animated.add(new Animated.Value(containerWidth), Animated.multiply(new Animated.Value(-1), touchXValue)); // TODO(TS): make sure we can map this;
63
-
64
- touchXValue.setValue(containerWidth);
65
- } else {
66
- touchXValue.setValue(0);
67
- } // While closing the drawer when user starts gesture outside of its area (in greyed
68
- // out part of the window), we want the drawer to follow only once finger reaches the
69
- // edge of the drawer.
70
- // E.g. on the diagram below drawer is illustrate by X signs and the greyed out area by
71
- // dots. The touch gesture starts at '*' and moves left, touch path is indicated by
72
- // an arrow pointing left
73
- // 1) +---------------+ 2) +---------------+ 3) +---------------+ 4) +---------------+
74
- // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
75
- // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
76
- // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
77
- // |XXXXXXXX|......| |XXXXXXXX|.<-*..| |XXXXXXXX|<--*..| |XXXXX|<-----*..|
78
- // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
79
- // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
80
- // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
81
- // +---------------+ +---------------+ +---------------+ +---------------+
82
- //
83
- // For the above to work properly we define animated value that will keep
84
- // start position of the gesture. Then we use that value to calculate how
85
- // much we need to subtract from the dragX. If the gesture started on the
86
- // greyed out area we take the distance from the edge of the drawer to the
87
- // start position. Otherwise we don't subtract at all and the drawer be
88
- // pulled back as soon as you start the pan.
89
- //
90
- // This is used only when drawerType is "front"
91
- //
92
-
93
-
94
- let translationX = dragX;
95
-
96
- if (drawerType === 'front') {
97
- const startPositionX = Animated.add(touchX, Animated.multiply(new Animated.Value(-1), dragX));
98
- const dragOffsetFromOnStartPosition = startPositionX.interpolate({
99
- inputRange: [drawerWidth - 1, drawerWidth, drawerWidth + 1],
100
- outputRange: [0, 0, 1]
101
- });
102
- translationX = Animated.add(dragX, dragOffsetFromOnStartPosition); // TODO: as above
103
- }
104
-
105
- this.openValue = Animated.add(translationX, drawerTranslation).interpolate({
106
- inputRange: [0, drawerWidth],
107
- outputRange: [0, 1],
108
- extrapolate: 'clamp'
109
- });
110
- const gestureOptions = {
111
- useNativeDriver: props.useNativeAnimations
112
- };
113
-
114
- if (this.props.onDrawerSlide) {
115
- gestureOptions.listener = ev => {
116
- var _this$props$onDrawerS, _this$props;
117
-
118
- const translationX = Math.floor(Math.abs(ev.nativeEvent.translationX));
119
- const position = translationX / this.state.containerWidth;
120
- (_this$props$onDrawerS = (_this$props = this.props).onDrawerSlide) === null || _this$props$onDrawerS === void 0 ? void 0 : _this$props$onDrawerS.call(_this$props, position);
121
- };
122
- }
123
-
124
- this.onGestureEvent = Animated.event([{
125
- nativeEvent: {
126
- translationX: dragXValue,
127
- x: touchXValue
128
- }
129
- }], gestureOptions);
130
- });
131
-
132
- _defineProperty(this, "handleContainerLayout", ({
133
- nativeEvent
134
- }) => {
135
- this.setState({
136
- containerWidth: nativeEvent.layout.width
137
- });
138
- });
139
-
140
- _defineProperty(this, "emitStateChanged", (newState, drawerWillShow) => {
141
- var _this$props$onDrawerS2, _this$props2;
142
-
143
- (_this$props$onDrawerS2 = (_this$props2 = this.props).onDrawerStateChanged) === null || _this$props$onDrawerS2 === void 0 ? void 0 : _this$props$onDrawerS2.call(_this$props2, newState, drawerWillShow);
144
- });
145
-
146
- _defineProperty(this, "openingHandlerStateChange", ({
147
- nativeEvent
148
- }) => {
149
- if (nativeEvent.oldState === State.ACTIVE) {
150
- this.handleRelease({
151
- nativeEvent
152
- });
153
- } else if (nativeEvent.state === State.ACTIVE) {
154
- this.emitStateChanged(DRAGGING, false);
155
- this.setState({
156
- drawerState: DRAGGING
157
- });
158
-
159
- if (this.props.keyboardDismissMode === 'on-drag') {
160
- Keyboard.dismiss();
161
- }
162
-
163
- if (this.props.hideStatusBar) {
164
- StatusBar.setHidden(true, this.props.statusBarAnimation || 'slide');
165
- }
166
- }
167
- });
168
-
169
- _defineProperty(this, "onTapHandlerStateChange", ({
170
- nativeEvent
171
- }) => {
172
- if (this.drawerShown && nativeEvent.oldState === State.ACTIVE && this.props.drawerLockMode !== 'locked-open') {
173
- this.closeDrawer();
174
- }
175
- });
176
-
177
- _defineProperty(this, "handleRelease", ({
178
- nativeEvent
179
- }) => {
180
- const {
181
- drawerWidth,
182
- drawerPosition,
183
- drawerType
184
- } = this.props;
185
- const {
186
- containerWidth
187
- } = this.state;
188
- let {
189
- translationX: dragX,
190
- velocityX,
191
- x: touchX
192
- } = nativeEvent;
193
-
194
- if (drawerPosition !== 'left') {
195
- // See description in _updateAnimatedEvent about why events are flipped
196
- // for right-side drawer
197
- dragX = -dragX;
198
- touchX = containerWidth - touchX;
199
- velocityX = -velocityX;
200
- }
201
-
202
- const gestureStartX = touchX - dragX;
203
- let dragOffsetBasedOnStart = 0;
204
-
205
- if (drawerType === 'front') {
206
- dragOffsetBasedOnStart = gestureStartX > drawerWidth ? gestureStartX - drawerWidth : 0;
207
- }
208
-
209
- const startOffsetX = dragX + dragOffsetBasedOnStart + (this.drawerShown ? drawerWidth : 0);
210
- const projOffsetX = startOffsetX + DRAG_TOSS * velocityX;
211
- const shouldOpen = projOffsetX > drawerWidth / 2;
212
-
213
- if (shouldOpen) {
214
- this.animateDrawer(startOffsetX, drawerWidth, velocityX);
215
- } else {
216
- this.animateDrawer(startOffsetX, 0, velocityX);
217
- }
218
- });
219
-
220
- _defineProperty(this, "updateShowing", showing => {
221
- var _this$accessibilityIs, _this$pointerEventsVi, _this$panGestureHandl;
222
-
223
- this.drawerShown = showing;
224
- (_this$accessibilityIs = this.accessibilityIsModalView.current) === null || _this$accessibilityIs === void 0 ? void 0 : _this$accessibilityIs.setNativeProps({
225
- accessibilityViewIsModal: showing
226
- });
227
- (_this$pointerEventsVi = this.pointerEventsView.current) === null || _this$pointerEventsVi === void 0 ? void 0 : _this$pointerEventsVi.setNativeProps({
228
- pointerEvents: showing ? 'auto' : 'none'
229
- });
230
- const {
231
- drawerPosition,
232
- minSwipeDistance,
233
- edgeWidth
234
- } = this.props;
235
- const fromLeft = drawerPosition === 'left'; // gestureOrientation is 1 if the expected gesture is from left to right and
236
- // -1 otherwise e.g. when drawer is on the left and is closed we expect left
237
- // to right gesture, thus orientation will be 1.
238
-
239
- const gestureOrientation = (fromLeft ? 1 : -1) * (this.drawerShown ? -1 : 1); // When drawer is closed we want the hitSlop to be horizontally shorter than
240
- // the container size by the value of SLOP. This will make it only activate
241
- // when gesture happens not further than SLOP away from the edge
242
-
243
- const hitSlop = fromLeft ? {
244
- left: 0,
245
- width: showing ? undefined : edgeWidth
246
- } : {
247
- right: 0,
248
- width: showing ? undefined : edgeWidth
249
- }; // @ts-ignore internal API, maybe could be fixed in handler types
250
-
251
- (_this$panGestureHandl = this.panGestureHandler.current) === null || _this$panGestureHandl === void 0 ? void 0 : _this$panGestureHandl.setNativeProps({
252
- hitSlop,
253
- activeOffsetX: gestureOrientation * minSwipeDistance
254
- });
255
- });
256
-
257
- _defineProperty(this, "animateDrawer", (fromValue, toValue, velocity, speed) => {
258
- this.state.dragX.setValue(0);
259
- this.state.touchX.setValue(this.props.drawerPosition === 'left' ? 0 : this.state.containerWidth);
260
-
261
- if (fromValue != null) {
262
- let nextFramePosition = fromValue;
263
-
264
- if (this.props.useNativeAnimations) {
265
- // When using native driver, we predict the next position of the
266
- // animation because it takes one frame of a roundtrip to pass RELEASE
267
- // event from native driver to JS before we can start animating. Without
268
- // it, it is more noticable that the frame is dropped.
269
- if (fromValue < toValue && velocity > 0) {
270
- nextFramePosition = Math.min(fromValue + velocity / 60.0, toValue);
271
- } else if (fromValue > toValue && velocity < 0) {
272
- nextFramePosition = Math.max(fromValue + velocity / 60.0, toValue);
273
- }
274
- }
275
-
276
- this.state.drawerTranslation.setValue(nextFramePosition);
277
- }
278
-
279
- const willShow = toValue !== 0;
280
- this.updateShowing(willShow);
281
- this.emitStateChanged(SETTLING, willShow);
282
- this.setState({
283
- drawerState: SETTLING
284
- });
285
-
286
- if (this.props.hideStatusBar) {
287
- StatusBar.setHidden(willShow, this.props.statusBarAnimation || 'slide');
288
- }
289
-
290
- Animated.spring(this.state.drawerTranslation, {
291
- velocity,
292
- bounciness: 0,
293
- toValue,
294
- useNativeDriver: this.props.useNativeAnimations,
295
- speed: speed !== null && speed !== void 0 ? speed : undefined
296
- }).start(({
297
- finished
298
- }) => {
299
- if (finished) {
300
- this.emitStateChanged(IDLE, willShow);
301
- this.setState({
302
- drawerOpened: willShow
303
- });
304
-
305
- if (this.state.drawerState !== DRAGGING) {
306
- // it's possilbe that user started drag while the drawer
307
- // was settling, don't override state in this case
308
- this.setState({
309
- drawerState: IDLE
310
- });
311
- }
312
-
313
- if (willShow) {
314
- var _this$props$onDrawerO, _this$props3;
315
-
316
- (_this$props$onDrawerO = (_this$props3 = this.props).onDrawerOpen) === null || _this$props$onDrawerO === void 0 ? void 0 : _this$props$onDrawerO.call(_this$props3);
317
- } else {
318
- var _this$props$onDrawerC, _this$props4;
319
-
320
- (_this$props$onDrawerC = (_this$props4 = this.props).onDrawerClose) === null || _this$props$onDrawerC === void 0 ? void 0 : _this$props$onDrawerC.call(_this$props4);
321
- }
322
- }
323
- });
324
- });
325
-
326
- _defineProperty(this, "openDrawer", (options = {}) => {
327
- this.animateDrawer( // TODO: decide if it should be null or undefined is the proper value
328
- undefined, this.props.drawerWidth, options.velocity ? options.velocity : 0, options.speed); // We need to force the update, otherwise the overlay is not rerendered and
329
- // it would not be clickable
330
-
331
- this.forceUpdate();
332
- });
333
-
334
- _defineProperty(this, "closeDrawer", (options = {}) => {
335
- // TODO: decide if it should be null or undefined is the proper value
336
- this.animateDrawer(undefined, 0, options.velocity ? options.velocity : 0, options.speed); // We need to force the update, otherwise the overlay is not rerendered and
337
- // it would be still clickable
338
-
339
- this.forceUpdate();
340
- });
341
-
342
- _defineProperty(this, "renderOverlay", () => {
343
- /* Overlay styles */
344
- invariant(this.openValue, 'should be set');
345
- let overlayOpacity;
346
-
347
- if (this.state.drawerState !== IDLE) {
348
- overlayOpacity = this.openValue;
349
- } else {
350
- overlayOpacity = this.state.drawerOpened ? 1 : 0;
351
- }
352
-
353
- const dynamicOverlayStyles = {
354
- opacity: overlayOpacity,
355
- backgroundColor: this.props.overlayColor
356
- };
357
- return /*#__PURE__*/React.createElement(TapGestureHandler, {
358
- onHandlerStateChange: this.onTapHandlerStateChange
359
- }, /*#__PURE__*/React.createElement(Animated.View, {
360
- pointerEvents: this.drawerShown ? 'auto' : 'none',
361
- ref: this.pointerEventsView,
362
- style: [styles.overlay, dynamicOverlayStyles]
363
- }));
364
- });
365
-
366
- _defineProperty(this, "renderDrawer", () => {
367
- const {
368
- drawerBackgroundColor,
369
- drawerWidth,
370
- drawerPosition,
371
- drawerType,
372
- drawerContainerStyle,
373
- contentContainerStyle
374
- } = this.props;
375
- const fromLeft = drawerPosition === 'left';
376
- const drawerSlide = drawerType !== 'back';
377
- const containerSlide = drawerType !== 'front'; // we rely on row and row-reverse flex directions to position the drawer
378
- // properly. Apparently for RTL these are flipped which requires us to use
379
- // the opposite setting for the drawer to appear from left or right
380
- // according to the drawerPosition prop
381
-
382
- const reverseContentDirection = I18nManager.isRTL ? fromLeft : !fromLeft;
383
- const dynamicDrawerStyles = {
384
- backgroundColor: drawerBackgroundColor,
385
- width: drawerWidth
386
- };
387
- const openValue = this.openValue;
388
- invariant(openValue, 'should be set');
389
- let containerStyles;
390
-
391
- if (containerSlide) {
392
- const containerTranslateX = openValue.interpolate({
393
- inputRange: [0, 1],
394
- outputRange: fromLeft ? [0, drawerWidth] : [0, -drawerWidth],
395
- extrapolate: 'clamp'
396
- });
397
- containerStyles = {
398
- transform: [{
399
- translateX: containerTranslateX
400
- }]
401
- };
402
- }
403
-
404
- let drawerTranslateX = 0;
405
-
406
- if (drawerSlide) {
407
- const closedDrawerOffset = fromLeft ? -drawerWidth : drawerWidth;
408
-
409
- if (this.state.drawerState !== IDLE) {
410
- drawerTranslateX = openValue.interpolate({
411
- inputRange: [0, 1],
412
- outputRange: [closedDrawerOffset, 0],
413
- extrapolate: 'clamp'
414
- });
415
- } else {
416
- drawerTranslateX = this.state.drawerOpened ? 0 : closedDrawerOffset;
417
- }
418
- }
419
-
420
- const drawerStyles = {
421
- transform: [{
422
- translateX: drawerTranslateX
423
- }],
424
- flexDirection: reverseContentDirection ? 'row-reverse' : 'row'
425
- };
426
- return /*#__PURE__*/React.createElement(Animated.View, {
427
- style: styles.main,
428
- onLayout: this.handleContainerLayout
429
- }, /*#__PURE__*/React.createElement(Animated.View, {
430
- style: [drawerType === 'front' ? styles.containerOnBack : styles.containerInFront, containerStyles, contentContainerStyle],
431
- importantForAccessibility: this.drawerShown ? 'no-hide-descendants' : 'yes'
432
- }, typeof this.props.children === 'function' ? this.props.children(this.openValue) : this.props.children, this.renderOverlay()), /*#__PURE__*/React.createElement(Animated.View, {
433
- pointerEvents: "box-none",
434
- ref: this.accessibilityIsModalView,
435
- accessibilityViewIsModal: this.drawerShown,
436
- style: [styles.drawerContainer, drawerStyles, drawerContainerStyle]
437
- }, /*#__PURE__*/React.createElement(View, {
438
- style: dynamicDrawerStyles
439
- }, this.props.renderNavigationView(this.openValue))));
440
- });
441
-
442
- _defineProperty(this, "setPanGestureRef", ref => {
443
- var _this$props$onGesture, _this$props5;
444
-
445
- // TODO(TS): make sure it is OK taken from
446
- // https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31065#issuecomment-596081842
447
- this.panGestureHandler.current = ref;
448
- (_this$props$onGesture = (_this$props5 = this.props).onGestureRef) === null || _this$props$onGesture === void 0 ? void 0 : _this$props$onGesture.call(_this$props5, ref);
449
- });
450
-
451
- const _dragX = new Animated.Value(0);
452
-
453
- const _touchX = new Animated.Value(0);
454
-
455
- const _drawerTranslation = new Animated.Value(0);
456
-
457
- this.state = {
458
- dragX: _dragX,
459
- touchX: _touchX,
460
- drawerTranslation: _drawerTranslation,
461
- containerWidth: 0,
462
- drawerState: IDLE,
463
- drawerOpened: false
464
- };
465
- this.updateAnimatedEvent(_props, this.state);
466
- }
467
-
468
- shouldComponentUpdate(props, state) {
469
- if (this.props.drawerPosition !== props.drawerPosition || this.props.drawerWidth !== props.drawerWidth || this.props.drawerType !== props.drawerType || this.state.containerWidth !== state.containerWidth) {
470
- this.updateAnimatedEvent(props, state);
471
- }
472
-
473
- return true;
474
- }
475
-
476
- render() {
477
- const {
478
- drawerPosition,
479
- drawerLockMode,
480
- edgeWidth,
481
- minSwipeDistance
482
- } = this.props;
483
- const fromLeft = drawerPosition === 'left'; // gestureOrientation is 1 if the expected gesture is from left to right and
484
- // -1 otherwise e.g. when drawer is on the left and is closed we expect left
485
- // to right gesture, thus orientation will be 1.
486
-
487
- const gestureOrientation = (fromLeft ? 1 : -1) * (this.drawerShown ? -1 : 1); // When drawer is closed we want the hitSlop to be horizontally shorter than
488
- // the container size by the value of SLOP. This will make it only activate
489
- // when gesture happens not further than SLOP away from the edge
490
-
491
- const hitSlop = fromLeft ? {
492
- left: 0,
493
- width: this.drawerShown ? undefined : edgeWidth
494
- } : {
495
- right: 0,
496
- width: this.drawerShown ? undefined : edgeWidth
497
- };
498
- return /*#__PURE__*/React.createElement(PanGestureHandler // @ts-ignore could be fixed in handler types
499
- , {
500
- userSelect: this.props.userSelect,
501
- activeCursor: this.props.activeCursor,
502
- ref: this.setPanGestureRef,
503
- hitSlop: hitSlop,
504
- activeOffsetX: gestureOrientation * minSwipeDistance,
505
- failOffsetY: [-15, 15],
506
- onGestureEvent: this.onGestureEvent,
507
- onHandlerStateChange: this.openingHandlerStateChange,
508
- enableTrackpadTwoFingerGesture: this.props.enableTrackpadTwoFingerGesture,
509
- enabled: drawerLockMode !== 'locked-closed' && drawerLockMode !== 'locked-open'
510
- }, this.renderDrawer());
511
- }
512
-
513
- }
514
-
515
- _defineProperty(DrawerLayout, "defaultProps", {
516
- drawerWidth: 200,
517
- drawerPosition: 'left',
518
- useNativeAnimations: true,
519
- drawerType: 'front',
520
- edgeWidth: 20,
521
- minSwipeDistance: 3,
522
- overlayColor: 'rgba(0, 0, 0, 0.7)',
523
- drawerLockMode: 'unlocked',
524
- enableTrackpadTwoFingerGesture: false
525
- });
526
-
527
- _defineProperty(DrawerLayout, "positions", {
528
- Left: 'left',
529
- Right: 'right'
530
- });
531
-
532
- const styles = StyleSheet.create({
533
- drawerContainer: { ...StyleSheet.absoluteFillObject,
534
- zIndex: 1001,
535
- flexDirection: 'row'
536
- },
537
- containerInFront: { ...StyleSheet.absoluteFillObject,
538
- zIndex: 1002
539
- },
540
- containerOnBack: { ...StyleSheet.absoluteFillObject
541
- },
542
- main: {
543
- flex: 1,
544
- zIndex: 0,
545
- overflow: 'hidden'
546
- },
547
- overlay: { ...StyleSheet.absoluteFillObject,
548
- zIndex: 1000
549
- }
550
- });
551
- //# sourceMappingURL=DrawerLayout.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["DrawerLayout.tsx"],"names":["React","Component","invariant","Animated","StyleSheet","View","Keyboard","StatusBar","I18nManager","PanGestureHandler","TapGestureHandler","State","DRAG_TOSS","IDLE","DRAGGING","SETTLING","DrawerLayout","constructor","props","createRef","state","drawerPosition","drawerWidth","drawerType","dragX","dragXValue","touchX","touchXValue","drawerTranslation","containerWidth","multiply","Value","add","setValue","translationX","startPositionX","dragOffsetFromOnStartPosition","interpolate","inputRange","outputRange","openValue","extrapolate","gestureOptions","useNativeDriver","useNativeAnimations","onDrawerSlide","listener","ev","Math","floor","abs","nativeEvent","position","onGestureEvent","event","x","setState","layout","width","newState","drawerWillShow","onDrawerStateChanged","oldState","ACTIVE","handleRelease","emitStateChanged","drawerState","keyboardDismissMode","dismiss","hideStatusBar","setHidden","statusBarAnimation","drawerShown","drawerLockMode","closeDrawer","velocityX","gestureStartX","dragOffsetBasedOnStart","startOffsetX","projOffsetX","shouldOpen","animateDrawer","showing","accessibilityIsModalView","current","setNativeProps","accessibilityViewIsModal","pointerEventsView","pointerEvents","minSwipeDistance","edgeWidth","fromLeft","gestureOrientation","hitSlop","left","undefined","right","panGestureHandler","activeOffsetX","fromValue","toValue","velocity","speed","nextFramePosition","min","max","willShow","updateShowing","spring","bounciness","start","finished","drawerOpened","onDrawerOpen","onDrawerClose","options","forceUpdate","overlayOpacity","dynamicOverlayStyles","opacity","backgroundColor","overlayColor","onTapHandlerStateChange","styles","overlay","drawerBackgroundColor","drawerContainerStyle","contentContainerStyle","drawerSlide","containerSlide","reverseContentDirection","isRTL","dynamicDrawerStyles","containerStyles","containerTranslateX","transform","translateX","drawerTranslateX","closedDrawerOffset","drawerStyles","flexDirection","main","handleContainerLayout","containerOnBack","containerInFront","children","renderOverlay","drawerContainer","renderNavigationView","ref","onGestureRef","updateAnimatedEvent","shouldComponentUpdate","render","userSelect","activeCursor","setPanGestureRef","openingHandlerStateChange","enableTrackpadTwoFingerGesture","renderDrawer","Left","Right","create","absoluteFillObject","zIndex","flex","overflow"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAASC,SAAT,QAA0B,OAA1B;AACA,OAAOC,SAAP,MAAsB,WAAtB;AACA,SACEC,QADF,EAEEC,UAFF,EAGEC,IAHF,EAIEC,QAJF,EAKEC,SALF,EAMEC,WANF,QAYO,cAZP;AAoBA,SACEC,iBADF,QAGO,+BAHP;AAIA,SACEC,iBADF,QAGO,+BAHP;AAIA,SAASC,KAAT,QAAsB,UAAtB;AAEA,MAAMC,SAAS,GAAG,IAAlB;AAEA,MAAMC,IAAiB,GAAG,MAA1B;AACA,MAAMC,QAAqB,GAAG,UAA9B;AACA,MAAMC,QAAqB,GAAG,UAA9B;AAiJA,eAAe,MAAMC,YAAN,SAA2Bf,SAA3B,CAGb;AAaAgB,EAAAA,WAAW,CAACC,MAAD,EAA2B;AACpC,UAAMA,MAAN;;AADoC;;AAAA;;AAAA,mEAoCHlB,KAAK,CAACmB,SAAN,EApCG;;AAAA,4DAqCVnB,KAAK,CAACmB,SAAN,EArCU;;AAAA,4DAsCVnB,KAAK,CAACmB,SAAN,EAtCU;;AAAA,yCAuChB,KAvCgB;;AAAA,iDA8CR,CAC5BD,KAD4B,EAE5BE,KAF4B,KAGzB;AACH;AACA,YAAM;AAAEC,QAAAA,cAAF;AAAkBC,QAAAA,WAAlB;AAA+BC,QAAAA;AAA/B,UAA8CL,KAApD;AACA,YAAM;AACJM,QAAAA,KAAK,EAAEC,UADH;AAEJC,QAAAA,MAAM,EAAEC,WAFJ;AAGJC,QAAAA,iBAHI;AAIJC,QAAAA;AAJI,UAKFT,KALJ;AAOA,UAAII,KAAK,GAAGC,UAAZ;AACA,UAAIC,MAAM,GAAGC,WAAb;;AAEA,UAAIN,cAAc,KAAK,MAAvB,EAA+B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACAG,QAAAA,KAAK,GAAGrB,QAAQ,CAAC2B,QAAT,CACN,IAAI3B,QAAQ,CAAC4B,KAAb,CAAmB,CAAC,CAApB,CADM,EAENN,UAFM,CAAR,CAP6B,CAUR;;AACrBC,QAAAA,MAAM,GAAGvB,QAAQ,CAAC6B,GAAT,CACP,IAAI7B,QAAQ,CAAC4B,KAAb,CAAmBF,cAAnB,CADO,EAEP1B,QAAQ,CAAC2B,QAAT,CAAkB,IAAI3B,QAAQ,CAAC4B,KAAb,CAAmB,CAAC,CAApB,CAAlB,EAA0CJ,WAA1C,CAFO,CAAT,CAX6B,CAcR;;AACrBA,QAAAA,WAAW,CAACM,QAAZ,CAAqBJ,cAArB;AACD,OAhBD,MAgBO;AACLF,QAAAA,WAAW,CAACM,QAAZ,CAAqB,CAArB;AACD,OA/BE,CAiCH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,UAAIC,YAAY,GAAGV,KAAnB;;AACA,UAAID,UAAU,KAAK,OAAnB,EAA4B;AAC1B,cAAMY,cAAc,GAAGhC,QAAQ,CAAC6B,GAAT,CACrBN,MADqB,EAErBvB,QAAQ,CAAC2B,QAAT,CAAkB,IAAI3B,QAAQ,CAAC4B,KAAb,CAAmB,CAAC,CAApB,CAAlB,EAA0CP,KAA1C,CAFqB,CAAvB;AAKA,cAAMY,6BAA6B,GAAGD,cAAc,CAACE,WAAf,CAA2B;AAC/DC,UAAAA,UAAU,EAAE,CAAChB,WAAW,GAAI,CAAhB,EAAmBA,WAAnB,EAAiCA,WAAW,GAAI,CAAhD,CADmD;AAE/DiB,UAAAA,WAAW,EAAE,CAAC,CAAD,EAAI,CAAJ,EAAO,CAAP;AAFkD,SAA3B,CAAtC;AAIAL,QAAAA,YAAY,GAAG/B,QAAQ,CAAC6B,GAAT,CACbR,KADa,EAEbY,6BAFa,CAAf,CAV0B,CAaL;AACtB;;AAED,WAAKI,SAAL,GAAiBrC,QAAQ,CAAC6B,GAAT,CAAaE,YAAb,EAA2BN,iBAA3B,EAA8CS,WAA9C,CAA0D;AACzEC,QAAAA,UAAU,EAAE,CAAC,CAAD,EAAIhB,WAAJ,CAD6D;AAEzEiB,QAAAA,WAAW,EAAE,CAAC,CAAD,EAAI,CAAJ,CAF4D;AAGzEE,QAAAA,WAAW,EAAE;AAH4D,OAA1D,CAAjB;AAMA,YAAMC,cAML,GAAG;AACFC,QAAAA,eAAe,EAAEzB,KAAK,CAAC0B;AADrB,OANJ;;AAUA,UAAI,KAAK1B,KAAL,CAAW2B,aAAf,EAA8B;AAC5BH,QAAAA,cAAc,CAACI,QAAf,GAA2BC,EAAD,IAAQ;AAAA;;AAChC,gBAAMb,YAAY,GAAGc,IAAI,CAACC,KAAL,CAAWD,IAAI,CAACE,GAAL,CAASH,EAAE,CAACI,WAAH,CAAejB,YAAxB,CAAX,CAArB;AACA,gBAAMkB,QAAQ,GAAGlB,YAAY,GAAG,KAAKd,KAAL,CAAWS,cAA3C;AAEA,uDAAKX,KAAL,EAAW2B,aAAX,kGAA2BO,QAA3B;AACD,SALD;AAMD;;AAED,WAAKC,cAAL,GAAsBlD,QAAQ,CAACmD,KAAT,CACpB,CAAC;AAAEH,QAAAA,WAAW,EAAE;AAAEjB,UAAAA,YAAY,EAAET,UAAhB;AAA4B8B,UAAAA,CAAC,EAAE5B;AAA/B;AAAf,OAAD,CADoB,EAEpBe,cAFoB,CAAtB;AAID,KAzJqC;;AAAA,mDA2JN,CAAC;AAAES,MAAAA;AAAF,KAAD,KAAwC;AACtE,WAAKK,QAAL,CAAc;AAAE3B,QAAAA,cAAc,EAAEsB,WAAW,CAACM,MAAZ,CAAmBC;AAArC,OAAd;AACD,KA7JqC;;AAAA,8CA+JX,CACzBC,QADyB,EAEzBC,cAFyB,KAGtB;AAAA;;AACH,qDAAK1C,KAAL,EAAW2C,oBAAX,qGAAkCF,QAAlC,EAA4CC,cAA5C;AACD,KApKqC;;AAAA,uDAsKF,CAAC;AACnCT,MAAAA;AADmC,KAAD,KAE0B;AAC5D,UAAIA,WAAW,CAACW,QAAZ,KAAyBnD,KAAK,CAACoD,MAAnC,EAA2C;AACzC,aAAKC,aAAL,CAAmB;AAAEb,UAAAA;AAAF,SAAnB;AACD,OAFD,MAEO,IAAIA,WAAW,CAAC/B,KAAZ,KAAsBT,KAAK,CAACoD,MAAhC,EAAwC;AAC7C,aAAKE,gBAAL,CAAsBnD,QAAtB,EAAgC,KAAhC;AACA,aAAK0C,QAAL,CAAc;AAAEU,UAAAA,WAAW,EAAEpD;AAAf,SAAd;;AACA,YAAI,KAAKI,KAAL,CAAWiD,mBAAX,KAAmC,SAAvC,EAAkD;AAChD7D,UAAAA,QAAQ,CAAC8D,OAAT;AACD;;AACD,YAAI,KAAKlD,KAAL,CAAWmD,aAAf,EAA8B;AAC5B9D,UAAAA,SAAS,CAAC+D,SAAV,CAAoB,IAApB,EAA0B,KAAKpD,KAAL,CAAWqD,kBAAX,IAAiC,OAA3D;AACD;AACF;AACF,KArLqC;;AAAA,qDAuLJ,CAAC;AACjCpB,MAAAA;AADiC,KAAD,KAE4B;AAC5D,UACE,KAAKqB,WAAL,IACArB,WAAW,CAACW,QAAZ,KAAyBnD,KAAK,CAACoD,MAD/B,IAEA,KAAK7C,KAAL,CAAWuD,cAAX,KAA8B,aAHhC,EAIE;AACA,aAAKC,WAAL;AACD;AACF,KAjMqC;;AAAA,2CAmMd,CAAC;AACvBvB,MAAAA;AADuB,KAAD,KAEsC;AAC5D,YAAM;AAAE7B,QAAAA,WAAF;AAAeD,QAAAA,cAAf;AAA+BE,QAAAA;AAA/B,UAA8C,KAAKL,KAAzD;AACA,YAAM;AAAEW,QAAAA;AAAF,UAAqB,KAAKT,KAAhC;AACA,UAAI;AAAEc,QAAAA,YAAY,EAAEV,KAAhB;AAAuBmD,QAAAA,SAAvB;AAAkCpB,QAAAA,CAAC,EAAE7B;AAArC,UAAgDyB,WAApD;;AAEA,UAAI9B,cAAc,KAAK,MAAvB,EAA+B;AAC7B;AACA;AACAG,QAAAA,KAAK,GAAG,CAACA,KAAT;AACAE,QAAAA,MAAM,GAAGG,cAAc,GAAGH,MAA1B;AACAiD,QAAAA,SAAS,GAAG,CAACA,SAAb;AACD;;AAED,YAAMC,aAAa,GAAGlD,MAAM,GAAGF,KAA/B;AACA,UAAIqD,sBAAsB,GAAG,CAA7B;;AAEA,UAAItD,UAAU,KAAK,OAAnB,EAA4B;AAC1BsD,QAAAA,sBAAsB,GACpBD,aAAa,GAAGtD,WAAhB,GAA+BsD,aAAa,GAAGtD,WAA/C,GAA8D,CADhE;AAED;;AAED,YAAMwD,YAAY,GAChBtD,KAAK,GAAGqD,sBAAR,IAAkC,KAAKL,WAAL,GAAmBlD,WAAnB,GAAkC,CAApE,CADF;AAEA,YAAMyD,WAAW,GAAGD,YAAY,GAAGlE,SAAS,GAAG+D,SAA/C;AAEA,YAAMK,UAAU,GAAGD,WAAW,GAAGzD,WAAW,GAAI,CAAhD;;AAEA,UAAI0D,UAAJ,EAAgB;AACd,aAAKC,aAAL,CAAmBH,YAAnB,EAAiCxD,WAAjC,EAA+CqD,SAA/C;AACD,OAFD,MAEO;AACL,aAAKM,aAAL,CAAmBH,YAAnB,EAAiC,CAAjC,EAAoCH,SAApC;AACD;AACF,KArOqC;;AAAA,2CAuObO,OAAD,IAAsB;AAAA;;AAC5C,WAAKV,WAAL,GAAmBU,OAAnB;AACA,oCAAKC,wBAAL,CAA8BC,OAA9B,gFAAuCC,cAAvC,CAAsD;AACpDC,QAAAA,wBAAwB,EAAEJ;AAD0B,OAAtD;AAGA,oCAAKK,iBAAL,CAAuBH,OAAvB,gFAAgCC,cAAhC,CAA+C;AAC7CG,QAAAA,aAAa,EAAEN,OAAO,GAAG,MAAH,GAAY;AADW,OAA/C;AAGA,YAAM;AAAE7D,QAAAA,cAAF;AAAkBoE,QAAAA,gBAAlB;AAAoCC,QAAAA;AAApC,UAAkD,KAAKxE,KAA7D;AACA,YAAMyE,QAAQ,GAAGtE,cAAc,KAAK,MAApC,CAT4C,CAU5C;AACA;AACA;;AACA,YAAMuE,kBAAkB,GACtB,CAACD,QAAQ,GAAG,CAAH,GAAO,CAAC,CAAjB,KAAuB,KAAKnB,WAAL,GAAmB,CAAC,CAApB,GAAwB,CAA/C,CADF,CAb4C,CAe5C;AACA;AACA;;AACA,YAAMqB,OAAO,GAAGF,QAAQ,GACpB;AAAEG,QAAAA,IAAI,EAAE,CAAR;AAAWpC,QAAAA,KAAK,EAAEwB,OAAO,GAAGa,SAAH,GAAeL;AAAxC,OADoB,GAEpB;AAAEM,QAAAA,KAAK,EAAE,CAAT;AAAYtC,QAAAA,KAAK,EAAEwB,OAAO,GAAGa,SAAH,GAAeL;AAAzC,OAFJ,CAlB4C,CAqB5C;;AACA,oCAAKO,iBAAL,CAAuBb,OAAvB,gFAAgCC,cAAhC,CAA+C;AAC7CQ,QAAAA,OAD6C;AAE7CK,QAAAA,aAAa,EAAEN,kBAAkB,GAAGH;AAFS,OAA/C;AAID,KAjQqC;;AAAA,2CAmQd,CACtBU,SADsB,EAEtBC,OAFsB,EAGtBC,QAHsB,EAItBC,KAJsB,KAKnB;AACH,WAAKlF,KAAL,CAAWI,KAAX,CAAiBS,QAAjB,CAA0B,CAA1B;AACA,WAAKb,KAAL,CAAWM,MAAX,CAAkBO,QAAlB,CACE,KAAKf,KAAL,CAAWG,cAAX,KAA8B,MAA9B,GAAuC,CAAvC,GAA2C,KAAKD,KAAL,CAAWS,cADxD;;AAIA,UAAIsE,SAAS,IAAI,IAAjB,EAAuB;AACrB,YAAII,iBAAiB,GAAGJ,SAAxB;;AACA,YAAI,KAAKjF,KAAL,CAAW0B,mBAAf,EAAoC;AAClC;AACA;AACA;AACA;AACA,cAAIuD,SAAS,GAAGC,OAAZ,IAAuBC,QAAQ,GAAG,CAAtC,EAAyC;AACvCE,YAAAA,iBAAiB,GAAGvD,IAAI,CAACwD,GAAL,CAASL,SAAS,GAAGE,QAAQ,GAAG,IAAhC,EAAsCD,OAAtC,CAApB;AACD,WAFD,MAEO,IAAID,SAAS,GAAGC,OAAZ,IAAuBC,QAAQ,GAAG,CAAtC,EAAyC;AAC9CE,YAAAA,iBAAiB,GAAGvD,IAAI,CAACyD,GAAL,CAASN,SAAS,GAAGE,QAAQ,GAAG,IAAhC,EAAsCD,OAAtC,CAApB;AACD;AACF;;AACD,aAAKhF,KAAL,CAAWQ,iBAAX,CAA6BK,QAA7B,CAAsCsE,iBAAtC;AACD;;AAED,YAAMG,QAAQ,GAAGN,OAAO,KAAK,CAA7B;AACA,WAAKO,aAAL,CAAmBD,QAAnB;AACA,WAAKzC,gBAAL,CAAsBlD,QAAtB,EAAgC2F,QAAhC;AACA,WAAKlD,QAAL,CAAc;AAAEU,QAAAA,WAAW,EAAEnD;AAAf,OAAd;;AACA,UAAI,KAAKG,KAAL,CAAWmD,aAAf,EAA8B;AAC5B9D,QAAAA,SAAS,CAAC+D,SAAV,CAAoBoC,QAApB,EAA8B,KAAKxF,KAAL,CAAWqD,kBAAX,IAAiC,OAA/D;AACD;;AACDpE,MAAAA,QAAQ,CAACyG,MAAT,CAAgB,KAAKxF,KAAL,CAAWQ,iBAA3B,EAA8C;AAC5CyE,QAAAA,QAD4C;AAE5CQ,QAAAA,UAAU,EAAE,CAFgC;AAG5CT,QAAAA,OAH4C;AAI5CzD,QAAAA,eAAe,EAAE,KAAKzB,KAAL,CAAW0B,mBAJgB;AAK5C0D,QAAAA,KAAK,EAAEA,KAAF,aAAEA,KAAF,cAAEA,KAAF,GAAWP;AAL4B,OAA9C,EAMGe,KANH,CAMS,CAAC;AAAEC,QAAAA;AAAF,OAAD,KAAkB;AACzB,YAAIA,QAAJ,EAAc;AACZ,eAAK9C,gBAAL,CAAsBpD,IAAtB,EAA4B6F,QAA5B;AACA,eAAKlD,QAAL,CAAc;AAAEwD,YAAAA,YAAY,EAAEN;AAAhB,WAAd;;AACA,cAAI,KAAKtF,KAAL,CAAW8C,WAAX,KAA2BpD,QAA/B,EAAyC;AACvC;AACA;AACA,iBAAK0C,QAAL,CAAc;AAAEU,cAAAA,WAAW,EAAErD;AAAf,aAAd;AACD;;AACD,cAAI6F,QAAJ,EAAc;AAAA;;AACZ,0DAAKxF,KAAL,EAAW+F,YAAX;AACD,WAFD,MAEO;AAAA;;AACL,0DAAK/F,KAAL,EAAWgG,aAAX;AACD;AACF;AACF,OArBD;AAsBD,KA3TqC;;AAAA,wCA6TzB,CAACC,OAA6B,GAAG,EAAjC,KAAwC;AACnD,WAAKlC,aAAL,EACE;AACAc,MAAAA,SAFF,EAGE,KAAK7E,KAAL,CAAWI,WAHb,EAIE6F,OAAO,CAACd,QAAR,GAAmBc,OAAO,CAACd,QAA3B,GAAsC,CAJxC,EAKEc,OAAO,CAACb,KALV,EADmD,CASnD;AACA;;AACA,WAAKc,WAAL;AACD,KAzUqC;;AAAA,yCA2UxB,CAACD,OAA6B,GAAG,EAAjC,KAAwC;AACpD;AACA,WAAKlC,aAAL,CACEc,SADF,EAEE,CAFF,EAGEoB,OAAO,CAACd,QAAR,GAAmBc,OAAO,CAACd,QAA3B,GAAsC,CAHxC,EAIEc,OAAO,CAACb,KAJV,EAFoD,CASpD;AACA;;AACA,WAAKc,WAAL;AACD,KAvVqC;;AAAA,2CAyVd,MAAM;AAC5B;AACAlH,MAAAA,SAAS,CAAC,KAAKsC,SAAN,EAAiB,eAAjB,CAAT;AACA,UAAI6E,cAAJ;;AAEA,UAAI,KAAKjG,KAAL,CAAW8C,WAAX,KAA2BrD,IAA/B,EAAqC;AACnCwG,QAAAA,cAAc,GAAG,KAAK7E,SAAtB;AACD,OAFD,MAEO;AACL6E,QAAAA,cAAc,GAAG,KAAKjG,KAAL,CAAW4F,YAAX,GAA0B,CAA1B,GAA8B,CAA/C;AACD;;AAED,YAAMM,oBAAoB,GAAG;AAC3BC,QAAAA,OAAO,EAAEF,cADkB;AAE3BG,QAAAA,eAAe,EAAE,KAAKtG,KAAL,CAAWuG;AAFD,OAA7B;AAKA,0BACE,oBAAC,iBAAD;AAAmB,QAAA,oBAAoB,EAAE,KAAKC;AAA9C,sBACE,oBAAC,QAAD,CAAU,IAAV;AACE,QAAA,aAAa,EAAE,KAAKlD,WAAL,GAAmB,MAAnB,GAA4B,MAD7C;AAEE,QAAA,GAAG,EAAE,KAAKe,iBAFZ;AAGE,QAAA,KAAK,EAAE,CAACoC,MAAM,CAACC,OAAR,EAAiBN,oBAAjB;AAHT,QADF,CADF;AASD,KAlXqC;;AAAA,0CAoXf,MAAM;AAC3B,YAAM;AACJO,QAAAA,qBADI;AAEJvG,QAAAA,WAFI;AAGJD,QAAAA,cAHI;AAIJE,QAAAA,UAJI;AAKJuG,QAAAA,oBALI;AAMJC,QAAAA;AANI,UAOF,KAAK7G,KAPT;AASA,YAAMyE,QAAQ,GAAGtE,cAAc,KAAK,MAApC;AACA,YAAM2G,WAAW,GAAGzG,UAAU,KAAK,MAAnC;AACA,YAAM0G,cAAc,GAAG1G,UAAU,KAAK,OAAtC,CAZ2B,CAc3B;AACA;AACA;AACA;;AACA,YAAM2G,uBAAuB,GAAG1H,WAAW,CAAC2H,KAAZ,GAAoBxC,QAApB,GAA+B,CAACA,QAAhE;AAEA,YAAMyC,mBAAmB,GAAG;AAC1BZ,QAAAA,eAAe,EAAEK,qBADS;AAE1BnE,QAAAA,KAAK,EAAEpC;AAFmB,OAA5B;AAIA,YAAMkB,SAAS,GAAG,KAAKA,SAAvB;AACAtC,MAAAA,SAAS,CAACsC,SAAD,EAAY,eAAZ,CAAT;AAEA,UAAI6F,eAAJ;;AACA,UAAIJ,cAAJ,EAAoB;AAClB,cAAMK,mBAAmB,GAAG9F,SAAS,CAACH,WAAV,CAAsB;AAChDC,UAAAA,UAAU,EAAE,CAAC,CAAD,EAAI,CAAJ,CADoC;AAEhDC,UAAAA,WAAW,EAAEoD,QAAQ,GAAG,CAAC,CAAD,EAAIrE,WAAJ,CAAH,GAAuB,CAAC,CAAD,EAAI,CAACA,WAAL,CAFI;AAGhDmB,UAAAA,WAAW,EAAE;AAHmC,SAAtB,CAA5B;AAKA4F,QAAAA,eAAe,GAAG;AAChBE,UAAAA,SAAS,EAAE,CAAC;AAAEC,YAAAA,UAAU,EAAEF;AAAd,WAAD;AADK,SAAlB;AAGD;;AAED,UAAIG,gBAAgD,GAAG,CAAvD;;AACA,UAAIT,WAAJ,EAAiB;AACf,cAAMU,kBAAkB,GAAG/C,QAAQ,GAAG,CAACrE,WAAJ,GAAmBA,WAAtD;;AACA,YAAI,KAAKF,KAAL,CAAW8C,WAAX,KAA2BrD,IAA/B,EAAqC;AACnC4H,UAAAA,gBAAgB,GAAGjG,SAAS,CAACH,WAAV,CAAsB;AACvCC,YAAAA,UAAU,EAAE,CAAC,CAAD,EAAI,CAAJ,CAD2B;AAEvCC,YAAAA,WAAW,EAAE,CAACmG,kBAAD,EAAqB,CAArB,CAF0B;AAGvCjG,YAAAA,WAAW,EAAE;AAH0B,WAAtB,CAAnB;AAKD,SAND,MAMO;AACLgG,UAAAA,gBAAgB,GAAG,KAAKrH,KAAL,CAAW4F,YAAX,GAA0B,CAA1B,GAA8B0B,kBAAjD;AACD;AACF;;AACD,YAAMC,YAGL,GAAG;AACFJ,QAAAA,SAAS,EAAE,CAAC;AAAEC,UAAAA,UAAU,EAAEC;AAAd,SAAD,CADT;AAEFG,QAAAA,aAAa,EAAEV,uBAAuB,GAAG,aAAH,GAAmB;AAFvD,OAHJ;AAQA,0BACE,oBAAC,QAAD,CAAU,IAAV;AAAe,QAAA,KAAK,EAAEP,MAAM,CAACkB,IAA7B;AAAmC,QAAA,QAAQ,EAAE,KAAKC;AAAlD,sBACE,oBAAC,QAAD,CAAU,IAAV;AACE,QAAA,KAAK,EAAE,CACLvH,UAAU,KAAK,OAAf,GACIoG,MAAM,CAACoB,eADX,GAEIpB,MAAM,CAACqB,gBAHN,EAILX,eAJK,EAKLN,qBALK,CADT;AAQE,QAAA,yBAAyB,EACvB,KAAKvD,WAAL,GAAmB,qBAAnB,GAA2C;AAT/C,SAWG,OAAO,KAAKtD,KAAL,CAAW+H,QAAlB,KAA+B,UAA/B,GACG,KAAK/H,KAAL,CAAW+H,QAAX,CAAoB,KAAKzG,SAAzB,CADH,GAEG,KAAKtB,KAAL,CAAW+H,QAbjB,EAcG,KAAKC,aAAL,EAdH,CADF,eAiBE,oBAAC,QAAD,CAAU,IAAV;AACE,QAAA,aAAa,EAAC,UADhB;AAEE,QAAA,GAAG,EAAE,KAAK/D,wBAFZ;AAGE,QAAA,wBAAwB,EAAE,KAAKX,WAHjC;AAIE,QAAA,KAAK,EAAE,CAACmD,MAAM,CAACwB,eAAR,EAAyBR,YAAzB,EAAuCb,oBAAvC;AAJT,sBAKE,oBAAC,IAAD;AAAM,QAAA,KAAK,EAAEM;AAAb,SACG,KAAKlH,KAAL,CAAWkI,oBAAX,CAAgC,KAAK5G,SAArC,CADH,CALF,CAjBF,CADF;AA6BD,KA7cqC;;AAAA,8CA+cV6G,GAAD,IAA4B;AAAA;;AACrD;AACA;AAEE,WAAKpD,iBADP,CAEEb,OAFF,GAEYiE,GAFZ;AAGA,oDAAKnI,KAAL,EAAWoI,YAAX,mGAA0BD,GAA1B;AACD,KAtdqC;;AAGpC,UAAM7H,MAAK,GAAG,IAAIrB,QAAQ,CAAC4B,KAAb,CAAmB,CAAnB,CAAd;;AACA,UAAML,OAAM,GAAG,IAAIvB,QAAQ,CAAC4B,KAAb,CAAmB,CAAnB,CAAf;;AACA,UAAMH,kBAAiB,GAAG,IAAIzB,QAAQ,CAAC4B,KAAb,CAAmB,CAAnB,CAA1B;;AAEA,SAAKX,KAAL,GAAa;AACXI,MAAAA,KAAK,EAALA,MADW;AAEXE,MAAAA,MAAM,EAANA,OAFW;AAGXE,MAAAA,iBAAiB,EAAjBA,kBAHW;AAIXC,MAAAA,cAAc,EAAE,CAJL;AAKXqC,MAAAA,WAAW,EAAErD,IALF;AAMXmG,MAAAA,YAAY,EAAE;AANH,KAAb;AASA,SAAKuC,mBAAL,CAAyBrI,MAAzB,EAAgC,KAAKE,KAArC;AACD;;AAEDoI,EAAAA,qBAAqB,CAACtI,KAAD,EAA2BE,KAA3B,EAAqD;AACxE,QACE,KAAKF,KAAL,CAAWG,cAAX,KAA8BH,KAAK,CAACG,cAApC,IACA,KAAKH,KAAL,CAAWI,WAAX,KAA2BJ,KAAK,CAACI,WADjC,IAEA,KAAKJ,KAAL,CAAWK,UAAX,KAA0BL,KAAK,CAACK,UAFhC,IAGA,KAAKH,KAAL,CAAWS,cAAX,KAA8BT,KAAK,CAACS,cAJtC,EAKE;AACA,WAAK0H,mBAAL,CAAyBrI,KAAzB,EAAgCE,KAAhC;AACD;;AAED,WAAO,IAAP;AACD;;AA0bDqI,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEpI,MAAAA,cAAF;AAAkBoD,MAAAA,cAAlB;AAAkCiB,MAAAA,SAAlC;AAA6CD,MAAAA;AAA7C,QACJ,KAAKvE,KADP;AAGA,UAAMyE,QAAQ,GAAGtE,cAAc,KAAK,MAApC,CAJO,CAMP;AACA;AACA;;AACA,UAAMuE,kBAAkB,GACtB,CAACD,QAAQ,GAAG,CAAH,GAAO,CAAC,CAAjB,KAAuB,KAAKnB,WAAL,GAAmB,CAAC,CAApB,GAAwB,CAA/C,CADF,CATO,CAYP;AACA;AACA;;AACA,UAAMqB,OAAO,GAAGF,QAAQ,GACpB;AAAEG,MAAAA,IAAI,EAAE,CAAR;AAAWpC,MAAAA,KAAK,EAAE,KAAKc,WAAL,GAAmBuB,SAAnB,GAA+BL;AAAjD,KADoB,GAEpB;AAAEM,MAAAA,KAAK,EAAE,CAAT;AAAYtC,MAAAA,KAAK,EAAE,KAAKc,WAAL,GAAmBuB,SAAnB,GAA+BL;AAAlD,KAFJ;AAIA,wBACE,oBAAC,iBAAD,CACE;AADF;AAEE,MAAA,UAAU,EAAE,KAAKxE,KAAL,CAAWwI,UAFzB;AAGE,MAAA,YAAY,EAAE,KAAKxI,KAAL,CAAWyI,YAH3B;AAIE,MAAA,GAAG,EAAE,KAAKC,gBAJZ;AAKE,MAAA,OAAO,EAAE/D,OALX;AAME,MAAA,aAAa,EAAED,kBAAkB,GAAGH,gBANtC;AAOE,MAAA,WAAW,EAAE,CAAC,CAAC,EAAF,EAAM,EAAN,CAPf;AAQE,MAAA,cAAc,EAAE,KAAKpC,cARvB;AASE,MAAA,oBAAoB,EAAE,KAAKwG,yBAT7B;AAUE,MAAA,8BAA8B,EAC5B,KAAK3I,KAAL,CAAW4I,8BAXf;AAaE,MAAA,OAAO,EACLrF,cAAc,KAAK,eAAnB,IAAsCA,cAAc,KAAK;AAd7D,OAgBG,KAAKsF,YAAL,EAhBH,CADF;AAoBD;;AA5gBD;;gBAHmB/I,Y,kBAIG;AACpBM,EAAAA,WAAW,EAAE,GADO;AAEpBD,EAAAA,cAAc,EAAE,MAFI;AAGpBuB,EAAAA,mBAAmB,EAAE,IAHD;AAIpBrB,EAAAA,UAAU,EAAE,OAJQ;AAKpBmE,EAAAA,SAAS,EAAE,EALS;AAMpBD,EAAAA,gBAAgB,EAAE,CANE;AAOpBgC,EAAAA,YAAY,EAAE,oBAPM;AAQpBhD,EAAAA,cAAc,EAAE,UARI;AASpBqF,EAAAA,8BAA8B,EAAE;AATZ,C;;gBAJH9I,Y,eAyDA;AACjBgJ,EAAAA,IAAI,EAAE,MADW;AAEjBC,EAAAA,KAAK,EAAE;AAFU,C;;AAydrB,MAAMtC,MAAM,GAAGvH,UAAU,CAAC8J,MAAX,CAAkB;AAC/Bf,EAAAA,eAAe,EAAE,EACf,GAAG/I,UAAU,CAAC+J,kBADC;AAEfC,IAAAA,MAAM,EAAE,IAFO;AAGfxB,IAAAA,aAAa,EAAE;AAHA,GADc;AAM/BI,EAAAA,gBAAgB,EAAE,EAChB,GAAG5I,UAAU,CAAC+J,kBADE;AAEhBC,IAAAA,MAAM,EAAE;AAFQ,GANa;AAU/BrB,EAAAA,eAAe,EAAE,EACf,GAAG3I,UAAU,CAAC+J;AADC,GAVc;AAa/BtB,EAAAA,IAAI,EAAE;AACJwB,IAAAA,IAAI,EAAE,CADF;AAEJD,IAAAA,MAAM,EAAE,CAFJ;AAGJE,IAAAA,QAAQ,EAAE;AAHN,GAbyB;AAkB/B1C,EAAAA,OAAO,EAAE,EACP,GAAGxH,UAAU,CAAC+J,kBADP;AAEPC,IAAAA,MAAM,EAAE;AAFD;AAlBsB,CAAlB,CAAf","sourcesContent":["// This component is based on RN's DrawerLayoutAndroid API\r\n//\r\n// It perhaps deserves to be put in a separate repo, but since it relies on\r\n// react-native-gesture-handler library which isn't very popular at the moment I\r\n// decided to keep it here for the time being. It will allow us to move faster\r\n// and fix issues that may arise in gesture handler library that could be found\r\n// when using the drawer component\r\n\r\nimport * as React from 'react';\r\nimport { Component } from 'react';\r\nimport invariant from 'invariant';\r\nimport {\r\n Animated,\r\n StyleSheet,\r\n View,\r\n Keyboard,\r\n StatusBar,\r\n I18nManager,\r\n StatusBarAnimation,\r\n StyleProp,\r\n ViewStyle,\r\n LayoutChangeEvent,\r\n NativeSyntheticEvent,\r\n} from 'react-native';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n UserSelect,\r\n ActiveCursor,\r\n} from '../handlers/gestureHandlerCommon';\r\nimport {\r\n PanGestureHandler,\r\n PanGestureHandlerEventPayload,\r\n} from '../handlers/PanGestureHandler';\r\nimport {\r\n TapGestureHandler,\r\n TapGestureHandlerEventPayload,\r\n} from '../handlers/TapGestureHandler';\r\nimport { State } from '../State';\r\n\r\nconst DRAG_TOSS = 0.05;\r\n\r\nconst IDLE: DrawerState = 'Idle';\r\nconst DRAGGING: DrawerState = 'Dragging';\r\nconst SETTLING: DrawerState = 'Settling';\r\n\r\nexport type DrawerPosition = 'left' | 'right';\r\n\r\nexport type DrawerState = 'Idle' | 'Dragging' | 'Settling';\r\n\r\nexport type DrawerType = 'front' | 'back' | 'slide';\r\n\r\nexport type DrawerLockMode = 'unlocked' | 'locked-closed' | 'locked-open';\r\n\r\nexport type DrawerKeyboardDismissMode = 'none' | 'on-drag';\r\n\r\n// Animated.AnimatedInterpolation has been converted to a generic type\r\n// in @types/react-native 0.70. This way we can maintain compatibility\r\n// with all versions of @types/react-native`\r\ntype AnimatedInterpolation = ReturnType<Animated.Value['interpolate']>;\r\nexport interface DrawerLayoutProps {\r\n /**\r\n * This attribute is present in the standard implementation already and is one\r\n * of the required params. Gesture handler version of DrawerLayout make it\r\n * possible for the function passed as `renderNavigationView` to take an\r\n * Animated value as a parameter that indicates the progress of drawer\r\n * opening/closing animation (progress value is 0 when closed and 1 when\r\n * opened). This can be used by the drawer component to animated its children\r\n * while the drawer is opening or closing.\r\n */\r\n renderNavigationView: (\r\n progressAnimatedValue: Animated.Value\r\n ) => React.ReactNode;\r\n\r\n drawerPosition?: DrawerPosition;\r\n\r\n drawerWidth?: number;\r\n\r\n drawerBackgroundColor?: string;\r\n\r\n drawerLockMode?: DrawerLockMode;\r\n\r\n keyboardDismissMode?: DrawerKeyboardDismissMode;\r\n\r\n /**\r\n * Called when the drawer is closed.\r\n */\r\n onDrawerClose?: () => void;\r\n\r\n /**\r\n * Called when the drawer is opened.\r\n */\r\n onDrawerOpen?: () => void;\r\n\r\n /**\r\n * Called when the status of the drawer changes.\r\n */\r\n onDrawerStateChanged?: (\r\n newState: DrawerState,\r\n drawerWillShow: boolean\r\n ) => void;\r\n useNativeAnimations?: boolean;\r\n\r\n drawerType?: DrawerType;\r\n\r\n /**\r\n * Defines how far from the edge of the content view the gesture should\r\n * activate.\r\n */\r\n edgeWidth?: number;\r\n\r\n minSwipeDistance?: number;\r\n\r\n /**\r\n * When set to true Drawer component will use\r\n * {@link https://reactnative.dev/docs/statusbar StatusBar} API to hide the OS\r\n * status bar whenever the drawer is pulled or when its in an \"open\" state.\r\n */\r\n hideStatusBar?: boolean;\r\n\r\n /**\r\n * @default 'slide'\r\n *\r\n * Can be used when hideStatusBar is set to true and will select the animation\r\n * used for hiding/showing the status bar. See\r\n * {@link https://reactnative.dev/docs/statusbar StatusBar} documentation for\r\n * more details\r\n */\r\n statusBarAnimation?: StatusBarAnimation;\r\n\r\n /**\r\n * @default black\r\n *\r\n * Color of a semi-transparent overlay to be displayed on top of the content\r\n * view when drawer gets open. A solid color should be used as the opacity is\r\n * added by the Drawer itself and the opacity of the overlay is animated (from\r\n * 0% to 70%).\r\n */\r\n overlayColor?: string;\r\n\r\n contentContainerStyle?: StyleProp<ViewStyle>;\r\n\r\n drawerContainerStyle?: StyleProp<ViewStyle>;\r\n\r\n /**\r\n * Enables two-finger gestures on supported devices, for example iPads with\r\n * trackpads. If not enabled the gesture will require click + drag, with\r\n * `enableTrackpadTwoFingerGesture` swiping with two fingers will also trigger\r\n * the gesture.\r\n */\r\n enableTrackpadTwoFingerGesture?: boolean;\r\n\r\n onDrawerSlide?: (position: number) => void;\r\n\r\n onGestureRef?: (ref: PanGestureHandler) => void;\r\n\r\n // implicit `children` prop has been removed in @types/react^18.0.0\r\n children?:\r\n | React.ReactNode\r\n | ((openValue?: AnimatedInterpolation) => React.ReactNode);\r\n\r\n /**\r\n * @default 'none'\r\n * Defines which userSelect property should be used.\r\n * Values: 'none'|'text'|'auto'\r\n */\r\n userSelect?: UserSelect;\r\n\r\n /**\r\n * @default 'auto'\r\n * Defines which cursor property should be used when gesture activates.\r\n * Values: see CSS cursor values\r\n */\r\n activeCursor?: ActiveCursor;\r\n}\r\n\r\nexport type DrawerLayoutState = {\r\n dragX: Animated.Value;\r\n touchX: Animated.Value;\r\n drawerTranslation: Animated.Value;\r\n containerWidth: number;\r\n drawerState: DrawerState;\r\n drawerOpened: boolean;\r\n};\r\n\r\nexport type DrawerMovementOption = {\r\n velocity?: number;\r\n speed?: number;\r\n};\r\nexport default class DrawerLayout extends Component<\r\n DrawerLayoutProps,\r\n DrawerLayoutState\r\n> {\r\n static defaultProps = {\r\n drawerWidth: 200,\r\n drawerPosition: 'left',\r\n useNativeAnimations: true,\r\n drawerType: 'front',\r\n edgeWidth: 20,\r\n minSwipeDistance: 3,\r\n overlayColor: 'rgba(0, 0, 0, 0.7)',\r\n drawerLockMode: 'unlocked',\r\n enableTrackpadTwoFingerGesture: false,\r\n };\r\n\r\n constructor(props: DrawerLayoutProps) {\r\n super(props);\r\n\r\n const dragX = new Animated.Value(0);\r\n const touchX = new Animated.Value(0);\r\n const drawerTranslation = new Animated.Value(0);\r\n\r\n this.state = {\r\n dragX,\r\n touchX,\r\n drawerTranslation,\r\n containerWidth: 0,\r\n drawerState: IDLE,\r\n drawerOpened: false,\r\n };\r\n\r\n this.updateAnimatedEvent(props, this.state);\r\n }\r\n\r\n shouldComponentUpdate(props: DrawerLayoutProps, state: DrawerLayoutState) {\r\n if (\r\n this.props.drawerPosition !== props.drawerPosition ||\r\n this.props.drawerWidth !== props.drawerWidth ||\r\n this.props.drawerType !== props.drawerType ||\r\n this.state.containerWidth !== state.containerWidth\r\n ) {\r\n this.updateAnimatedEvent(props, state);\r\n }\r\n\r\n return true;\r\n }\r\n\r\n private openValue?: AnimatedInterpolation;\r\n private onGestureEvent?: (\r\n event: GestureEvent<PanGestureHandlerEventPayload>\r\n ) => void;\r\n private accessibilityIsModalView = React.createRef<View>();\r\n private pointerEventsView = React.createRef<View>();\r\n private panGestureHandler = React.createRef<PanGestureHandler | null>();\r\n private drawerShown = false;\r\n\r\n static positions = {\r\n Left: 'left',\r\n Right: 'right',\r\n };\r\n\r\n private updateAnimatedEvent = (\r\n props: DrawerLayoutProps,\r\n state: DrawerLayoutState\r\n ) => {\r\n // Event definition is based on\r\n const { drawerPosition, drawerWidth, drawerType } = props;\r\n const {\r\n dragX: dragXValue,\r\n touchX: touchXValue,\r\n drawerTranslation,\r\n containerWidth,\r\n } = state;\r\n\r\n let dragX = dragXValue;\r\n let touchX = touchXValue;\r\n\r\n if (drawerPosition !== 'left') {\r\n // Most of the code is written in a way to handle left-side drawer. In\r\n // order to handle right-side drawer the only thing we need to do is to\r\n // reverse events coming from gesture handler in a way they emulate\r\n // left-side drawer gestures. E.g. dragX is simply -dragX, and touchX is\r\n // calulcated by subtracing real touchX from the width of the container\r\n // (such that when touch happens at the right edge the value is simply 0)\r\n dragX = Animated.multiply(\r\n new Animated.Value(-1),\r\n dragXValue\r\n ) as Animated.Value; // TODO(TS): (for all \"as\" in this file) make sure we can map this\r\n touchX = Animated.add(\r\n new Animated.Value(containerWidth),\r\n Animated.multiply(new Animated.Value(-1), touchXValue)\r\n ) as Animated.Value; // TODO(TS): make sure we can map this;\r\n touchXValue.setValue(containerWidth);\r\n } else {\r\n touchXValue.setValue(0);\r\n }\r\n\r\n // While closing the drawer when user starts gesture outside of its area (in greyed\r\n // out part of the window), we want the drawer to follow only once finger reaches the\r\n // edge of the drawer.\r\n // E.g. on the diagram below drawer is illustrate by X signs and the greyed out area by\r\n // dots. The touch gesture starts at '*' and moves left, touch path is indicated by\r\n // an arrow pointing left\r\n // 1) +---------------+ 2) +---------------+ 3) +---------------+ 4) +---------------+\r\n // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|\r\n // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|\r\n // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|\r\n // |XXXXXXXX|......| |XXXXXXXX|.<-*..| |XXXXXXXX|<--*..| |XXXXX|<-----*..|\r\n // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|\r\n // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|\r\n // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|\r\n // +---------------+ +---------------+ +---------------+ +---------------+\r\n //\r\n // For the above to work properly we define animated value that will keep\r\n // start position of the gesture. Then we use that value to calculate how\r\n // much we need to subtract from the dragX. If the gesture started on the\r\n // greyed out area we take the distance from the edge of the drawer to the\r\n // start position. Otherwise we don't subtract at all and the drawer be\r\n // pulled back as soon as you start the pan.\r\n //\r\n // This is used only when drawerType is \"front\"\r\n //\r\n let translationX = dragX;\r\n if (drawerType === 'front') {\r\n const startPositionX = Animated.add(\r\n touchX,\r\n Animated.multiply(new Animated.Value(-1), dragX)\r\n );\r\n\r\n const dragOffsetFromOnStartPosition = startPositionX.interpolate({\r\n inputRange: [drawerWidth! - 1, drawerWidth!, drawerWidth! + 1],\r\n outputRange: [0, 0, 1],\r\n });\r\n translationX = Animated.add(\r\n dragX,\r\n dragOffsetFromOnStartPosition\r\n ) as Animated.Value; // TODO: as above\r\n }\r\n\r\n this.openValue = Animated.add(translationX, drawerTranslation).interpolate({\r\n inputRange: [0, drawerWidth!],\r\n outputRange: [0, 1],\r\n extrapolate: 'clamp',\r\n });\r\n\r\n const gestureOptions: {\r\n useNativeDriver: boolean;\r\n // TODO: make sure it is correct\r\n listener?: (\r\n ev: NativeSyntheticEvent<PanGestureHandlerEventPayload>\r\n ) => void;\r\n } = {\r\n useNativeDriver: props.useNativeAnimations!,\r\n };\r\n\r\n if (this.props.onDrawerSlide) {\r\n gestureOptions.listener = (ev) => {\r\n const translationX = Math.floor(Math.abs(ev.nativeEvent.translationX));\r\n const position = translationX / this.state.containerWidth;\r\n\r\n this.props.onDrawerSlide?.(position);\r\n };\r\n }\r\n\r\n this.onGestureEvent = Animated.event(\r\n [{ nativeEvent: { translationX: dragXValue, x: touchXValue } }],\r\n gestureOptions\r\n );\r\n };\r\n\r\n private handleContainerLayout = ({ nativeEvent }: LayoutChangeEvent) => {\r\n this.setState({ containerWidth: nativeEvent.layout.width });\r\n };\r\n\r\n private emitStateChanged = (\r\n newState: DrawerState,\r\n drawerWillShow: boolean\r\n ) => {\r\n this.props.onDrawerStateChanged?.(newState, drawerWillShow);\r\n };\r\n\r\n private openingHandlerStateChange = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<PanGestureHandlerEventPayload>) => {\r\n if (nativeEvent.oldState === State.ACTIVE) {\r\n this.handleRelease({ nativeEvent });\r\n } else if (nativeEvent.state === State.ACTIVE) {\r\n this.emitStateChanged(DRAGGING, false);\r\n this.setState({ drawerState: DRAGGING });\r\n if (this.props.keyboardDismissMode === 'on-drag') {\r\n Keyboard.dismiss();\r\n }\r\n if (this.props.hideStatusBar) {\r\n StatusBar.setHidden(true, this.props.statusBarAnimation || 'slide');\r\n }\r\n }\r\n };\r\n\r\n private onTapHandlerStateChange = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<TapGestureHandlerEventPayload>) => {\r\n if (\r\n this.drawerShown &&\r\n nativeEvent.oldState === State.ACTIVE &&\r\n this.props.drawerLockMode !== 'locked-open'\r\n ) {\r\n this.closeDrawer();\r\n }\r\n };\r\n\r\n private handleRelease = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<PanGestureHandlerEventPayload>) => {\r\n const { drawerWidth, drawerPosition, drawerType } = this.props;\r\n const { containerWidth } = this.state;\r\n let { translationX: dragX, velocityX, x: touchX } = nativeEvent;\r\n\r\n if (drawerPosition !== 'left') {\r\n // See description in _updateAnimatedEvent about why events are flipped\r\n // for right-side drawer\r\n dragX = -dragX;\r\n touchX = containerWidth - touchX;\r\n velocityX = -velocityX;\r\n }\r\n\r\n const gestureStartX = touchX - dragX;\r\n let dragOffsetBasedOnStart = 0;\r\n\r\n if (drawerType === 'front') {\r\n dragOffsetBasedOnStart =\r\n gestureStartX > drawerWidth! ? gestureStartX - drawerWidth! : 0;\r\n }\r\n\r\n const startOffsetX =\r\n dragX + dragOffsetBasedOnStart + (this.drawerShown ? drawerWidth! : 0);\r\n const projOffsetX = startOffsetX + DRAG_TOSS * velocityX;\r\n\r\n const shouldOpen = projOffsetX > drawerWidth! / 2;\r\n\r\n if (shouldOpen) {\r\n this.animateDrawer(startOffsetX, drawerWidth!, velocityX);\r\n } else {\r\n this.animateDrawer(startOffsetX, 0, velocityX);\r\n }\r\n };\r\n\r\n private updateShowing = (showing: boolean) => {\r\n this.drawerShown = showing;\r\n this.accessibilityIsModalView.current?.setNativeProps({\r\n accessibilityViewIsModal: showing,\r\n });\r\n this.pointerEventsView.current?.setNativeProps({\r\n pointerEvents: showing ? 'auto' : 'none',\r\n });\r\n const { drawerPosition, minSwipeDistance, edgeWidth } = this.props;\r\n const fromLeft = drawerPosition === 'left';\r\n // gestureOrientation is 1 if the expected gesture is from left to right and\r\n // -1 otherwise e.g. when drawer is on the left and is closed we expect left\r\n // to right gesture, thus orientation will be 1.\r\n const gestureOrientation =\r\n (fromLeft ? 1 : -1) * (this.drawerShown ? -1 : 1);\r\n // When drawer is closed we want the hitSlop to be horizontally shorter than\r\n // the container size by the value of SLOP. This will make it only activate\r\n // when gesture happens not further than SLOP away from the edge\r\n const hitSlop = fromLeft\r\n ? { left: 0, width: showing ? undefined : edgeWidth }\r\n : { right: 0, width: showing ? undefined : edgeWidth };\r\n // @ts-ignore internal API, maybe could be fixed in handler types\r\n this.panGestureHandler.current?.setNativeProps({\r\n hitSlop,\r\n activeOffsetX: gestureOrientation * minSwipeDistance!,\r\n });\r\n };\r\n\r\n private animateDrawer = (\r\n fromValue: number | null | undefined,\r\n toValue: number,\r\n velocity: number,\r\n speed?: number\r\n ) => {\r\n this.state.dragX.setValue(0);\r\n this.state.touchX.setValue(\r\n this.props.drawerPosition === 'left' ? 0 : this.state.containerWidth\r\n );\r\n\r\n if (fromValue != null) {\r\n let nextFramePosition = fromValue;\r\n if (this.props.useNativeAnimations) {\r\n // When using native driver, we predict the next position of the\r\n // animation because it takes one frame of a roundtrip to pass RELEASE\r\n // event from native driver to JS before we can start animating. Without\r\n // it, it is more noticable that the frame is dropped.\r\n if (fromValue < toValue && velocity > 0) {\r\n nextFramePosition = Math.min(fromValue + velocity / 60.0, toValue);\r\n } else if (fromValue > toValue && velocity < 0) {\r\n nextFramePosition = Math.max(fromValue + velocity / 60.0, toValue);\r\n }\r\n }\r\n this.state.drawerTranslation.setValue(nextFramePosition);\r\n }\r\n\r\n const willShow = toValue !== 0;\r\n this.updateShowing(willShow);\r\n this.emitStateChanged(SETTLING, willShow);\r\n this.setState({ drawerState: SETTLING });\r\n if (this.props.hideStatusBar) {\r\n StatusBar.setHidden(willShow, this.props.statusBarAnimation || 'slide');\r\n }\r\n Animated.spring(this.state.drawerTranslation, {\r\n velocity,\r\n bounciness: 0,\r\n toValue,\r\n useNativeDriver: this.props.useNativeAnimations!,\r\n speed: speed ?? undefined,\r\n }).start(({ finished }) => {\r\n if (finished) {\r\n this.emitStateChanged(IDLE, willShow);\r\n this.setState({ drawerOpened: willShow });\r\n if (this.state.drawerState !== DRAGGING) {\r\n // it's possilbe that user started drag while the drawer\r\n // was settling, don't override state in this case\r\n this.setState({ drawerState: IDLE });\r\n }\r\n if (willShow) {\r\n this.props.onDrawerOpen?.();\r\n } else {\r\n this.props.onDrawerClose?.();\r\n }\r\n }\r\n });\r\n };\r\n\r\n openDrawer = (options: DrawerMovementOption = {}) => {\r\n this.animateDrawer(\r\n // TODO: decide if it should be null or undefined is the proper value\r\n undefined,\r\n this.props.drawerWidth!,\r\n options.velocity ? options.velocity : 0,\r\n options.speed\r\n );\r\n\r\n // We need to force the update, otherwise the overlay is not rerendered and\r\n // it would not be clickable\r\n this.forceUpdate();\r\n };\r\n\r\n closeDrawer = (options: DrawerMovementOption = {}) => {\r\n // TODO: decide if it should be null or undefined is the proper value\r\n this.animateDrawer(\r\n undefined,\r\n 0,\r\n options.velocity ? options.velocity : 0,\r\n options.speed\r\n );\r\n\r\n // We need to force the update, otherwise the overlay is not rerendered and\r\n // it would be still clickable\r\n this.forceUpdate();\r\n };\r\n\r\n private renderOverlay = () => {\r\n /* Overlay styles */\r\n invariant(this.openValue, 'should be set');\r\n let overlayOpacity;\r\n\r\n if (this.state.drawerState !== IDLE) {\r\n overlayOpacity = this.openValue;\r\n } else {\r\n overlayOpacity = this.state.drawerOpened ? 1 : 0;\r\n }\r\n\r\n const dynamicOverlayStyles = {\r\n opacity: overlayOpacity,\r\n backgroundColor: this.props.overlayColor,\r\n };\r\n\r\n return (\r\n <TapGestureHandler onHandlerStateChange={this.onTapHandlerStateChange}>\r\n <Animated.View\r\n pointerEvents={this.drawerShown ? 'auto' : 'none'}\r\n ref={this.pointerEventsView}\r\n style={[styles.overlay, dynamicOverlayStyles]}\r\n />\r\n </TapGestureHandler>\r\n );\r\n };\r\n\r\n private renderDrawer = () => {\r\n const {\r\n drawerBackgroundColor,\r\n drawerWidth,\r\n drawerPosition,\r\n drawerType,\r\n drawerContainerStyle,\r\n contentContainerStyle,\r\n } = this.props;\r\n\r\n const fromLeft = drawerPosition === 'left';\r\n const drawerSlide = drawerType !== 'back';\r\n const containerSlide = drawerType !== 'front';\r\n\r\n // we rely on row and row-reverse flex directions to position the drawer\r\n // properly. Apparently for RTL these are flipped which requires us to use\r\n // the opposite setting for the drawer to appear from left or right\r\n // according to the drawerPosition prop\r\n const reverseContentDirection = I18nManager.isRTL ? fromLeft : !fromLeft;\r\n\r\n const dynamicDrawerStyles = {\r\n backgroundColor: drawerBackgroundColor,\r\n width: drawerWidth,\r\n };\r\n const openValue = this.openValue;\r\n invariant(openValue, 'should be set');\r\n\r\n let containerStyles;\r\n if (containerSlide) {\r\n const containerTranslateX = openValue.interpolate({\r\n inputRange: [0, 1],\r\n outputRange: fromLeft ? [0, drawerWidth!] : [0, -drawerWidth!],\r\n extrapolate: 'clamp',\r\n });\r\n containerStyles = {\r\n transform: [{ translateX: containerTranslateX }],\r\n };\r\n }\r\n\r\n let drawerTranslateX: number | AnimatedInterpolation = 0;\r\n if (drawerSlide) {\r\n const closedDrawerOffset = fromLeft ? -drawerWidth! : drawerWidth!;\r\n if (this.state.drawerState !== IDLE) {\r\n drawerTranslateX = openValue.interpolate({\r\n inputRange: [0, 1],\r\n outputRange: [closedDrawerOffset, 0],\r\n extrapolate: 'clamp',\r\n });\r\n } else {\r\n drawerTranslateX = this.state.drawerOpened ? 0 : closedDrawerOffset;\r\n }\r\n }\r\n const drawerStyles: {\r\n transform: { translateX: number | AnimatedInterpolation }[];\r\n flexDirection: 'row-reverse' | 'row';\r\n } = {\r\n transform: [{ translateX: drawerTranslateX }],\r\n flexDirection: reverseContentDirection ? 'row-reverse' : 'row',\r\n };\r\n\r\n return (\r\n <Animated.View style={styles.main} onLayout={this.handleContainerLayout}>\r\n <Animated.View\r\n style={[\r\n drawerType === 'front'\r\n ? styles.containerOnBack\r\n : styles.containerInFront,\r\n containerStyles,\r\n contentContainerStyle,\r\n ]}\r\n importantForAccessibility={\r\n this.drawerShown ? 'no-hide-descendants' : 'yes'\r\n }>\r\n {typeof this.props.children === 'function'\r\n ? this.props.children(this.openValue)\r\n : this.props.children}\r\n {this.renderOverlay()}\r\n </Animated.View>\r\n <Animated.View\r\n pointerEvents=\"box-none\"\r\n ref={this.accessibilityIsModalView}\r\n accessibilityViewIsModal={this.drawerShown}\r\n style={[styles.drawerContainer, drawerStyles, drawerContainerStyle]}>\r\n <View style={dynamicDrawerStyles}>\r\n {this.props.renderNavigationView(this.openValue as Animated.Value)}\r\n </View>\r\n </Animated.View>\r\n </Animated.View>\r\n );\r\n };\r\n\r\n private setPanGestureRef = (ref: PanGestureHandler) => {\r\n // TODO(TS): make sure it is OK taken from\r\n // https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31065#issuecomment-596081842\r\n (\r\n this.panGestureHandler as React.MutableRefObject<PanGestureHandler>\r\n ).current = ref;\r\n this.props.onGestureRef?.(ref);\r\n };\r\n\r\n render() {\r\n const { drawerPosition, drawerLockMode, edgeWidth, minSwipeDistance } =\r\n this.props;\r\n\r\n const fromLeft = drawerPosition === 'left';\r\n\r\n // gestureOrientation is 1 if the expected gesture is from left to right and\r\n // -1 otherwise e.g. when drawer is on the left and is closed we expect left\r\n // to right gesture, thus orientation will be 1.\r\n const gestureOrientation =\r\n (fromLeft ? 1 : -1) * (this.drawerShown ? -1 : 1);\r\n\r\n // When drawer is closed we want the hitSlop to be horizontally shorter than\r\n // the container size by the value of SLOP. This will make it only activate\r\n // when gesture happens not further than SLOP away from the edge\r\n const hitSlop = fromLeft\r\n ? { left: 0, width: this.drawerShown ? undefined : edgeWidth }\r\n : { right: 0, width: this.drawerShown ? undefined : edgeWidth };\r\n\r\n return (\r\n <PanGestureHandler\r\n // @ts-ignore could be fixed in handler types\r\n userSelect={this.props.userSelect}\r\n activeCursor={this.props.activeCursor}\r\n ref={this.setPanGestureRef}\r\n hitSlop={hitSlop}\r\n activeOffsetX={gestureOrientation * minSwipeDistance!}\r\n failOffsetY={[-15, 15]}\r\n onGestureEvent={this.onGestureEvent}\r\n onHandlerStateChange={this.openingHandlerStateChange}\r\n enableTrackpadTwoFingerGesture={\r\n this.props.enableTrackpadTwoFingerGesture\r\n }\r\n enabled={\r\n drawerLockMode !== 'locked-closed' && drawerLockMode !== 'locked-open'\r\n }>\r\n {this.renderDrawer()}\r\n </PanGestureHandler>\r\n );\r\n }\r\n}\r\n\r\nconst styles = StyleSheet.create({\r\n drawerContainer: {\r\n ...StyleSheet.absoluteFillObject,\r\n zIndex: 1001,\r\n flexDirection: 'row',\r\n },\r\n containerInFront: {\r\n ...StyleSheet.absoluteFillObject,\r\n zIndex: 1002,\r\n },\r\n containerOnBack: {\r\n ...StyleSheet.absoluteFillObject,\r\n },\r\n main: {\r\n flex: 1,\r\n zIndex: 0,\r\n overflow: 'hidden',\r\n },\r\n overlay: {\r\n ...StyleSheet.absoluteFillObject,\r\n zIndex: 1000,\r\n },\r\n});\r\n"]}