@react-native-oh-tpl/react-native-gesture-handler 2.12.1-0.0.1

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 (849) hide show
  1. package/DrawerLayout/package.json +6 -0
  2. package/LICENSE +21 -0
  3. package/README.md +62 -0
  4. package/RNGestureHandler.podspec +44 -0
  5. package/Swipeable/package.json +6 -0
  6. package/android/build.gradle +209 -0
  7. package/android/common/src/main/java/com/swmansion/common/GestureHandlerStateManager.kt +5 -0
  8. package/android/fabric/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerComponentsRegistry.java +29 -0
  9. package/android/fabric/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +12 -0
  10. package/android/gradle.properties +19 -0
  11. package/android/noreanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +10 -0
  12. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +50 -0
  13. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +23 -0
  14. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +25 -0
  15. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +16 -0
  16. package/android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +13 -0
  17. package/android/reanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +17 -0
  18. package/android/src/main/AndroidManifest.xml +3 -0
  19. package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +21 -0
  20. package/android/src/main/java/com/swmansion/gesturehandler/core/FlingGestureHandler.kt +100 -0
  21. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +807 -0
  22. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.kt +8 -0
  23. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +671 -0
  24. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerRegistry.kt +8 -0
  25. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureUtils.kt +47 -0
  26. package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +120 -0
  27. package/android/src/main/java/com/swmansion/gesturehandler/core/LongPressGestureHandler.kt +100 -0
  28. package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +11 -0
  29. package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +257 -0
  30. package/android/src/main/java/com/swmansion/gesturehandler/core/OnTouchEventListener.kt +9 -0
  31. package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +322 -0
  32. package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +103 -0
  33. package/android/src/main/java/com/swmansion/gesturehandler/core/PointerEventsConfig.kt +23 -0
  34. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureDetector.kt +125 -0
  35. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +93 -0
  36. package/android/src/main/java/com/swmansion/gesturehandler/core/ScaleGestureDetector.java +558 -0
  37. package/android/src/main/java/com/swmansion/gesturehandler/core/TapGestureHandler.kt +168 -0
  38. package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +10 -0
  39. package/android/src/main/java/com/swmansion/gesturehandler/react/Extensions.kt +16 -0
  40. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +423 -0
  41. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.kt +15 -0
  42. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.kt +75 -0
  43. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +74 -0
  44. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +702 -0
  45. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +100 -0
  46. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +142 -0
  47. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.kt +5 -0
  48. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +78 -0
  49. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.kt +51 -0
  50. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.kt +78 -0
  51. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +69 -0
  52. package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +51 -0
  53. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.kt +30 -0
  54. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.kt +22 -0
  55. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.kt +30 -0
  56. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.kt +33 -0
  57. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.kt +5 -0
  58. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.kt +18 -0
  59. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.kt +42 -0
  60. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.kt +30 -0
  61. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.kt +30 -0
  62. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.kt +30 -0
  63. package/android/src/main/jni/CMakeLists.txt +37 -0
  64. package/android/src/main/jni/cpp-adapter.cpp +44 -0
  65. package/ios/Handlers/RNFlingHandler.h +4 -0
  66. package/ios/Handlers/RNFlingHandler.m +152 -0
  67. package/ios/Handlers/RNForceTouchHandler.h +4 -0
  68. package/ios/Handlers/RNForceTouchHandler.m +175 -0
  69. package/ios/Handlers/RNHoverHandler.h +12 -0
  70. package/ios/Handlers/RNHoverHandler.m +153 -0
  71. package/ios/Handlers/RNLongPressHandler.h +12 -0
  72. package/ios/Handlers/RNLongPressHandler.m +183 -0
  73. package/ios/Handlers/RNManualHandler.h +4 -0
  74. package/ios/Handlers/RNManualHandler.m +88 -0
  75. package/ios/Handlers/RNNativeViewHandler.h +15 -0
  76. package/ios/Handlers/RNNativeViewHandler.mm +193 -0
  77. package/ios/Handlers/RNPanHandler.h +12 -0
  78. package/ios/Handlers/RNPanHandler.m +331 -0
  79. package/ios/Handlers/RNPinchHandler.h +12 -0
  80. package/ios/Handlers/RNPinchHandler.m +95 -0
  81. package/ios/Handlers/RNRotationHandler.h +12 -0
  82. package/ios/Handlers/RNRotationHandler.m +93 -0
  83. package/ios/Handlers/RNTapHandler.h +12 -0
  84. package/ios/Handlers/RNTapHandler.m +265 -0
  85. package/ios/RNGHTouchEventType.h +9 -0
  86. package/ios/RNGestureHandler.h +90 -0
  87. package/ios/RNGestureHandler.m +493 -0
  88. package/ios/RNGestureHandler.xcodeproj/project.pbxproj +690 -0
  89. package/ios/RNGestureHandler.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  90. package/ios/RNGestureHandlerActionType.h +10 -0
  91. package/ios/RNGestureHandlerButton.h +19 -0
  92. package/ios/RNGestureHandlerButton.m +77 -0
  93. package/ios/RNGestureHandlerButtonComponentView.h +17 -0
  94. package/ios/RNGestureHandlerButtonComponentView.mm +64 -0
  95. package/ios/RNGestureHandlerButtonManager.h +5 -0
  96. package/ios/RNGestureHandlerButtonManager.m +34 -0
  97. package/ios/RNGestureHandlerDirection.h +8 -0
  98. package/ios/RNGestureHandlerEvents.h +65 -0
  99. package/ios/RNGestureHandlerEvents.m +260 -0
  100. package/ios/RNGestureHandlerManager.h +35 -0
  101. package/ios/RNGestureHandlerManager.mm +367 -0
  102. package/ios/RNGestureHandlerModule.h +7 -0
  103. package/ios/RNGestureHandlerModule.mm +320 -0
  104. package/ios/RNGestureHandlerPointerTracker.h +25 -0
  105. package/ios/RNGestureHandlerPointerTracker.m +243 -0
  106. package/ios/RNGestureHandlerRegistry.h +21 -0
  107. package/ios/RNGestureHandlerRegistry.m +63 -0
  108. package/ios/RNGestureHandlerRootViewComponentView.mm +21 -0
  109. package/ios/RNGestureHandlerState.h +10 -0
  110. package/ios/RNGestureHandlerStateManager.h +5 -0
  111. package/ios/RNManualActivationRecognizer.h +10 -0
  112. package/ios/RNManualActivationRecognizer.m +88 -0
  113. package/ios/RNRootViewGestureRecognizer.h +17 -0
  114. package/ios/RNRootViewGestureRecognizer.m +106 -0
  115. package/jest-utils/package.json +6 -0
  116. package/jestSetup.js +7 -0
  117. package/lib/commonjs/ActionType.js +15 -0
  118. package/lib/commonjs/ActionType.js.map +1 -0
  119. package/lib/commonjs/Directions.js +15 -0
  120. package/lib/commonjs/Directions.js.map +1 -0
  121. package/lib/commonjs/EnableNewWebImplementation.js +35 -0
  122. package/lib/commonjs/EnableNewWebImplementation.js.map +1 -0
  123. package/lib/commonjs/GestureHandlerRootViewContext.js +15 -0
  124. package/lib/commonjs/GestureHandlerRootViewContext.js.map +1 -0
  125. package/lib/commonjs/PlatformConstants.js +15 -0
  126. package/lib/commonjs/PlatformConstants.js.map +1 -0
  127. package/lib/commonjs/PlatformConstants.web.js +14 -0
  128. package/lib/commonjs/PlatformConstants.web.js.map +1 -0
  129. package/lib/commonjs/RNGestureHandlerModule.js +29 -0
  130. package/lib/commonjs/RNGestureHandlerModule.js.map +1 -0
  131. package/lib/commonjs/RNGestureHandlerModule.macos.js +149 -0
  132. package/lib/commonjs/RNGestureHandlerModule.macos.js.map +1 -0
  133. package/lib/commonjs/RNGestureHandlerModule.web.js +163 -0
  134. package/lib/commonjs/RNGestureHandlerModule.web.js.map +1 -0
  135. package/lib/commonjs/RNGestureHandlerModule.windows.js +158 -0
  136. package/lib/commonjs/RNGestureHandlerModule.windows.js.map +1 -0
  137. package/lib/commonjs/RNRenderer.js +16 -0
  138. package/lib/commonjs/RNRenderer.js.map +1 -0
  139. package/lib/commonjs/RNRenderer.web.js +11 -0
  140. package/lib/commonjs/RNRenderer.web.js.map +1 -0
  141. package/lib/commonjs/State.js +18 -0
  142. package/lib/commonjs/State.js.map +1 -0
  143. package/lib/commonjs/TouchEventType.js +16 -0
  144. package/lib/commonjs/TouchEventType.js.map +1 -0
  145. package/lib/commonjs/components/DrawerLayout.js +566 -0
  146. package/lib/commonjs/components/DrawerLayout.js.map +1 -0
  147. package/lib/commonjs/components/GestureButtons.js +240 -0
  148. package/lib/commonjs/components/GestureButtons.js.map +1 -0
  149. package/lib/commonjs/components/GestureComponents.js +115 -0
  150. package/lib/commonjs/components/GestureComponents.js.map +1 -0
  151. package/lib/commonjs/components/GestureComponents.web.js +52 -0
  152. package/lib/commonjs/components/GestureComponents.web.js.map +1 -0
  153. package/lib/commonjs/components/GestureHandlerButton.js +14 -0
  154. package/lib/commonjs/components/GestureHandlerButton.js.map +1 -0
  155. package/lib/commonjs/components/GestureHandlerButton.web.js +24 -0
  156. package/lib/commonjs/components/GestureHandlerButton.web.js.map +1 -0
  157. package/lib/commonjs/components/GestureHandlerRootView.android.js +31 -0
  158. package/lib/commonjs/components/GestureHandlerRootView.android.js.map +1 -0
  159. package/lib/commonjs/components/GestureHandlerRootView.js +31 -0
  160. package/lib/commonjs/components/GestureHandlerRootView.js.map +1 -0
  161. package/lib/commonjs/components/GestureHandlerRootView.web.js +25 -0
  162. package/lib/commonjs/components/GestureHandlerRootView.web.js.map +1 -0
  163. package/lib/commonjs/components/Swipeable.js +408 -0
  164. package/lib/commonjs/components/Swipeable.js.map +1 -0
  165. package/lib/commonjs/components/gestureHandlerRootHOC.js +40 -0
  166. package/lib/commonjs/components/gestureHandlerRootHOC.js.map +1 -0
  167. package/lib/commonjs/components/touchables/GenericTouchable.js +289 -0
  168. package/lib/commonjs/components/touchables/GenericTouchable.js.map +1 -0
  169. package/lib/commonjs/components/touchables/TouchableHighlight.js +109 -0
  170. package/lib/commonjs/components/touchables/TouchableHighlight.js.map +1 -0
  171. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +100 -0
  172. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +1 -0
  173. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +12 -0
  174. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +1 -0
  175. package/lib/commonjs/components/touchables/TouchableOpacity.js +77 -0
  176. package/lib/commonjs/components/touchables/TouchableOpacity.js.map +1 -0
  177. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +26 -0
  178. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +1 -0
  179. package/lib/commonjs/components/touchables/index.js +40 -0
  180. package/lib/commonjs/components/touchables/index.js.map +1 -0
  181. package/lib/commonjs/getReactNativeVersion.js +22 -0
  182. package/lib/commonjs/getReactNativeVersion.js.map +1 -0
  183. package/lib/commonjs/getReactNativeVersion.web.js +11 -0
  184. package/lib/commonjs/getReactNativeVersion.web.js.map +1 -0
  185. package/lib/commonjs/getShadowNodeFromRef.js +27 -0
  186. package/lib/commonjs/getShadowNodeFromRef.js.map +1 -0
  187. package/lib/commonjs/getShadowNodeFromRef.web.js +15 -0
  188. package/lib/commonjs/getShadowNodeFromRef.web.js.map +1 -0
  189. package/lib/commonjs/ghQueueMicrotask.js +12 -0
  190. package/lib/commonjs/ghQueueMicrotask.js.map +1 -0
  191. package/lib/commonjs/handlers/FlingGestureHandler.js +25 -0
  192. package/lib/commonjs/handlers/FlingGestureHandler.js.map +1 -0
  193. package/lib/commonjs/handlers/ForceTouchGestureHandler.js +49 -0
  194. package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +1 -0
  195. package/lib/commonjs/handlers/LongPressGestureHandler.js +27 -0
  196. package/lib/commonjs/handlers/LongPressGestureHandler.js.map +1 -0
  197. package/lib/commonjs/handlers/NativeViewGestureHandler.js +27 -0
  198. package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +1 -0
  199. package/lib/commonjs/handlers/PanGestureHandler.js +123 -0
  200. package/lib/commonjs/handlers/PanGestureHandler.js.map +1 -0
  201. package/lib/commonjs/handlers/PinchGestureHandler.js +23 -0
  202. package/lib/commonjs/handlers/PinchGestureHandler.js.map +1 -0
  203. package/lib/commonjs/handlers/PressabilityDebugView.js +14 -0
  204. package/lib/commonjs/handlers/PressabilityDebugView.js.map +1 -0
  205. package/lib/commonjs/handlers/PressabilityDebugView.web.js +12 -0
  206. package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +1 -0
  207. package/lib/commonjs/handlers/RotationGestureHandler.js +23 -0
  208. package/lib/commonjs/handlers/RotationGestureHandler.js.map +1 -0
  209. package/lib/commonjs/handlers/TapGestureHandler.js +27 -0
  210. package/lib/commonjs/handlers/TapGestureHandler.js.map +1 -0
  211. package/lib/commonjs/handlers/createHandler.js +464 -0
  212. package/lib/commonjs/handlers/createHandler.js.map +1 -0
  213. package/lib/commonjs/handlers/createNativeWrapper.js +74 -0
  214. package/lib/commonjs/handlers/createNativeWrapper.js.map +1 -0
  215. package/lib/commonjs/handlers/gestureHandlerCommon.js +103 -0
  216. package/lib/commonjs/handlers/gestureHandlerCommon.js.map +1 -0
  217. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +6 -0
  218. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +1 -0
  219. package/lib/commonjs/handlers/gestures/GestureDetector.js +669 -0
  220. package/lib/commonjs/handlers/gestures/GestureDetector.js.map +1 -0
  221. package/lib/commonjs/handlers/gestures/eventReceiver.js +147 -0
  222. package/lib/commonjs/handlers/gestures/eventReceiver.js.map +1 -0
  223. package/lib/commonjs/handlers/gestures/flingGesture.js +34 -0
  224. package/lib/commonjs/handlers/gestures/flingGesture.js.map +1 -0
  225. package/lib/commonjs/handlers/gestures/forceTouchGesture.js +65 -0
  226. package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +1 -0
  227. package/lib/commonjs/handlers/gestures/gesture.js +241 -0
  228. package/lib/commonjs/handlers/gestures/gesture.js.map +1 -0
  229. package/lib/commonjs/handlers/gestures/gestureComposition.js +105 -0
  230. package/lib/commonjs/handlers/gestures/gestureComposition.js.map +1 -0
  231. package/lib/commonjs/handlers/gestures/gestureObjects.js +90 -0
  232. package/lib/commonjs/handlers/gestures/gestureObjects.js.map +1 -0
  233. package/lib/commonjs/handlers/gestures/gestureStateManager.js +65 -0
  234. package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +1 -0
  235. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +32 -0
  236. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +1 -0
  237. package/lib/commonjs/handlers/gestures/hoverGesture.js +74 -0
  238. package/lib/commonjs/handlers/gestures/hoverGesture.js.map +1 -0
  239. package/lib/commonjs/handlers/gestures/longPressGesture.js +35 -0
  240. package/lib/commonjs/handlers/gestures/longPressGesture.js.map +1 -0
  241. package/lib/commonjs/handlers/gestures/manualGesture.js +31 -0
  242. package/lib/commonjs/handlers/gestures/manualGesture.js.map +1 -0
  243. package/lib/commonjs/handlers/gestures/nativeGesture.js +34 -0
  244. package/lib/commonjs/handlers/gestures/nativeGesture.js.map +1 -0
  245. package/lib/commonjs/handlers/gestures/panGesture.js +149 -0
  246. package/lib/commonjs/handlers/gestures/panGesture.js.map +1 -0
  247. package/lib/commonjs/handlers/gestures/pinchGesture.js +45 -0
  248. package/lib/commonjs/handlers/gestures/pinchGesture.js.map +1 -0
  249. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +37 -0
  250. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +1 -0
  251. package/lib/commonjs/handlers/gestures/rotationGesture.js +45 -0
  252. package/lib/commonjs/handlers/gestures/rotationGesture.js.map +1 -0
  253. package/lib/commonjs/handlers/gestures/tapGesture.js +60 -0
  254. package/lib/commonjs/handlers/gestures/tapGesture.js.map +1 -0
  255. package/lib/commonjs/handlers/handlersRegistry.js +67 -0
  256. package/lib/commonjs/handlers/handlersRegistry.js.map +1 -0
  257. package/lib/commonjs/index.js +266 -0
  258. package/lib/commonjs/index.js.map +1 -0
  259. package/lib/commonjs/init.js +32 -0
  260. package/lib/commonjs/init.js.map +1 -0
  261. package/lib/commonjs/jestUtils/index.js +20 -0
  262. package/lib/commonjs/jestUtils/index.js.map +1 -0
  263. package/lib/commonjs/jestUtils/jestUtils.js +375 -0
  264. package/lib/commonjs/jestUtils/jestUtils.js.map +1 -0
  265. package/lib/commonjs/mocks.js +66 -0
  266. package/lib/commonjs/mocks.js.map +1 -0
  267. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js +15 -0
  268. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js.map +1 -0
  269. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js +15 -0
  270. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js.map +1 -0
  271. package/lib/commonjs/typeUtils.js +2 -0
  272. package/lib/commonjs/typeUtils.js.map +1 -0
  273. package/lib/commonjs/utils.js +63 -0
  274. package/lib/commonjs/utils.js.map +1 -0
  275. package/lib/commonjs/web/constants.js +16 -0
  276. package/lib/commonjs/web/constants.js.map +1 -0
  277. package/lib/commonjs/web/detectors/RotationGestureDetector.js +165 -0
  278. package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +1 -0
  279. package/lib/commonjs/web/detectors/ScaleGestureDetector.js +156 -0
  280. package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +1 -0
  281. package/lib/commonjs/web/handlers/FlingGestureHandler.js +167 -0
  282. package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +1 -0
  283. package/lib/commonjs/web/handlers/GestureHandler.js +794 -0
  284. package/lib/commonjs/web/handlers/GestureHandler.js.map +1 -0
  285. package/lib/commonjs/web/handlers/HoverGestureHandler.js +62 -0
  286. package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +1 -0
  287. package/lib/commonjs/web/handlers/LongPressGestureHandler.js +151 -0
  288. package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +1 -0
  289. package/lib/commonjs/web/handlers/ManualGestureHandler.js +61 -0
  290. package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +1 -0
  291. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +178 -0
  292. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +1 -0
  293. package/lib/commonjs/web/handlers/PanGestureHandler.js +448 -0
  294. package/lib/commonjs/web/handlers/PanGestureHandler.js.map +1 -0
  295. package/lib/commonjs/web/handlers/PinchGestureHandler.js +174 -0
  296. package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +1 -0
  297. package/lib/commonjs/web/handlers/RotationGestureHandler.js +186 -0
  298. package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +1 -0
  299. package/lib/commonjs/web/handlers/TapGestureHandler.js +280 -0
  300. package/lib/commonjs/web/handlers/TapGestureHandler.js.map +1 -0
  301. package/lib/commonjs/web/interfaces.js +55 -0
  302. package/lib/commonjs/web/interfaces.js.map +1 -0
  303. package/lib/commonjs/web/tools/CircularBuffer.js +59 -0
  304. package/lib/commonjs/web/tools/CircularBuffer.js.map +1 -0
  305. package/lib/commonjs/web/tools/EventManager.js +127 -0
  306. package/lib/commonjs/web/tools/EventManager.js.map +1 -0
  307. package/lib/commonjs/web/tools/GestureHandlerDelegate.js +6 -0
  308. package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +1 -0
  309. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +349 -0
  310. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +1 -0
  311. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +118 -0
  312. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +1 -0
  313. package/lib/commonjs/web/tools/InteractionManager.js +114 -0
  314. package/lib/commonjs/web/tools/InteractionManager.js.map +1 -0
  315. package/lib/commonjs/web/tools/LeastSquareSolver.js +204 -0
  316. package/lib/commonjs/web/tools/LeastSquareSolver.js.map +1 -0
  317. package/lib/commonjs/web/tools/NodeManager.js +48 -0
  318. package/lib/commonjs/web/tools/NodeManager.js.map +1 -0
  319. package/lib/commonjs/web/tools/PointerEventManager.js +198 -0
  320. package/lib/commonjs/web/tools/PointerEventManager.js.map +1 -0
  321. package/lib/commonjs/web/tools/PointerTracker.js +226 -0
  322. package/lib/commonjs/web/tools/PointerTracker.js.map +1 -0
  323. package/lib/commonjs/web/tools/TouchEventManager.js +138 -0
  324. package/lib/commonjs/web/tools/TouchEventManager.js.map +1 -0
  325. package/lib/commonjs/web/tools/VelocityTracker.js +111 -0
  326. package/lib/commonjs/web/tools/VelocityTracker.js.map +1 -0
  327. package/lib/commonjs/web/utils.js +15 -0
  328. package/lib/commonjs/web/utils.js.map +1 -0
  329. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js +105 -0
  330. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js.map +1 -0
  331. package/lib/commonjs/web_hammer/DraggingGestureHandler.js +53 -0
  332. package/lib/commonjs/web_hammer/DraggingGestureHandler.js.map +1 -0
  333. package/lib/commonjs/web_hammer/Errors.js +16 -0
  334. package/lib/commonjs/web_hammer/Errors.js.map +1 -0
  335. package/lib/commonjs/web_hammer/FlingGestureHandler.js +170 -0
  336. package/lib/commonjs/web_hammer/FlingGestureHandler.js.map +1 -0
  337. package/lib/commonjs/web_hammer/GestureHandler.js +579 -0
  338. package/lib/commonjs/web_hammer/GestureHandler.js.map +1 -0
  339. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js +54 -0
  340. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js.map +1 -0
  341. package/lib/commonjs/web_hammer/LongPressGestureHandler.js +71 -0
  342. package/lib/commonjs/web_hammer/LongPressGestureHandler.js.map +1 -0
  343. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js +66 -0
  344. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js.map +1 -0
  345. package/lib/commonjs/web_hammer/NodeManager.js +46 -0
  346. package/lib/commonjs/web_hammer/NodeManager.js.map +1 -0
  347. package/lib/commonjs/web_hammer/PanGestureHandler.js +208 -0
  348. package/lib/commonjs/web_hammer/PanGestureHandler.js.map +1 -0
  349. package/lib/commonjs/web_hammer/PinchGestureHandler.js +40 -0
  350. package/lib/commonjs/web_hammer/PinchGestureHandler.js.map +1 -0
  351. package/lib/commonjs/web_hammer/PressGestureHandler.js +188 -0
  352. package/lib/commonjs/web_hammer/PressGestureHandler.js.map +1 -0
  353. package/lib/commonjs/web_hammer/RotationGestureHandler.js +44 -0
  354. package/lib/commonjs/web_hammer/RotationGestureHandler.js.map +1 -0
  355. package/lib/commonjs/web_hammer/TapGestureHandler.js +192 -0
  356. package/lib/commonjs/web_hammer/TapGestureHandler.js.map +1 -0
  357. package/lib/commonjs/web_hammer/constants.js +64 -0
  358. package/lib/commonjs/web_hammer/constants.js.map +1 -0
  359. package/lib/commonjs/web_hammer/utils.js +42 -0
  360. package/lib/commonjs/web_hammer/utils.js.map +1 -0
  361. package/lib/module/ActionType.js +7 -0
  362. package/lib/module/ActionType.js.map +1 -0
  363. package/lib/module/Directions.js +7 -0
  364. package/lib/module/Directions.js.map +1 -0
  365. package/lib/module/EnableNewWebImplementation.js +22 -0
  366. package/lib/module/EnableNewWebImplementation.js.map +1 -0
  367. package/lib/module/GestureHandlerRootViewContext.js +3 -0
  368. package/lib/module/GestureHandlerRootViewContext.js.map +1 -0
  369. package/lib/module/PlatformConstants.js +5 -0
  370. package/lib/module/PlatformConstants.js.map +1 -0
  371. package/lib/module/PlatformConstants.web.js +7 -0
  372. package/lib/module/PlatformConstants.web.js.map +1 -0
  373. package/lib/module/RNGestureHandlerModule.js +19 -0
  374. package/lib/module/RNGestureHandlerModule.js.map +1 -0
  375. package/lib/module/RNGestureHandlerModule.macos.js +110 -0
  376. package/lib/module/RNGestureHandlerModule.macos.js.map +1 -0
  377. package/lib/module/RNGestureHandlerModule.web.js +122 -0
  378. package/lib/module/RNGestureHandlerModule.web.js.map +1 -0
  379. package/lib/module/RNGestureHandlerModule.windows.js +118 -0
  380. package/lib/module/RNGestureHandlerModule.windows.js.map +1 -0
  381. package/lib/module/RNRenderer.js +4 -0
  382. package/lib/module/RNRenderer.js.map +1 -0
  383. package/lib/module/RNRenderer.web.js +4 -0
  384. package/lib/module/RNRenderer.web.js.map +1 -0
  385. package/lib/module/State.js +10 -0
  386. package/lib/module/State.js.map +1 -0
  387. package/lib/module/TouchEventType.js +8 -0
  388. package/lib/module/TouchEventType.js.map +1 -0
  389. package/lib/module/components/DrawerLayout.js +551 -0
  390. package/lib/module/components/DrawerLayout.js.map +1 -0
  391. package/lib/module/components/GestureButtons.js +206 -0
  392. package/lib/module/components/GestureButtons.js.map +1 -0
  393. package/lib/module/components/GestureComponents.js +90 -0
  394. package/lib/module/components/GestureComponents.js.map +1 -0
  395. package/lib/module/components/GestureComponents.web.js +28 -0
  396. package/lib/module/components/GestureComponents.web.js.map +1 -0
  397. package/lib/module/components/GestureHandlerButton.js +3 -0
  398. package/lib/module/components/GestureHandlerButton.js.map +1 -0
  399. package/lib/module/components/GestureHandlerButton.web.js +9 -0
  400. package/lib/module/components/GestureHandlerButton.web.js.map +1 -0
  401. package/lib/module/components/GestureHandlerRootView.android.js +14 -0
  402. package/lib/module/components/GestureHandlerRootView.android.js.map +1 -0
  403. package/lib/module/components/GestureHandlerRootView.js +14 -0
  404. package/lib/module/components/GestureHandlerRootView.js.map +1 -0
  405. package/lib/module/components/GestureHandlerRootView.web.js +9 -0
  406. package/lib/module/components/GestureHandlerRootView.web.js.map +1 -0
  407. package/lib/module/components/Swipeable.js +390 -0
  408. package/lib/module/components/Swipeable.js.map +1 -0
  409. package/lib/module/components/gestureHandlerRootHOC.js +22 -0
  410. package/lib/module/components/gestureHandlerRootHOC.js.map +1 -0
  411. package/lib/module/components/touchables/GenericTouchable.js +273 -0
  412. package/lib/module/components/touchables/GenericTouchable.js.map +1 -0
  413. package/lib/module/components/touchables/TouchableHighlight.js +95 -0
  414. package/lib/module/components/touchables/TouchableHighlight.js.map +1 -0
  415. package/lib/module/components/touchables/TouchableNativeFeedback.android.js +84 -0
  416. package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -0
  417. package/lib/module/components/touchables/TouchableNativeFeedback.js +3 -0
  418. package/lib/module/components/touchables/TouchableNativeFeedback.js.map +1 -0
  419. package/lib/module/components/touchables/TouchableOpacity.js +63 -0
  420. package/lib/module/components/touchables/TouchableOpacity.js.map +1 -0
  421. package/lib/module/components/touchables/TouchableWithoutFeedback.js +10 -0
  422. package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -0
  423. package/lib/module/components/touchables/index.js +5 -0
  424. package/lib/module/components/touchables/index.js.map +1 -0
  425. package/lib/module/getReactNativeVersion.js +10 -0
  426. package/lib/module/getReactNativeVersion.js.map +1 -0
  427. package/lib/module/getReactNativeVersion.web.js +4 -0
  428. package/lib/module/getReactNativeVersion.web.js.map +1 -0
  429. package/lib/module/getShadowNodeFromRef.js +20 -0
  430. package/lib/module/getShadowNodeFromRef.js.map +1 -0
  431. package/lib/module/getShadowNodeFromRef.web.js +8 -0
  432. package/lib/module/getShadowNodeFromRef.web.js.map +1 -0
  433. package/lib/module/ghQueueMicrotask.js +5 -0
  434. package/lib/module/ghQueueMicrotask.js.map +1 -0
  435. package/lib/module/handlers/FlingGestureHandler.js +11 -0
  436. package/lib/module/handlers/FlingGestureHandler.js.map +1 -0
  437. package/lib/module/handlers/ForceTouchGestureHandler.js +31 -0
  438. package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -0
  439. package/lib/module/handlers/LongPressGestureHandler.js +13 -0
  440. package/lib/module/handlers/LongPressGestureHandler.js.map +1 -0
  441. package/lib/module/handlers/NativeViewGestureHandler.js +12 -0
  442. package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -0
  443. package/lib/module/handlers/PanGestureHandler.js +107 -0
  444. package/lib/module/handlers/PanGestureHandler.js.map +1 -0
  445. package/lib/module/handlers/PinchGestureHandler.js +10 -0
  446. package/lib/module/handlers/PinchGestureHandler.js.map +1 -0
  447. package/lib/module/handlers/PressabilityDebugView.js +3 -0
  448. package/lib/module/handlers/PressabilityDebugView.js.map +1 -0
  449. package/lib/module/handlers/PressabilityDebugView.web.js +5 -0
  450. package/lib/module/handlers/PressabilityDebugView.web.js.map +1 -0
  451. package/lib/module/handlers/RotationGestureHandler.js +10 -0
  452. package/lib/module/handlers/RotationGestureHandler.js.map +1 -0
  453. package/lib/module/handlers/TapGestureHandler.js +13 -0
  454. package/lib/module/handlers/TapGestureHandler.js.map +1 -0
  455. package/lib/module/handlers/createHandler.js +433 -0
  456. package/lib/module/handlers/createHandler.js.map +1 -0
  457. package/lib/module/handlers/createNativeWrapper.js +62 -0
  458. package/lib/module/handlers/createNativeWrapper.js.map +1 -0
  459. package/lib/module/handlers/gestureHandlerCommon.js +81 -0
  460. package/lib/module/handlers/gestureHandlerCommon.js.map +1 -0
  461. package/lib/module/handlers/gestureHandlerTypesCompat.js +2 -0
  462. package/lib/module/handlers/gestureHandlerTypesCompat.js.map +1 -0
  463. package/lib/module/handlers/gestures/GestureDetector.js +619 -0
  464. package/lib/module/handlers/gestures/GestureDetector.js.map +1 -0
  465. package/lib/module/handlers/gestures/eventReceiver.js +131 -0
  466. package/lib/module/handlers/gestures/eventReceiver.js.map +1 -0
  467. package/lib/module/handlers/gestures/flingGesture.js +24 -0
  468. package/lib/module/handlers/gestures/flingGesture.js.map +1 -0
  469. package/lib/module/handlers/gestures/forceTouchGesture.js +56 -0
  470. package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -0
  471. package/lib/module/handlers/gestures/gesture.js +222 -0
  472. package/lib/module/handlers/gestures/gesture.js.map +1 -0
  473. package/lib/module/handlers/gestures/gestureComposition.js +90 -0
  474. package/lib/module/handlers/gestures/gestureComposition.js.map +1 -0
  475. package/lib/module/handlers/gestures/gestureObjects.js +71 -0
  476. package/lib/module/handlers/gestures/gestureObjects.js.map +1 -0
  477. package/lib/module/handlers/gestures/gestureStateManager.js +54 -0
  478. package/lib/module/handlers/gestures/gestureStateManager.js.map +1 -0
  479. package/lib/module/handlers/gestures/gestureStateManager.web.js +21 -0
  480. package/lib/module/handlers/gestures/gestureStateManager.web.js.map +1 -0
  481. package/lib/module/handlers/gestures/hoverGesture.js +62 -0
  482. package/lib/module/handlers/gestures/hoverGesture.js.map +1 -0
  483. package/lib/module/handlers/gestures/longPressGesture.js +25 -0
  484. package/lib/module/handlers/gestures/longPressGesture.js.map +1 -0
  485. package/lib/module/handlers/gestures/manualGesture.js +22 -0
  486. package/lib/module/handlers/gestures/manualGesture.js.map +1 -0
  487. package/lib/module/handlers/gestures/nativeGesture.js +24 -0
  488. package/lib/module/handlers/gestures/nativeGesture.js.map +1 -0
  489. package/lib/module/handlers/gestures/panGesture.js +140 -0
  490. package/lib/module/handlers/gestures/panGesture.js.map +1 -0
  491. package/lib/module/handlers/gestures/pinchGesture.js +36 -0
  492. package/lib/module/handlers/gestures/pinchGesture.js.map +1 -0
  493. package/lib/module/handlers/gestures/reanimatedWrapper.js +30 -0
  494. package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -0
  495. package/lib/module/handlers/gestures/rotationGesture.js +36 -0
  496. package/lib/module/handlers/gestures/rotationGesture.js.map +1 -0
  497. package/lib/module/handlers/gestures/tapGesture.js +50 -0
  498. package/lib/module/handlers/gestures/tapGesture.js.map +1 -0
  499. package/lib/module/handlers/handlersRegistry.js +44 -0
  500. package/lib/module/handlers/handlersRegistry.js.map +1 -0
  501. package/lib/module/index.js +25 -0
  502. package/lib/module/index.js.map +1 -0
  503. package/lib/module/init.js +16 -0
  504. package/lib/module/init.js.map +1 -0
  505. package/lib/module/jestUtils/index.js +2 -0
  506. package/lib/module/jestUtils/index.js.map +1 -0
  507. package/lib/module/jestUtils/jestUtils.js +350 -0
  508. package/lib/module/jestUtils/jestUtils.js.map +1 -0
  509. package/lib/module/mocks.js +56 -0
  510. package/lib/module/mocks.js.map +1 -0
  511. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js +3 -0
  512. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js.map +1 -0
  513. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js +3 -0
  514. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js.map +1 -0
  515. package/lib/module/typeUtils.js +2 -0
  516. package/lib/module/typeUtils.js.map +1 -0
  517. package/lib/module/utils.js +44 -0
  518. package/lib/module/utils.js.map +1 -0
  519. package/lib/module/web/constants.js +8 -0
  520. package/lib/module/web/constants.js.map +1 -0
  521. package/lib/module/web/detectors/RotationGestureDetector.js +155 -0
  522. package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -0
  523. package/lib/module/web/detectors/ScaleGestureDetector.js +145 -0
  524. package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -0
  525. package/lib/module/web/handlers/FlingGestureHandler.js +152 -0
  526. package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -0
  527. package/lib/module/web/handlers/GestureHandler.js +776 -0
  528. package/lib/module/web/handlers/GestureHandler.js.map +1 -0
  529. package/lib/module/web/handlers/HoverGestureHandler.js +47 -0
  530. package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -0
  531. package/lib/module/web/handlers/LongPressGestureHandler.js +136 -0
  532. package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -0
  533. package/lib/module/web/handlers/ManualGestureHandler.js +49 -0
  534. package/lib/module/web/handlers/ManualGestureHandler.js.map +1 -0
  535. package/lib/module/web/handlers/NativeViewGestureHandler.js +163 -0
  536. package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -0
  537. package/lib/module/web/handlers/PanGestureHandler.js +433 -0
  538. package/lib/module/web/handlers/PanGestureHandler.js.map +1 -0
  539. package/lib/module/web/handlers/PinchGestureHandler.js +159 -0
  540. package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -0
  541. package/lib/module/web/handlers/RotationGestureHandler.js +171 -0
  542. package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -0
  543. package/lib/module/web/handlers/TapGestureHandler.js +265 -0
  544. package/lib/module/web/handlers/TapGestureHandler.js.map +1 -0
  545. package/lib/module/web/interfaces.js +45 -0
  546. package/lib/module/web/interfaces.js.map +1 -0
  547. package/lib/module/web/tools/CircularBuffer.js +50 -0
  548. package/lib/module/web/tools/CircularBuffer.js.map +1 -0
  549. package/lib/module/web/tools/EventManager.js +118 -0
  550. package/lib/module/web/tools/EventManager.js.map +1 -0
  551. package/lib/module/web/tools/GestureHandlerDelegate.js +2 -0
  552. package/lib/module/web/tools/GestureHandlerDelegate.js.map +1 -0
  553. package/lib/module/web/tools/GestureHandlerOrchestrator.js +335 -0
  554. package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -0
  555. package/lib/module/web/tools/GestureHandlerWebDelegate.js +102 -0
  556. package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -0
  557. package/lib/module/web/tools/InteractionManager.js +105 -0
  558. package/lib/module/web/tools/InteractionManager.js.map +1 -0
  559. package/lib/module/web/tools/LeastSquareSolver.js +195 -0
  560. package/lib/module/web/tools/LeastSquareSolver.js.map +1 -0
  561. package/lib/module/web/tools/NodeManager.js +39 -0
  562. package/lib/module/web/tools/NodeManager.js.map +1 -0
  563. package/lib/module/web/tools/PointerEventManager.js +184 -0
  564. package/lib/module/web/tools/PointerEventManager.js.map +1 -0
  565. package/lib/module/web/tools/PointerTracker.js +213 -0
  566. package/lib/module/web/tools/PointerTracker.js.map +1 -0
  567. package/lib/module/web/tools/TouchEventManager.js +124 -0
  568. package/lib/module/web/tools/TouchEventManager.js.map +1 -0
  569. package/lib/module/web/tools/VelocityTracker.js +98 -0
  570. package/lib/module/web/tools/VelocityTracker.js.map +1 -0
  571. package/lib/module/web/utils.js +8 -0
  572. package/lib/module/web/utils.js.map +1 -0
  573. package/lib/module/web_hammer/DiscreteGestureHandler.js +94 -0
  574. package/lib/module/web_hammer/DiscreteGestureHandler.js.map +1 -0
  575. package/lib/module/web_hammer/DraggingGestureHandler.js +40 -0
  576. package/lib/module/web_hammer/DraggingGestureHandler.js.map +1 -0
  577. package/lib/module/web_hammer/Errors.js +7 -0
  578. package/lib/module/web_hammer/Errors.js.map +1 -0
  579. package/lib/module/web_hammer/FlingGestureHandler.js +156 -0
  580. package/lib/module/web_hammer/FlingGestureHandler.js.map +1 -0
  581. package/lib/module/web_hammer/GestureHandler.js +563 -0
  582. package/lib/module/web_hammer/GestureHandler.js.map +1 -0
  583. package/lib/module/web_hammer/IndiscreteGestureHandler.js +44 -0
  584. package/lib/module/web_hammer/IndiscreteGestureHandler.js.map +1 -0
  585. package/lib/module/web_hammer/LongPressGestureHandler.js +58 -0
  586. package/lib/module/web_hammer/LongPressGestureHandler.js.map +1 -0
  587. package/lib/module/web_hammer/NativeViewGestureHandler.js +49 -0
  588. package/lib/module/web_hammer/NativeViewGestureHandler.js.map +1 -0
  589. package/lib/module/web_hammer/NodeManager.js +33 -0
  590. package/lib/module/web_hammer/NodeManager.js.map +1 -0
  591. package/lib/module/web_hammer/PanGestureHandler.js +194 -0
  592. package/lib/module/web_hammer/PanGestureHandler.js.map +1 -0
  593. package/lib/module/web_hammer/PinchGestureHandler.js +29 -0
  594. package/lib/module/web_hammer/PinchGestureHandler.js.map +1 -0
  595. package/lib/module/web_hammer/PressGestureHandler.js +174 -0
  596. package/lib/module/web_hammer/PressGestureHandler.js.map +1 -0
  597. package/lib/module/web_hammer/RotationGestureHandler.js +32 -0
  598. package/lib/module/web_hammer/RotationGestureHandler.js.map +1 -0
  599. package/lib/module/web_hammer/TapGestureHandler.js +180 -0
  600. package/lib/module/web_hammer/TapGestureHandler.js.map +1 -0
  601. package/lib/module/web_hammer/constants.js +43 -0
  602. package/lib/module/web_hammer/constants.js.map +1 -0
  603. package/lib/module/web_hammer/utils.js +19 -0
  604. package/lib/module/web_hammer/utils.js.map +1 -0
  605. package/lib/typescript/ActionType.d.ts +7 -0
  606. package/lib/typescript/Directions.d.ts +7 -0
  607. package/lib/typescript/EnableNewWebImplementation.d.ts +3 -0
  608. package/lib/typescript/GestureHandlerRootViewContext.d.ts +3 -0
  609. package/lib/typescript/PlatformConstants.d.ts +5 -0
  610. package/lib/typescript/PlatformConstants.web.d.ts +4 -0
  611. package/lib/typescript/RNGestureHandlerModule.d.ts +13 -0
  612. package/lib/typescript/RNGestureHandlerModule.macos.d.ts +47 -0
  613. package/lib/typescript/RNGestureHandlerModule.web.d.ts +50 -0
  614. package/lib/typescript/RNGestureHandlerModule.windows.d.ts +48 -0
  615. package/lib/typescript/RNRenderer.d.ts +1 -0
  616. package/lib/typescript/RNRenderer.web.d.ts +3 -0
  617. package/lib/typescript/State.d.ts +9 -0
  618. package/lib/typescript/TouchEventType.d.ts +8 -0
  619. package/lib/typescript/components/DrawerLayout.d.ts +148 -0
  620. package/lib/typescript/components/GestureButtons.d.ts +121 -0
  621. package/lib/typescript/components/GestureComponents.d.ts +22 -0
  622. package/lib/typescript/components/GestureComponents.web.d.ts +8 -0
  623. package/lib/typescript/components/GestureHandlerButton.d.ts +4 -0
  624. package/lib/typescript/components/GestureHandlerButton.web.d.ts +4 -0
  625. package/lib/typescript/components/GestureHandlerRootView.android.d.ts +6 -0
  626. package/lib/typescript/components/GestureHandlerRootView.d.ts +6 -0
  627. package/lib/typescript/components/GestureHandlerRootView.web.d.ts +6 -0
  628. package/lib/typescript/components/Swipeable.d.ts +178 -0
  629. package/lib/typescript/components/gestureHandlerRootHOC.d.ts +3 -0
  630. package/lib/typescript/components/touchables/GenericTouchable.d.ts +68 -0
  631. package/lib/typescript/components/touchables/TouchableHighlight.d.ts +36 -0
  632. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +45 -0
  633. package/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts +2 -0
  634. package/lib/typescript/components/touchables/TouchableOpacity.d.ts +25 -0
  635. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +7 -0
  636. package/lib/typescript/components/touchables/index.d.ts +7 -0
  637. package/lib/typescript/getReactNativeVersion.d.ts +4 -0
  638. package/lib/typescript/getReactNativeVersion.web.d.ts +1 -0
  639. package/lib/typescript/getShadowNodeFromRef.d.ts +1 -0
  640. package/lib/typescript/getShadowNodeFromRef.web.d.ts +1 -0
  641. package/lib/typescript/ghQueueMicrotask.d.ts +1 -0
  642. package/lib/typescript/handlers/FlingGestureHandler.d.ts +34 -0
  643. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +44 -0
  644. package/lib/typescript/handlers/LongPressGestureHandler.d.ts +56 -0
  645. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +28 -0
  646. package/lib/typescript/handlers/PanGestureHandler.d.ts +139 -0
  647. package/lib/typescript/handlers/PinchGestureHandler.d.ts +29 -0
  648. package/lib/typescript/handlers/PressabilityDebugView.d.ts +1 -0
  649. package/lib/typescript/handlers/PressabilityDebugView.web.d.ts +1 -0
  650. package/lib/typescript/handlers/RotationGestureHandler.d.ts +29 -0
  651. package/lib/typescript/handlers/TapGestureHandler.d.ts +57 -0
  652. package/lib/typescript/handlers/createHandler.d.ts +11 -0
  653. package/lib/typescript/handlers/createNativeWrapper.d.ts +3 -0
  654. package/lib/typescript/handlers/gestureHandlerCommon.d.ts +68 -0
  655. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +42 -0
  656. package/lib/typescript/handlers/gestures/GestureDetector.d.ts +19 -0
  657. package/lib/typescript/handlers/gestures/eventReceiver.d.ts +4 -0
  658. package/lib/typescript/handlers/gestures/flingGesture.d.ts +9 -0
  659. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +15 -0
  660. package/lib/typescript/handlers/gestures/gesture.d.ts +110 -0
  661. package/lib/typescript/handlers/gestures/gestureComposition.d.ts +21 -0
  662. package/lib/typescript/handlers/gestures/gestureObjects.d.ts +41 -0
  663. package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +9 -0
  664. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +4 -0
  665. package/lib/typescript/handlers/gestures/hoverGesture.d.ts +32 -0
  666. package/lib/typescript/handlers/gestures/longPressGesture.d.ts +9 -0
  667. package/lib/typescript/handlers/gestures/manualGesture.d.ts +7 -0
  668. package/lib/typescript/handlers/gestures/nativeGesture.d.ts +9 -0
  669. package/lib/typescript/handlers/gestures/panGesture.d.ts +26 -0
  670. package/lib/typescript/handlers/gestures/pinchGesture.d.ts +11 -0
  671. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +14 -0
  672. package/lib/typescript/handlers/gestures/rotationGesture.d.ts +12 -0
  673. package/lib/typescript/handlers/gestures/tapGesture.d.ts +14 -0
  674. package/lib/typescript/handlers/handlersRegistry.d.ts +14 -0
  675. package/lib/typescript/index.d.ts +52 -0
  676. package/lib/typescript/init.d.ts +2 -0
  677. package/lib/typescript/jestUtils/index.d.ts +1 -0
  678. package/lib/typescript/jestUtils/jestUtils.d.ts +28 -0
  679. package/lib/typescript/mocks.d.ts +44 -0
  680. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +14 -0
  681. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +6 -0
  682. package/lib/typescript/typeUtils.d.ts +1 -0
  683. package/lib/typescript/utils.d.ts +8 -0
  684. package/lib/typescript/web/constants.d.ts +7 -0
  685. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +30 -0
  686. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +29 -0
  687. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +27 -0
  688. package/lib/typescript/web/handlers/GestureHandler.d.ts +90 -0
  689. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +10 -0
  690. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +26 -0
  691. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +12 -0
  692. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +24 -0
  693. package/lib/typescript/web/handlers/PanGestureHandler.d.ts +55 -0
  694. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +28 -0
  695. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +29 -0
  696. package/lib/typescript/web/handlers/TapGestureHandler.d.ts +39 -0
  697. package/lib/typescript/web/interfaces.d.ts +141 -0
  698. package/lib/typescript/web/tools/CircularBuffer.d.ts +11 -0
  699. package/lib/typescript/web/tools/EventManager.d.ts +34 -0
  700. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +22 -0
  701. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +29 -0
  702. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +21 -0
  703. package/lib/typescript/web/tools/InteractionManager.d.ts +17 -0
  704. package/lib/typescript/web/tools/LeastSquareSolver.d.ts +12 -0
  705. package/lib/typescript/web/tools/NodeManager.d.ts +11 -0
  706. package/lib/typescript/web/tools/PointerEventManager.d.ts +8 -0
  707. package/lib/typescript/web/tools/PointerTracker.d.ts +53 -0
  708. package/lib/typescript/web/tools/TouchEventManager.d.ts +6 -0
  709. package/lib/typescript/web/tools/VelocityTracker.d.ts +13 -0
  710. package/lib/typescript/web/utils.d.ts +4 -0
  711. package/lib/typescript/web_hammer/DiscreteGestureHandler.d.ts +20 -0
  712. package/lib/typescript/web_hammer/DraggingGestureHandler.d.ts +15 -0
  713. package/lib/typescript/web_hammer/Errors.d.ts +3 -0
  714. package/lib/typescript/web_hammer/FlingGestureHandler.d.ts +43 -0
  715. package/lib/typescript/web_hammer/GestureHandler.d.ts +145 -0
  716. package/lib/typescript/web_hammer/IndiscreteGestureHandler.d.ts +40 -0
  717. package/lib/typescript/web_hammer/LongPressGestureHandler.d.ts +38 -0
  718. package/lib/typescript/web_hammer/NativeViewGestureHandler.d.ts +7 -0
  719. package/lib/typescript/web_hammer/NodeManager.d.ts +8 -0
  720. package/lib/typescript/web_hammer/PanGestureHandler.d.ts +56 -0
  721. package/lib/typescript/web_hammer/PinchGestureHandler.d.ts +13 -0
  722. package/lib/typescript/web_hammer/PressGestureHandler.d.ts +83 -0
  723. package/lib/typescript/web_hammer/RotationGestureHandler.d.ts +13 -0
  724. package/lib/typescript/web_hammer/TapGestureHandler.d.ts +57 -0
  725. package/lib/typescript/web_hammer/constants.d.ts +39 -0
  726. package/lib/typescript/web_hammer/utils.d.ts +9 -0
  727. package/package.json +156 -0
  728. package/src/ActionType.ts +9 -0
  729. package/src/Directions.ts +9 -0
  730. package/src/EnableNewWebImplementation.ts +35 -0
  731. package/src/GestureHandlerRootViewContext.ts +3 -0
  732. package/src/PlatformConstants.ts +8 -0
  733. package/src/PlatformConstants.web.ts +5 -0
  734. package/src/RNGestureHandlerModule.macos.ts +133 -0
  735. package/src/RNGestureHandlerModule.ts +50 -0
  736. package/src/RNGestureHandlerModule.web.ts +146 -0
  737. package/src/RNGestureHandlerModule.windows.ts +144 -0
  738. package/src/RNRenderer.ts +3 -0
  739. package/src/RNRenderer.web.ts +3 -0
  740. package/src/State.ts +13 -0
  741. package/src/TouchEventType.ts +10 -0
  742. package/src/components/DrawerLayout.tsx +743 -0
  743. package/src/components/GestureButtons.tsx +332 -0
  744. package/src/components/GestureComponents.tsx +148 -0
  745. package/src/components/GestureComponents.web.tsx +41 -0
  746. package/src/components/GestureHandlerButton.tsx +5 -0
  747. package/src/components/GestureHandlerButton.web.tsx +6 -0
  748. package/src/components/GestureHandlerRootView.android.tsx +24 -0
  749. package/src/components/GestureHandlerRootView.tsx +23 -0
  750. package/src/components/GestureHandlerRootView.web.tsx +17 -0
  751. package/src/components/Swipeable.tsx +584 -0
  752. package/src/components/gestureHandlerRootHOC.tsx +32 -0
  753. package/src/components/touchables/GenericTouchable.tsx +301 -0
  754. package/src/components/touchables/TouchableHighlight.tsx +115 -0
  755. package/src/components/touchables/TouchableNativeFeedback.android.tsx +91 -0
  756. package/src/components/touchables/TouchableNativeFeedback.tsx +3 -0
  757. package/src/components/touchables/TouchableOpacity.tsx +75 -0
  758. package/src/components/touchables/TouchableWithoutFeedback.tsx +14 -0
  759. package/src/components/touchables/index.ts +7 -0
  760. package/src/getReactNativeVersion.ts +11 -0
  761. package/src/getReactNativeVersion.web.ts +3 -0
  762. package/src/getShadowNodeFromRef.ts +22 -0
  763. package/src/getShadowNodeFromRef.web.ts +7 -0
  764. package/src/ghQueueMicrotask.ts +5 -0
  765. package/src/handlers/FlingGestureHandler.ts +59 -0
  766. package/src/handlers/ForceTouchGestureHandler.ts +90 -0
  767. package/src/handlers/LongPressGestureHandler.ts +88 -0
  768. package/src/handlers/NativeViewGestureHandler.ts +55 -0
  769. package/src/handlers/PanGestureHandler.ts +325 -0
  770. package/src/handlers/PinchGestureHandler.ts +48 -0
  771. package/src/handlers/PressabilityDebugView.tsx +2 -0
  772. package/src/handlers/PressabilityDebugView.web.tsx +4 -0
  773. package/src/handlers/RotationGestureHandler.ts +48 -0
  774. package/src/handlers/TapGestureHandler.ts +94 -0
  775. package/src/handlers/createHandler.tsx +533 -0
  776. package/src/handlers/createNativeWrapper.tsx +80 -0
  777. package/src/handlers/gestureHandlerCommon.ts +250 -0
  778. package/src/handlers/gestureHandlerTypesCompat.ts +106 -0
  779. package/src/handlers/gestures/GestureDetector.tsx +822 -0
  780. package/src/handlers/gestures/eventReceiver.ts +155 -0
  781. package/src/handlers/gestures/flingGesture.ts +27 -0
  782. package/src/handlers/gestures/forceTouchGesture.ts +74 -0
  783. package/src/handlers/gestures/gesture.ts +349 -0
  784. package/src/handlers/gestures/gestureComposition.ts +122 -0
  785. package/src/handlers/gestures/gestureObjects.ts +84 -0
  786. package/src/handlers/gestures/gestureStateManager.ts +62 -0
  787. package/src/handlers/gestures/gestureStateManager.web.ts +24 -0
  788. package/src/handlers/gestures/hoverGesture.ts +83 -0
  789. package/src/handlers/gestures/longPressGesture.ts +28 -0
  790. package/src/handlers/gestures/manualGesture.ts +31 -0
  791. package/src/handlers/gestures/nativeGesture.ts +27 -0
  792. package/src/handlers/gestures/panGesture.ts +152 -0
  793. package/src/handlers/gestures/pinchGesture.ts +51 -0
  794. package/src/handlers/gestures/reanimatedWrapper.ts +56 -0
  795. package/src/handlers/gestures/rotationGesture.ts +51 -0
  796. package/src/handlers/gestures/tapGesture.ts +53 -0
  797. package/src/handlers/handlersRegistry.ts +60 -0
  798. package/src/index.ts +174 -0
  799. package/src/init.ts +18 -0
  800. package/src/jestUtils/index.ts +1 -0
  801. package/src/jestUtils/jestUtils.ts +505 -0
  802. package/src/mocks.ts +67 -0
  803. package/src/specs/RNGestureHandlerButtonNativeComponent.ts +18 -0
  804. package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +6 -0
  805. package/src/typeUtils.ts +1 -0
  806. package/src/utils.ts +54 -0
  807. package/src/web/constants.ts +8 -0
  808. package/src/web/detectors/RotationGestureDetector.ts +168 -0
  809. package/src/web/detectors/ScaleGestureDetector.ts +172 -0
  810. package/src/web/handlers/FlingGestureHandler.ts +161 -0
  811. package/src/web/handlers/GestureHandler.ts +849 -0
  812. package/src/web/handlers/HoverGestureHandler.ts +43 -0
  813. package/src/web/handlers/LongPressGestureHandler.ts +125 -0
  814. package/src/web/handlers/ManualGestureHandler.ts +43 -0
  815. package/src/web/handlers/NativeViewGestureHandler.ts +167 -0
  816. package/src/web/handlers/PanGestureHandler.ts +485 -0
  817. package/src/web/handlers/PinchGestureHandler.ts +158 -0
  818. package/src/web/handlers/RotationGestureHandler.ts +172 -0
  819. package/src/web/handlers/TapGestureHandler.ts +273 -0
  820. package/src/web/interfaces.ts +167 -0
  821. package/src/web/tools/CircularBuffer.ts +42 -0
  822. package/src/web/tools/EventManager.ts +104 -0
  823. package/src/web/tools/GestureHandlerDelegate.ts +23 -0
  824. package/src/web/tools/GestureHandlerOrchestrator.ts +389 -0
  825. package/src/web/tools/GestureHandlerWebDelegate.ts +115 -0
  826. package/src/web/tools/InteractionManager.ts +130 -0
  827. package/src/web/tools/LeastSquareSolver.ts +182 -0
  828. package/src/web/tools/NodeManager.ts +43 -0
  829. package/src/web/tools/PointerEventManager.ts +202 -0
  830. package/src/web/tools/PointerTracker.ts +240 -0
  831. package/src/web/tools/TouchEventManager.ts +167 -0
  832. package/src/web/tools/VelocityTracker.ts +98 -0
  833. package/src/web/utils.ts +8 -0
  834. package/src/web_hammer/DiscreteGestureHandler.ts +82 -0
  835. package/src/web_hammer/DraggingGestureHandler.ts +34 -0
  836. package/src/web_hammer/Errors.ts +7 -0
  837. package/src/web_hammer/FlingGestureHandler.ts +134 -0
  838. package/src/web_hammer/GestureHandler.ts +599 -0
  839. package/src/web_hammer/IndiscreteGestureHandler.ts +33 -0
  840. package/src/web_hammer/LongPressGestureHandler.ts +56 -0
  841. package/src/web_hammer/NativeViewGestureHandler.ts +47 -0
  842. package/src/web_hammer/NodeManager.ts +42 -0
  843. package/src/web_hammer/PanGestureHandler.ts +226 -0
  844. package/src/web_hammer/PinchGestureHandler.ts +25 -0
  845. package/src/web_hammer/PressGestureHandler.ts +167 -0
  846. package/src/web_hammer/RotationGestureHandler.ts +25 -0
  847. package/src/web_hammer/TapGestureHandler.ts +172 -0
  848. package/src/web_hammer/constants.ts +48 -0
  849. package/src/web_hammer/utils.ts +24 -0
@@ -0,0 +1,566 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var React = _interopRequireWildcard(require("react"));
9
+
10
+ var _invariant = _interopRequireDefault(require("invariant"));
11
+
12
+ var _reactNative = require("react-native");
13
+
14
+ var _PanGestureHandler = require("../handlers/PanGestureHandler");
15
+
16
+ var _TapGestureHandler = require("../handlers/TapGestureHandler");
17
+
18
+ var _State = require("../State");
19
+
20
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
+
22
+ function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
23
+
24
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
25
+
26
+ 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; }
27
+
28
+ const DRAG_TOSS = 0.05;
29
+ const IDLE = 'Idle';
30
+ const DRAGGING = 'Dragging';
31
+ const SETTLING = 'Settling';
32
+
33
+ class DrawerLayout extends React.Component {
34
+ constructor(_props) {
35
+ super(_props);
36
+
37
+ _defineProperty(this, "openValue", void 0);
38
+
39
+ _defineProperty(this, "onGestureEvent", void 0);
40
+
41
+ _defineProperty(this, "accessibilityIsModalView", /*#__PURE__*/React.createRef());
42
+
43
+ _defineProperty(this, "pointerEventsView", /*#__PURE__*/React.createRef());
44
+
45
+ _defineProperty(this, "panGestureHandler", /*#__PURE__*/React.createRef());
46
+
47
+ _defineProperty(this, "drawerShown", false);
48
+
49
+ _defineProperty(this, "updateAnimatedEvent", (props, state) => {
50
+ // Event definition is based on
51
+ const {
52
+ drawerPosition,
53
+ drawerWidth,
54
+ drawerType
55
+ } = props;
56
+ const {
57
+ dragX: dragXValue,
58
+ touchX: touchXValue,
59
+ drawerTranslation,
60
+ containerWidth
61
+ } = state;
62
+ let dragX = dragXValue;
63
+ let touchX = touchXValue;
64
+
65
+ if (drawerPosition !== 'left') {
66
+ // Most of the code is written in a way to handle left-side drawer. In
67
+ // order to handle right-side drawer the only thing we need to do is to
68
+ // reverse events coming from gesture handler in a way they emulate
69
+ // left-side drawer gestures. E.g. dragX is simply -dragX, and touchX is
70
+ // calulcated by subtracing real touchX from the width of the container
71
+ // (such that when touch happens at the right edge the value is simply 0)
72
+ dragX = _reactNative.Animated.multiply(new _reactNative.Animated.Value(-1), dragXValue); // TODO(TS): (for all "as" in this file) make sure we can map this
73
+
74
+ touchX = _reactNative.Animated.add(new _reactNative.Animated.Value(containerWidth), _reactNative.Animated.multiply(new _reactNative.Animated.Value(-1), touchXValue)); // TODO(TS): make sure we can map this;
75
+
76
+ touchXValue.setValue(containerWidth);
77
+ } else {
78
+ touchXValue.setValue(0);
79
+ } // While closing the drawer when user starts gesture outside of its area (in greyed
80
+ // out part of the window), we want the drawer to follow only once finger reaches the
81
+ // edge of the drawer.
82
+ // E.g. on the diagram below drawer is illustrate by X signs and the greyed out area by
83
+ // dots. The touch gesture starts at '*' and moves left, touch path is indicated by
84
+ // an arrow pointing left
85
+ // 1) +---------------+ 2) +---------------+ 3) +---------------+ 4) +---------------+
86
+ // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
87
+ // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
88
+ // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
89
+ // |XXXXXXXX|......| |XXXXXXXX|.<-*..| |XXXXXXXX|<--*..| |XXXXX|<-----*..|
90
+ // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
91
+ // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
92
+ // |XXXXXXXX|......| |XXXXXXXX|......| |XXXXXXXX|......| |XXXXX|.........|
93
+ // +---------------+ +---------------+ +---------------+ +---------------+
94
+ //
95
+ // For the above to work properly we define animated value that will keep
96
+ // start position of the gesture. Then we use that value to calculate how
97
+ // much we need to subtract from the dragX. If the gesture started on the
98
+ // greyed out area we take the distance from the edge of the drawer to the
99
+ // start position. Otherwise we don't subtract at all and the drawer be
100
+ // pulled back as soon as you start the pan.
101
+ //
102
+ // This is used only when drawerType is "front"
103
+ //
104
+
105
+
106
+ let translationX = dragX;
107
+
108
+ if (drawerType === 'front') {
109
+ const startPositionX = _reactNative.Animated.add(touchX, _reactNative.Animated.multiply(new _reactNative.Animated.Value(-1), dragX));
110
+
111
+ const dragOffsetFromOnStartPosition = startPositionX.interpolate({
112
+ inputRange: [drawerWidth - 1, drawerWidth, drawerWidth + 1],
113
+ outputRange: [0, 0, 1]
114
+ });
115
+ translationX = _reactNative.Animated.add(dragX, dragOffsetFromOnStartPosition); // TODO: as above
116
+ }
117
+
118
+ this.openValue = _reactNative.Animated.add(translationX, drawerTranslation).interpolate({
119
+ inputRange: [0, drawerWidth],
120
+ outputRange: [0, 1],
121
+ extrapolate: 'clamp'
122
+ });
123
+ const gestureOptions = {
124
+ useNativeDriver: props.useNativeAnimations
125
+ };
126
+
127
+ if (this.props.onDrawerSlide) {
128
+ gestureOptions.listener = ev => {
129
+ var _this$props$onDrawerS, _this$props;
130
+
131
+ const translationX = Math.floor(Math.abs(ev.nativeEvent.translationX));
132
+ const position = translationX / this.state.containerWidth;
133
+ (_this$props$onDrawerS = (_this$props = this.props).onDrawerSlide) === null || _this$props$onDrawerS === void 0 ? void 0 : _this$props$onDrawerS.call(_this$props, position);
134
+ };
135
+ }
136
+
137
+ this.onGestureEvent = _reactNative.Animated.event([{
138
+ nativeEvent: {
139
+ translationX: dragXValue,
140
+ x: touchXValue
141
+ }
142
+ }], gestureOptions);
143
+ });
144
+
145
+ _defineProperty(this, "handleContainerLayout", ({
146
+ nativeEvent
147
+ }) => {
148
+ this.setState({
149
+ containerWidth: nativeEvent.layout.width
150
+ });
151
+ });
152
+
153
+ _defineProperty(this, "emitStateChanged", (newState, drawerWillShow) => {
154
+ var _this$props$onDrawerS2, _this$props2;
155
+
156
+ (_this$props$onDrawerS2 = (_this$props2 = this.props).onDrawerStateChanged) === null || _this$props$onDrawerS2 === void 0 ? void 0 : _this$props$onDrawerS2.call(_this$props2, newState, drawerWillShow);
157
+ });
158
+
159
+ _defineProperty(this, "openingHandlerStateChange", ({
160
+ nativeEvent
161
+ }) => {
162
+ if (nativeEvent.oldState === _State.State.ACTIVE) {
163
+ this.handleRelease({
164
+ nativeEvent
165
+ });
166
+ } else if (nativeEvent.state === _State.State.ACTIVE) {
167
+ this.emitStateChanged(DRAGGING, false);
168
+ this.setState({
169
+ drawerState: DRAGGING
170
+ });
171
+
172
+ if (this.props.keyboardDismissMode === 'on-drag') {
173
+ _reactNative.Keyboard.dismiss();
174
+ }
175
+
176
+ if (this.props.hideStatusBar) {
177
+ _reactNative.StatusBar.setHidden(true, this.props.statusBarAnimation || 'slide');
178
+ }
179
+ }
180
+ });
181
+
182
+ _defineProperty(this, "onTapHandlerStateChange", ({
183
+ nativeEvent
184
+ }) => {
185
+ if (this.drawerShown && nativeEvent.oldState === _State.State.ACTIVE && this.props.drawerLockMode !== 'locked-open') {
186
+ this.closeDrawer();
187
+ }
188
+ });
189
+
190
+ _defineProperty(this, "handleRelease", ({
191
+ nativeEvent
192
+ }) => {
193
+ const {
194
+ drawerWidth,
195
+ drawerPosition,
196
+ drawerType
197
+ } = this.props;
198
+ const {
199
+ containerWidth
200
+ } = this.state;
201
+ let {
202
+ translationX: dragX,
203
+ velocityX,
204
+ x: touchX
205
+ } = nativeEvent;
206
+
207
+ if (drawerPosition !== 'left') {
208
+ // See description in _updateAnimatedEvent about why events are flipped
209
+ // for right-side drawer
210
+ dragX = -dragX;
211
+ touchX = containerWidth - touchX;
212
+ velocityX = -velocityX;
213
+ }
214
+
215
+ const gestureStartX = touchX - dragX;
216
+ let dragOffsetBasedOnStart = 0;
217
+
218
+ if (drawerType === 'front') {
219
+ dragOffsetBasedOnStart = gestureStartX > drawerWidth ? gestureStartX - drawerWidth : 0;
220
+ }
221
+
222
+ const startOffsetX = dragX + dragOffsetBasedOnStart + (this.drawerShown ? drawerWidth : 0);
223
+ const projOffsetX = startOffsetX + DRAG_TOSS * velocityX;
224
+ const shouldOpen = projOffsetX > drawerWidth / 2;
225
+
226
+ if (shouldOpen) {
227
+ this.animateDrawer(startOffsetX, drawerWidth, velocityX);
228
+ } else {
229
+ this.animateDrawer(startOffsetX, 0, velocityX);
230
+ }
231
+ });
232
+
233
+ _defineProperty(this, "updateShowing", showing => {
234
+ var _this$accessibilityIs, _this$pointerEventsVi, _this$panGestureHandl;
235
+
236
+ this.drawerShown = showing;
237
+ (_this$accessibilityIs = this.accessibilityIsModalView.current) === null || _this$accessibilityIs === void 0 ? void 0 : _this$accessibilityIs.setNativeProps({
238
+ accessibilityViewIsModal: showing
239
+ });
240
+ (_this$pointerEventsVi = this.pointerEventsView.current) === null || _this$pointerEventsVi === void 0 ? void 0 : _this$pointerEventsVi.setNativeProps({
241
+ pointerEvents: showing ? 'auto' : 'none'
242
+ });
243
+ const {
244
+ drawerPosition,
245
+ minSwipeDistance,
246
+ edgeWidth
247
+ } = this.props;
248
+ const fromLeft = drawerPosition === 'left'; // gestureOrientation is 1 if the expected gesture is from left to right and
249
+ // -1 otherwise e.g. when drawer is on the left and is closed we expect left
250
+ // to right gesture, thus orientation will be 1.
251
+
252
+ const gestureOrientation = (fromLeft ? 1 : -1) * (this.drawerShown ? -1 : 1); // When drawer is closed we want the hitSlop to be horizontally shorter than
253
+ // the container size by the value of SLOP. This will make it only activate
254
+ // when gesture happens not further than SLOP away from the edge
255
+
256
+ const hitSlop = fromLeft ? {
257
+ left: 0,
258
+ width: showing ? undefined : edgeWidth
259
+ } : {
260
+ right: 0,
261
+ width: showing ? undefined : edgeWidth
262
+ }; // @ts-ignore internal API, maybe could be fixed in handler types
263
+
264
+ (_this$panGestureHandl = this.panGestureHandler.current) === null || _this$panGestureHandl === void 0 ? void 0 : _this$panGestureHandl.setNativeProps({
265
+ hitSlop,
266
+ activeOffsetX: gestureOrientation * minSwipeDistance
267
+ });
268
+ });
269
+
270
+ _defineProperty(this, "animateDrawer", (fromValue, toValue, velocity, speed) => {
271
+ this.state.dragX.setValue(0);
272
+ this.state.touchX.setValue(this.props.drawerPosition === 'left' ? 0 : this.state.containerWidth);
273
+
274
+ if (fromValue != null) {
275
+ let nextFramePosition = fromValue;
276
+
277
+ if (this.props.useNativeAnimations) {
278
+ // When using native driver, we predict the next position of the
279
+ // animation because it takes one frame of a roundtrip to pass RELEASE
280
+ // event from native driver to JS before we can start animating. Without
281
+ // it, it is more noticable that the frame is dropped.
282
+ if (fromValue < toValue && velocity > 0) {
283
+ nextFramePosition = Math.min(fromValue + velocity / 60.0, toValue);
284
+ } else if (fromValue > toValue && velocity < 0) {
285
+ nextFramePosition = Math.max(fromValue + velocity / 60.0, toValue);
286
+ }
287
+ }
288
+
289
+ this.state.drawerTranslation.setValue(nextFramePosition);
290
+ }
291
+
292
+ const willShow = toValue !== 0;
293
+ this.updateShowing(willShow);
294
+ this.emitStateChanged(SETTLING, willShow);
295
+ this.setState({
296
+ drawerState: SETTLING
297
+ });
298
+
299
+ if (this.props.hideStatusBar) {
300
+ _reactNative.StatusBar.setHidden(willShow, this.props.statusBarAnimation || 'slide');
301
+ }
302
+
303
+ _reactNative.Animated.spring(this.state.drawerTranslation, {
304
+ velocity,
305
+ bounciness: 0,
306
+ toValue,
307
+ useNativeDriver: this.props.useNativeAnimations,
308
+ speed: speed !== null && speed !== void 0 ? speed : undefined
309
+ }).start(({
310
+ finished
311
+ }) => {
312
+ if (finished) {
313
+ this.emitStateChanged(IDLE, willShow);
314
+ this.setState({
315
+ drawerOpened: willShow
316
+ });
317
+
318
+ if (this.state.drawerState !== DRAGGING) {
319
+ // it's possilbe that user started drag while the drawer
320
+ // was settling, don't override state in this case
321
+ this.setState({
322
+ drawerState: IDLE
323
+ });
324
+ }
325
+
326
+ if (willShow) {
327
+ var _this$props$onDrawerO, _this$props3;
328
+
329
+ (_this$props$onDrawerO = (_this$props3 = this.props).onDrawerOpen) === null || _this$props$onDrawerO === void 0 ? void 0 : _this$props$onDrawerO.call(_this$props3);
330
+ } else {
331
+ var _this$props$onDrawerC, _this$props4;
332
+
333
+ (_this$props$onDrawerC = (_this$props4 = this.props).onDrawerClose) === null || _this$props$onDrawerC === void 0 ? void 0 : _this$props$onDrawerC.call(_this$props4);
334
+ }
335
+ }
336
+ });
337
+ });
338
+
339
+ _defineProperty(this, "openDrawer", (options = {}) => {
340
+ this.animateDrawer( // TODO: decide if it should be null or undefined is the proper value
341
+ undefined, this.props.drawerWidth, options.velocity ? options.velocity : 0, options.speed); // We need to force the update, otherwise the overlay is not rerendered and
342
+ // it would not be clickable
343
+
344
+ this.forceUpdate();
345
+ });
346
+
347
+ _defineProperty(this, "closeDrawer", (options = {}) => {
348
+ // TODO: decide if it should be null or undefined is the proper value
349
+ this.animateDrawer(undefined, 0, options.velocity ? options.velocity : 0, options.speed); // We need to force the update, otherwise the overlay is not rerendered and
350
+ // it would be still clickable
351
+
352
+ this.forceUpdate();
353
+ });
354
+
355
+ _defineProperty(this, "renderOverlay", () => {
356
+ /* Overlay styles */
357
+ (0, _invariant.default)(this.openValue, 'should be set');
358
+ let overlayOpacity;
359
+
360
+ if (this.state.drawerState !== IDLE) {
361
+ overlayOpacity = this.openValue;
362
+ } else {
363
+ overlayOpacity = this.state.drawerOpened ? 1 : 0;
364
+ }
365
+
366
+ const dynamicOverlayStyles = {
367
+ opacity: overlayOpacity,
368
+ backgroundColor: this.props.overlayColor
369
+ };
370
+ return /*#__PURE__*/React.createElement(_TapGestureHandler.TapGestureHandler, {
371
+ onHandlerStateChange: this.onTapHandlerStateChange
372
+ }, /*#__PURE__*/React.createElement(_reactNative.Animated.View, {
373
+ pointerEvents: this.drawerShown ? 'auto' : 'none',
374
+ ref: this.pointerEventsView,
375
+ style: [styles.overlay, dynamicOverlayStyles]
376
+ }));
377
+ });
378
+
379
+ _defineProperty(this, "renderDrawer", () => {
380
+ const {
381
+ drawerBackgroundColor,
382
+ drawerWidth,
383
+ drawerPosition,
384
+ drawerType,
385
+ drawerContainerStyle,
386
+ contentContainerStyle
387
+ } = this.props;
388
+ const fromLeft = drawerPosition === 'left';
389
+ const drawerSlide = drawerType !== 'back';
390
+ const containerSlide = drawerType !== 'front'; // we rely on row and row-reverse flex directions to position the drawer
391
+ // properly. Apparently for RTL these are flipped which requires us to use
392
+ // the opposite setting for the drawer to appear from left or right
393
+ // according to the drawerPosition prop
394
+
395
+ const reverseContentDirection = _reactNative.I18nManager.isRTL ? fromLeft : !fromLeft;
396
+ const dynamicDrawerStyles = {
397
+ backgroundColor: drawerBackgroundColor,
398
+ width: drawerWidth
399
+ };
400
+ const openValue = this.openValue;
401
+ (0, _invariant.default)(openValue, 'should be set');
402
+ let containerStyles;
403
+
404
+ if (containerSlide) {
405
+ const containerTranslateX = openValue.interpolate({
406
+ inputRange: [0, 1],
407
+ outputRange: fromLeft ? [0, drawerWidth] : [0, -drawerWidth],
408
+ extrapolate: 'clamp'
409
+ });
410
+ containerStyles = {
411
+ transform: [{
412
+ translateX: containerTranslateX
413
+ }]
414
+ };
415
+ }
416
+
417
+ let drawerTranslateX = 0;
418
+
419
+ if (drawerSlide) {
420
+ const closedDrawerOffset = fromLeft ? -drawerWidth : drawerWidth;
421
+
422
+ if (this.state.drawerState !== IDLE) {
423
+ drawerTranslateX = openValue.interpolate({
424
+ inputRange: [0, 1],
425
+ outputRange: [closedDrawerOffset, 0],
426
+ extrapolate: 'clamp'
427
+ });
428
+ } else {
429
+ drawerTranslateX = this.state.drawerOpened ? 0 : closedDrawerOffset;
430
+ }
431
+ }
432
+
433
+ const drawerStyles = {
434
+ transform: [{
435
+ translateX: drawerTranslateX
436
+ }],
437
+ flexDirection: reverseContentDirection ? 'row-reverse' : 'row'
438
+ };
439
+ return /*#__PURE__*/React.createElement(_reactNative.Animated.View, {
440
+ style: styles.main,
441
+ onLayout: this.handleContainerLayout
442
+ }, /*#__PURE__*/React.createElement(_reactNative.Animated.View, {
443
+ style: [drawerType === 'front' ? styles.containerOnBack : styles.containerInFront, containerStyles, contentContainerStyle],
444
+ importantForAccessibility: this.drawerShown ? 'no-hide-descendants' : 'yes'
445
+ }, typeof this.props.children === 'function' ? this.props.children(this.openValue) : this.props.children, this.renderOverlay()), /*#__PURE__*/React.createElement(_reactNative.Animated.View, {
446
+ pointerEvents: "box-none",
447
+ ref: this.accessibilityIsModalView,
448
+ accessibilityViewIsModal: this.drawerShown,
449
+ style: [styles.drawerContainer, drawerStyles, drawerContainerStyle]
450
+ }, /*#__PURE__*/React.createElement(_reactNative.View, {
451
+ style: dynamicDrawerStyles
452
+ }, this.props.renderNavigationView(this.openValue))));
453
+ });
454
+
455
+ _defineProperty(this, "setPanGestureRef", ref => {
456
+ var _this$props$onGesture, _this$props5;
457
+
458
+ // TODO(TS): make sure it is OK taken from
459
+ // https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31065#issuecomment-596081842
460
+ this.panGestureHandler.current = ref;
461
+ (_this$props$onGesture = (_this$props5 = this.props).onGestureRef) === null || _this$props$onGesture === void 0 ? void 0 : _this$props$onGesture.call(_this$props5, ref);
462
+ });
463
+
464
+ const _dragX = new _reactNative.Animated.Value(0);
465
+
466
+ const _touchX = new _reactNative.Animated.Value(0);
467
+
468
+ const _drawerTranslation = new _reactNative.Animated.Value(0);
469
+
470
+ this.state = {
471
+ dragX: _dragX,
472
+ touchX: _touchX,
473
+ drawerTranslation: _drawerTranslation,
474
+ containerWidth: 0,
475
+ drawerState: IDLE,
476
+ drawerOpened: false
477
+ };
478
+ this.updateAnimatedEvent(_props, this.state);
479
+ }
480
+
481
+ shouldComponentUpdate(props, state) {
482
+ if (this.props.drawerPosition !== props.drawerPosition || this.props.drawerWidth !== props.drawerWidth || this.props.drawerType !== props.drawerType || this.state.containerWidth !== state.containerWidth) {
483
+ this.updateAnimatedEvent(props, state);
484
+ }
485
+
486
+ return true;
487
+ }
488
+
489
+ render() {
490
+ const {
491
+ drawerPosition,
492
+ drawerLockMode,
493
+ edgeWidth,
494
+ minSwipeDistance
495
+ } = this.props;
496
+ const fromLeft = drawerPosition === 'left'; // gestureOrientation is 1 if the expected gesture is from left to right and
497
+ // -1 otherwise e.g. when drawer is on the left and is closed we expect left
498
+ // to right gesture, thus orientation will be 1.
499
+
500
+ const gestureOrientation = (fromLeft ? 1 : -1) * (this.drawerShown ? -1 : 1); // When drawer is closed we want the hitSlop to be horizontally shorter than
501
+ // the container size by the value of SLOP. This will make it only activate
502
+ // when gesture happens not further than SLOP away from the edge
503
+
504
+ const hitSlop = fromLeft ? {
505
+ left: 0,
506
+ width: this.drawerShown ? undefined : edgeWidth
507
+ } : {
508
+ right: 0,
509
+ width: this.drawerShown ? undefined : edgeWidth
510
+ };
511
+ return /*#__PURE__*/React.createElement(_PanGestureHandler.PanGestureHandler // @ts-ignore could be fixed in handler types
512
+ , {
513
+ userSelect: this.props.userSelect,
514
+ activeCursor: this.props.activeCursor,
515
+ ref: this.setPanGestureRef,
516
+ hitSlop: hitSlop,
517
+ activeOffsetX: gestureOrientation * minSwipeDistance,
518
+ failOffsetY: [-15, 15],
519
+ onGestureEvent: this.onGestureEvent,
520
+ onHandlerStateChange: this.openingHandlerStateChange,
521
+ enableTrackpadTwoFingerGesture: this.props.enableTrackpadTwoFingerGesture,
522
+ enabled: drawerLockMode !== 'locked-closed' && drawerLockMode !== 'locked-open'
523
+ }, this.renderDrawer());
524
+ }
525
+
526
+ }
527
+
528
+ exports.default = DrawerLayout;
529
+
530
+ _defineProperty(DrawerLayout, "defaultProps", {
531
+ drawerWidth: 200,
532
+ drawerPosition: 'left',
533
+ useNativeAnimations: true,
534
+ drawerType: 'front',
535
+ edgeWidth: 20,
536
+ minSwipeDistance: 3,
537
+ overlayColor: 'rgba(0, 0, 0, 0.7)',
538
+ drawerLockMode: 'unlocked',
539
+ enableTrackpadTwoFingerGesture: false
540
+ });
541
+
542
+ _defineProperty(DrawerLayout, "positions", {
543
+ Left: 'left',
544
+ Right: 'right'
545
+ });
546
+
547
+ const styles = _reactNative.StyleSheet.create({
548
+ drawerContainer: { ..._reactNative.StyleSheet.absoluteFillObject,
549
+ zIndex: 1001,
550
+ flexDirection: 'row'
551
+ },
552
+ containerInFront: { ..._reactNative.StyleSheet.absoluteFillObject,
553
+ zIndex: 1002
554
+ },
555
+ containerOnBack: { ..._reactNative.StyleSheet.absoluteFillObject
556
+ },
557
+ main: {
558
+ flex: 1,
559
+ zIndex: 0,
560
+ overflow: 'hidden'
561
+ },
562
+ overlay: { ..._reactNative.StyleSheet.absoluteFillObject,
563
+ zIndex: 1000
564
+ }
565
+ });
566
+ //# sourceMappingURL=DrawerLayout.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["DrawerLayout.tsx"],"names":["DRAG_TOSS","IDLE","DRAGGING","SETTLING","DrawerLayout","Component","constructor","props","React","createRef","state","drawerPosition","drawerWidth","drawerType","dragX","dragXValue","touchX","touchXValue","drawerTranslation","containerWidth","Animated","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","State","ACTIVE","handleRelease","emitStateChanged","drawerState","keyboardDismissMode","Keyboard","dismiss","hideStatusBar","StatusBar","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","I18nManager","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","StyleSheet","create","absoluteFillObject","zIndex","flex","overflow"],"mappings":"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","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"]}