@react-native-oh-tpl/react-native-gesture-handler 2.12.1-0.0.1 → 2.12.6-1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -62
- package/harmony/gesture_handler/build-profile.json5 +8 -0
- package/harmony/gesture_handler/hvigorfile.ts +2 -0
- package/harmony/gesture_handler/index.ets +3 -0
- package/harmony/gesture_handler/oh-package.json5 +11 -0
- package/harmony/gesture_handler/src/main/cpp/CMakeLists.txt +8 -0
- package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.cpp +34 -0
- package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.h +15 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerButtonComponentDescriptor.h +60 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.cpp +17 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.h +12 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerRootViewComponentDescriptor.h +60 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/CircularBuffer.ts +1 -1
- package/harmony/gesture_handler/src/main/ets/Event.ts +68 -0
- package/harmony/gesture_handler/src/main/ets/EventDispatcher.ts +38 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandler.ts +663 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerArkUIAdapter.ets +202 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerFactory.ts +45 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerOrchestrator.ts +280 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerPackage.ts +22 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerRegistry.ts +28 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/InteractionManager.ts +36 -57
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/LeastSquareSolver.ts +1 -1
- package/harmony/gesture_handler/src/main/ets/NativeViewGestureHandler.ts +115 -0
- package/harmony/gesture_handler/src/main/ets/OutgoingEvent.ts +34 -0
- package/harmony/gesture_handler/src/main/ets/PanGestureHandler.ts +328 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/PointerTracker.ts +13 -14
- package/harmony/gesture_handler/src/main/ets/RNGHError.ts +5 -0
- package/harmony/gesture_handler/src/main/ets/RNGHLogger.ts +29 -0
- package/harmony/gesture_handler/src/main/ets/RNGHRootTouchHandler.ets +58 -0
- package/harmony/gesture_handler/src/main/ets/RNGestureHandlerButton.ets +37 -0
- package/harmony/gesture_handler/src/main/ets/RNGestureHandlerModule.ts +125 -0
- package/harmony/gesture_handler/src/main/ets/RNGestureHandlerRootView.ets +56 -0
- package/harmony/gesture_handler/src/main/ets/RNOHScrollLocker.ts +11 -0
- package/harmony/gesture_handler/src/main/ets/State.ts +47 -0
- package/harmony/gesture_handler/src/main/ets/TapGestureHandler.ts +206 -0
- package/harmony/gesture_handler/src/main/ets/Vector2D.ts +36 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/VelocityTracker.ts +4 -4
- package/harmony/gesture_handler/src/main/ets/View.ts +71 -0
- package/harmony/gesture_handler/src/main/ets/ViewRegistry.ts +43 -0
- package/harmony/gesture_handler/src/main/ets/pages/Index.ets +17 -0
- package/harmony/gesture_handler/src/main/ets/webviewability/WebviewAbility.ts +41 -0
- package/harmony/gesture_handler/src/main/module.json5 +7 -0
- package/harmony/gesture_handler/src/main/resources/base/element/color.json +8 -0
- package/harmony/gesture_handler/src/main/resources/base/element/string.json +16 -0
- package/harmony/gesture_handler/src/main/resources/base/media/icon.png +0 -0
- package/harmony/gesture_handler/src/main/resources/base/profile/main_pages.json +5 -0
- package/harmony/gesture_handler/src/main/resources/en_US/element/string.json +16 -0
- package/harmony/gesture_handler/src/main/resources/zh_CN/element/string.json +16 -0
- package/harmony/gesture_handler/ts.ts +1 -0
- package/harmony/gesture_handler.har +0 -0
- package/lib/commonjs/RNGestureHandlerModule.js +2 -22
- package/lib/commonjs/RNGestureHandlerModule.js.map +1 -1
- package/lib/commonjs/components/GestureButtons.js +88 -142
- package/lib/commonjs/components/GestureButtons.js.map +1 -1
- package/lib/commonjs/components/GestureHandlerButton.js +2 -7
- package/lib/commonjs/components/GestureHandlerButton.js.map +1 -1
- package/lib/commonjs/components/GestureHandlerRootView.js +13 -13
- package/lib/commonjs/components/GestureHandlerRootView.js.map +1 -1
- package/lib/commonjs/components/RNGestureHandlerButton.js +23 -0
- package/lib/commonjs/components/RNGestureHandlerButton.js.map +1 -0
- package/lib/commonjs/components/touchables/GenericTouchable.js +94 -136
- package/lib/commonjs/components/touchables/GenericTouchable.js.map +1 -1
- package/lib/commonjs/components/touchables/TouchableOpacity.js +32 -51
- package/lib/commonjs/components/touchables/TouchableOpacity.js.map +1 -1
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +4 -12
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +1 -1
- package/lib/commonjs/components/touchables/index.js +2 -21
- package/lib/commonjs/components/touchables/index.js.map +1 -1
- package/lib/commonjs/handlers/NativeViewGestureHandler.js +6 -14
- package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/commonjs/handlers/PanGestureHandler.js +12 -32
- package/lib/commonjs/handlers/PanGestureHandler.js.map +1 -1
- package/lib/commonjs/handlers/TapGestureHandler.js +6 -11
- package/lib/commonjs/handlers/TapGestureHandler.js.map +1 -1
- package/lib/commonjs/handlers/createHandler.js +141 -223
- package/lib/commonjs/handlers/createHandler.js.map +1 -1
- package/lib/commonjs/handlers/createNativeWrapper.js +16 -26
- package/lib/commonjs/handlers/createNativeWrapper.js.map +1 -1
- package/lib/commonjs/handlers/gestureHandlerCommon.js +6 -87
- package/lib/commonjs/handlers/gestureHandlerCommon.js.map +1 -1
- package/lib/commonjs/handlers/gestures/GestureDetector.js +111 -226
- package/lib/commonjs/handlers/gestures/GestureDetector.js.map +1 -1
- package/lib/commonjs/index.js +168 -211
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/init.js +7 -15
- package/lib/commonjs/init.js.map +1 -1
- package/lib/module/RNGestureHandlerModule.js +2 -18
- package/lib/module/RNGestureHandlerModule.js.map +1 -1
- package/lib/module/components/GestureButtons.js +83 -121
- package/lib/module/components/GestureButtons.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.js +2 -2
- package/lib/module/components/GestureHandlerButton.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.js +11 -3
- package/lib/module/components/GestureHandlerRootView.js.map +1 -1
- package/lib/module/components/RNGestureHandlerButton.js +17 -0
- package/lib/module/components/RNGestureHandlerButton.js.map +1 -0
- package/lib/module/components/touchables/GenericTouchable.js +89 -124
- package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
- package/lib/module/components/touchables/TouchableOpacity.js +27 -41
- package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
- package/lib/module/components/touchables/TouchableWithoutFeedback.js +1 -2
- package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
- package/lib/module/components/touchables/index.js +5 -2
- package/lib/module/components/touchables/index.js.map +1 -1
- package/lib/module/handlers/NativeViewGestureHandler.js +1 -1
- package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/handlers/PanGestureHandler.js +6 -21
- package/lib/module/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/handlers/TapGestureHandler.js +2 -1
- package/lib/module/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/handlers/createHandler.js +140 -196
- package/lib/module/handlers/createHandler.js.map +1 -1
- package/lib/module/handlers/createNativeWrapper.js +11 -16
- package/lib/module/handlers/createNativeWrapper.js.map +1 -1
- package/lib/module/handlers/gestureHandlerCommon.js +5 -71
- package/lib/module/handlers/gestureHandlerCommon.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector.js +99 -175
- package/lib/module/handlers/gestures/GestureDetector.js.map +1 -1
- package/lib/module/index.js +160 -18
- package/lib/module/index.js.map +1 -1
- package/lib/module/init.js +6 -5
- package/lib/module/init.js.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.d.ts +7 -13
- package/lib/typescript/RNGestureHandlerModule.d.ts.map +1 -0
- package/lib/typescript/components/GestureButtons.d.ts +122 -121
- package/lib/typescript/components/GestureButtons.d.ts.map +1 -0
- package/lib/typescript/components/GestureHandlerButton.d.ts +5 -4
- package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -0
- package/lib/typescript/components/GestureHandlerRootView.d.ts +7 -6
- package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -0
- package/lib/typescript/components/RNGestureHandlerButton.d.ts +2 -0
- package/lib/typescript/components/RNGestureHandlerButton.d.ts.map +1 -0
- package/lib/typescript/components/touchables/GenericTouchable.d.ts +68 -68
- package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -0
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts +26 -25
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -0
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +8 -7
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -0
- package/lib/typescript/components/touchables/index.d.ts +4 -7
- package/lib/typescript/components/touchables/index.d.ts.map +1 -0
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +29 -28
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/PanGestureHandler.d.ts +140 -139
- package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/TapGestureHandler.d.ts +58 -57
- package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/createHandler.d.ts +12 -11
- package/lib/typescript/handlers/createHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/createNativeWrapper.d.ts +4 -3
- package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -0
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts +2 -68
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -0
- package/lib/typescript/handlers/gestures/GestureDetector.d.ts +24 -19
- package/lib/typescript/handlers/gestures/GestureDetector.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +9 -52
- package/lib/typescript/index.d.ts.map +1 -0
- package/lib/typescript/init.d.ts +3 -2
- package/lib/typescript/init.d.ts.map +1 -0
- package/package.json +34 -120
- package/src/RNGestureHandlerModule.ts +4 -48
- package/src/components/GestureButtons.tsx +7 -5
- package/src/components/GestureHandlerButton.tsx +3 -3
- package/src/components/GestureHandlerRootView.tsx +15 -4
- package/src/components/RNGestureHandlerButton.tsx +23 -0
- package/src/components/touchables/GenericTouchable.tsx +7 -7
- package/src/components/touchables/TouchableOpacity.tsx +2 -1
- package/src/components/touchables/TouchableWithoutFeedback.tsx +3 -3
- package/src/components/touchables/index.ts +4 -4
- package/src/handlers/NativeViewGestureHandler.ts +1 -1
- package/src/handlers/PanGestureHandler.ts +4 -2
- package/src/handlers/TapGestureHandler.ts +2 -1
- package/src/handlers/createHandler.tsx +17 -15
- package/src/handlers/createNativeWrapper.tsx +2 -1
- package/src/handlers/gestureHandlerCommon.ts +5 -240
- package/src/handlers/gestures/GestureDetector.tsx +40 -39
- package/src/index.ts +158 -160
- package/src/init.ts +3 -3
- package/DrawerLayout/package.json +0 -6
- package/LICENSE +0 -21
- package/RNGestureHandler.podspec +0 -44
- package/Swipeable/package.json +0 -6
- package/android/build.gradle +0 -209
- package/android/common/src/main/java/com/swmansion/common/GestureHandlerStateManager.kt +0 -5
- package/android/fabric/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerComponentsRegistry.java +0 -29
- package/android/fabric/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -12
- package/android/gradle.properties +0 -19
- package/android/noreanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -10
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +0 -50
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +0 -23
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +0 -25
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +0 -16
- package/android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -13
- package/android/reanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -17
- package/android/src/main/AndroidManifest.xml +0 -3
- package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -21
- package/android/src/main/java/com/swmansion/gesturehandler/core/FlingGestureHandler.kt +0 -100
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +0 -807
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.kt +0 -8
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +0 -671
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerRegistry.kt +0 -8
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureUtils.kt +0 -47
- package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +0 -120
- package/android/src/main/java/com/swmansion/gesturehandler/core/LongPressGestureHandler.kt +0 -100
- package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +0 -11
- package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +0 -257
- package/android/src/main/java/com/swmansion/gesturehandler/core/OnTouchEventListener.kt +0 -9
- package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +0 -322
- package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +0 -103
- package/android/src/main/java/com/swmansion/gesturehandler/core/PointerEventsConfig.kt +0 -23
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureDetector.kt +0 -125
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +0 -93
- package/android/src/main/java/com/swmansion/gesturehandler/core/ScaleGestureDetector.java +0 -558
- package/android/src/main/java/com/swmansion/gesturehandler/core/TapGestureHandler.kt +0 -168
- package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -10
- package/android/src/main/java/com/swmansion/gesturehandler/react/Extensions.kt +0 -16
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +0 -423
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.kt +0 -15
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.kt +0 -75
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +0 -74
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +0 -702
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +0 -100
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +0 -142
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.kt +0 -5
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +0 -78
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.kt +0 -51
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.kt +0 -78
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +0 -69
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -51
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.kt +0 -22
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.kt +0 -33
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.kt +0 -5
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.kt +0 -18
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.kt +0 -42
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/jni/CMakeLists.txt +0 -37
- package/android/src/main/jni/cpp-adapter.cpp +0 -44
- package/ios/Handlers/RNFlingHandler.h +0 -4
- package/ios/Handlers/RNFlingHandler.m +0 -152
- package/ios/Handlers/RNForceTouchHandler.h +0 -4
- package/ios/Handlers/RNForceTouchHandler.m +0 -175
- package/ios/Handlers/RNHoverHandler.h +0 -12
- package/ios/Handlers/RNHoverHandler.m +0 -153
- package/ios/Handlers/RNLongPressHandler.h +0 -12
- package/ios/Handlers/RNLongPressHandler.m +0 -183
- package/ios/Handlers/RNManualHandler.h +0 -4
- package/ios/Handlers/RNManualHandler.m +0 -88
- package/ios/Handlers/RNNativeViewHandler.h +0 -15
- package/ios/Handlers/RNNativeViewHandler.mm +0 -193
- package/ios/Handlers/RNPanHandler.h +0 -12
- package/ios/Handlers/RNPanHandler.m +0 -331
- package/ios/Handlers/RNPinchHandler.h +0 -12
- package/ios/Handlers/RNPinchHandler.m +0 -95
- package/ios/Handlers/RNRotationHandler.h +0 -12
- package/ios/Handlers/RNRotationHandler.m +0 -93
- package/ios/Handlers/RNTapHandler.h +0 -12
- package/ios/Handlers/RNTapHandler.m +0 -265
- package/ios/RNGHTouchEventType.h +0 -9
- package/ios/RNGestureHandler.h +0 -90
- package/ios/RNGestureHandler.m +0 -493
- package/ios/RNGestureHandler.xcodeproj/project.pbxproj +0 -690
- package/ios/RNGestureHandler.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/RNGestureHandlerActionType.h +0 -10
- package/ios/RNGestureHandlerButton.h +0 -19
- package/ios/RNGestureHandlerButton.m +0 -77
- package/ios/RNGestureHandlerButtonComponentView.h +0 -17
- package/ios/RNGestureHandlerButtonComponentView.mm +0 -64
- package/ios/RNGestureHandlerButtonManager.h +0 -5
- package/ios/RNGestureHandlerButtonManager.m +0 -34
- package/ios/RNGestureHandlerDirection.h +0 -8
- package/ios/RNGestureHandlerEvents.h +0 -65
- package/ios/RNGestureHandlerEvents.m +0 -260
- package/ios/RNGestureHandlerManager.h +0 -35
- package/ios/RNGestureHandlerManager.mm +0 -367
- package/ios/RNGestureHandlerModule.h +0 -7
- package/ios/RNGestureHandlerModule.mm +0 -320
- package/ios/RNGestureHandlerPointerTracker.h +0 -25
- package/ios/RNGestureHandlerPointerTracker.m +0 -243
- package/ios/RNGestureHandlerRegistry.h +0 -21
- package/ios/RNGestureHandlerRegistry.m +0 -63
- package/ios/RNGestureHandlerRootViewComponentView.mm +0 -21
- package/ios/RNGestureHandlerState.h +0 -10
- package/ios/RNGestureHandlerStateManager.h +0 -5
- package/ios/RNManualActivationRecognizer.h +0 -10
- package/ios/RNManualActivationRecognizer.m +0 -88
- package/ios/RNRootViewGestureRecognizer.h +0 -17
- package/ios/RNRootViewGestureRecognizer.m +0 -106
- package/jest-utils/package.json +0 -6
- package/jestSetup.js +0 -7
- package/lib/commonjs/ActionType.js +0 -15
- package/lib/commonjs/ActionType.js.map +0 -1
- package/lib/commonjs/Directions.js +0 -15
- package/lib/commonjs/Directions.js.map +0 -1
- package/lib/commonjs/EnableNewWebImplementation.js +0 -35
- package/lib/commonjs/EnableNewWebImplementation.js.map +0 -1
- package/lib/commonjs/GestureHandlerRootViewContext.js +0 -15
- package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
- package/lib/commonjs/PlatformConstants.js +0 -15
- package/lib/commonjs/PlatformConstants.js.map +0 -1
- package/lib/commonjs/PlatformConstants.web.js +0 -14
- package/lib/commonjs/PlatformConstants.web.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.macos.js +0 -149
- package/lib/commonjs/RNGestureHandlerModule.macos.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.web.js +0 -163
- package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -158
- package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
- package/lib/commonjs/RNRenderer.js +0 -16
- package/lib/commonjs/RNRenderer.js.map +0 -1
- package/lib/commonjs/RNRenderer.web.js +0 -11
- package/lib/commonjs/RNRenderer.web.js.map +0 -1
- package/lib/commonjs/State.js +0 -18
- package/lib/commonjs/State.js.map +0 -1
- package/lib/commonjs/TouchEventType.js +0 -16
- package/lib/commonjs/TouchEventType.js.map +0 -1
- package/lib/commonjs/components/DrawerLayout.js +0 -566
- package/lib/commonjs/components/DrawerLayout.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.js +0 -115
- package/lib/commonjs/components/GestureComponents.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.web.js +0 -52
- package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.web.js +0 -24
- package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -31
- package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -25
- package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
- package/lib/commonjs/components/Swipeable.js +0 -408
- package/lib/commonjs/components/Swipeable.js.map +0 -1
- package/lib/commonjs/components/gestureHandlerRootHOC.js +0 -40
- package/lib/commonjs/components/gestureHandlerRootHOC.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -109
- package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -100
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -12
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
- package/lib/commonjs/getReactNativeVersion.js +0 -22
- package/lib/commonjs/getReactNativeVersion.js.map +0 -1
- package/lib/commonjs/getReactNativeVersion.web.js +0 -11
- package/lib/commonjs/getReactNativeVersion.web.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.js +0 -27
- package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.web.js +0 -15
- package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
- package/lib/commonjs/ghQueueMicrotask.js +0 -12
- package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
- package/lib/commonjs/handlers/FlingGestureHandler.js +0 -25
- package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -49
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -27
- package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PinchGestureHandler.js +0 -23
- package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.js +0 -14
- package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -12
- package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
- package/lib/commonjs/handlers/RotationGestureHandler.js +0 -23
- package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
- package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -147
- package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
- package/lib/commonjs/handlers/gestures/flingGesture.js +0 -34
- package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -65
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gesture.js +0 -241
- package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -105
- package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -90
- package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -65
- package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -32
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -74
- package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -35
- package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/manualGesture.js +0 -31
- package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
- package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/panGesture.js +0 -149
- package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -45
- package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -37
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
- package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -45
- package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/tapGesture.js +0 -60
- package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
- package/lib/commonjs/handlers/handlersRegistry.js +0 -67
- package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
- package/lib/commonjs/jestUtils/index.js +0 -20
- package/lib/commonjs/jestUtils/index.js.map +0 -1
- package/lib/commonjs/jestUtils/jestUtils.js +0 -375
- package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
- package/lib/commonjs/mocks.js +0 -66
- package/lib/commonjs/mocks.js.map +0 -1
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js +0 -15
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js +0 -15
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
- package/lib/commonjs/typeUtils.js +0 -2
- package/lib/commonjs/typeUtils.js.map +0 -1
- package/lib/commonjs/utils.js +0 -63
- package/lib/commonjs/utils.js.map +0 -1
- package/lib/commonjs/web/constants.js +0 -16
- package/lib/commonjs/web/constants.js.map +0 -1
- package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -165
- package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -156
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
- package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -167
- package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/GestureHandler.js +0 -794
- package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -62
- package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -151
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -61
- package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -178
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -448
- package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -174
- package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -186
- package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -280
- package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/web/interfaces.js +0 -55
- package/lib/commonjs/web/interfaces.js.map +0 -1
- package/lib/commonjs/web/tools/CircularBuffer.js +0 -59
- package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
- package/lib/commonjs/web/tools/EventManager.js +0 -127
- package/lib/commonjs/web/tools/EventManager.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -6
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -349
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -118
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/InteractionManager.js +0 -114
- package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
- package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -204
- package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
- package/lib/commonjs/web/tools/NodeManager.js +0 -48
- package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerEventManager.js +0 -198
- package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerTracker.js +0 -226
- package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
- package/lib/commonjs/web/tools/TouchEventManager.js +0 -138
- package/lib/commonjs/web/tools/TouchEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/VelocityTracker.js +0 -111
- package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
- package/lib/commonjs/web/utils.js +0 -15
- package/lib/commonjs/web/utils.js.map +0 -1
- package/lib/commonjs/web_hammer/DiscreteGestureHandler.js +0 -105
- package/lib/commonjs/web_hammer/DiscreteGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/DraggingGestureHandler.js +0 -53
- package/lib/commonjs/web_hammer/DraggingGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/Errors.js +0 -16
- package/lib/commonjs/web_hammer/Errors.js.map +0 -1
- package/lib/commonjs/web_hammer/FlingGestureHandler.js +0 -170
- package/lib/commonjs/web_hammer/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/GestureHandler.js +0 -579
- package/lib/commonjs/web_hammer/GestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js +0 -54
- package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/LongPressGestureHandler.js +0 -71
- package/lib/commonjs/web_hammer/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/NativeViewGestureHandler.js +0 -66
- package/lib/commonjs/web_hammer/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/NodeManager.js +0 -46
- package/lib/commonjs/web_hammer/NodeManager.js.map +0 -1
- package/lib/commonjs/web_hammer/PanGestureHandler.js +0 -208
- package/lib/commonjs/web_hammer/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/PinchGestureHandler.js +0 -40
- package/lib/commonjs/web_hammer/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/PressGestureHandler.js +0 -188
- package/lib/commonjs/web_hammer/PressGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/RotationGestureHandler.js +0 -44
- package/lib/commonjs/web_hammer/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/TapGestureHandler.js +0 -192
- package/lib/commonjs/web_hammer/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/constants.js +0 -64
- package/lib/commonjs/web_hammer/constants.js.map +0 -1
- package/lib/commonjs/web_hammer/utils.js +0 -42
- package/lib/commonjs/web_hammer/utils.js.map +0 -1
- package/lib/module/ActionType.js +0 -7
- package/lib/module/ActionType.js.map +0 -1
- package/lib/module/Directions.js +0 -7
- package/lib/module/Directions.js.map +0 -1
- package/lib/module/EnableNewWebImplementation.js +0 -22
- package/lib/module/EnableNewWebImplementation.js.map +0 -1
- package/lib/module/GestureHandlerRootViewContext.js +0 -3
- package/lib/module/GestureHandlerRootViewContext.js.map +0 -1
- package/lib/module/PlatformConstants.js +0 -5
- package/lib/module/PlatformConstants.js.map +0 -1
- package/lib/module/PlatformConstants.web.js +0 -7
- package/lib/module/PlatformConstants.web.js.map +0 -1
- package/lib/module/RNGestureHandlerModule.macos.js +0 -110
- package/lib/module/RNGestureHandlerModule.macos.js.map +0 -1
- package/lib/module/RNGestureHandlerModule.web.js +0 -122
- package/lib/module/RNGestureHandlerModule.web.js.map +0 -1
- package/lib/module/RNGestureHandlerModule.windows.js +0 -118
- package/lib/module/RNGestureHandlerModule.windows.js.map +0 -1
- package/lib/module/RNRenderer.js +0 -4
- package/lib/module/RNRenderer.js.map +0 -1
- package/lib/module/RNRenderer.web.js +0 -4
- package/lib/module/RNRenderer.web.js.map +0 -1
- package/lib/module/State.js +0 -10
- package/lib/module/State.js.map +0 -1
- package/lib/module/TouchEventType.js +0 -8
- package/lib/module/TouchEventType.js.map +0 -1
- package/lib/module/components/DrawerLayout.js +0 -551
- package/lib/module/components/DrawerLayout.js.map +0 -1
- package/lib/module/components/GestureComponents.js +0 -90
- package/lib/module/components/GestureComponents.js.map +0 -1
- package/lib/module/components/GestureComponents.web.js +0 -28
- package/lib/module/components/GestureComponents.web.js.map +0 -1
- package/lib/module/components/GestureHandlerButton.web.js +0 -9
- package/lib/module/components/GestureHandlerButton.web.js.map +0 -1
- package/lib/module/components/GestureHandlerRootView.android.js +0 -14
- package/lib/module/components/GestureHandlerRootView.android.js.map +0 -1
- package/lib/module/components/GestureHandlerRootView.web.js +0 -9
- package/lib/module/components/GestureHandlerRootView.web.js.map +0 -1
- package/lib/module/components/Swipeable.js +0 -390
- package/lib/module/components/Swipeable.js.map +0 -1
- package/lib/module/components/gestureHandlerRootHOC.js +0 -22
- package/lib/module/components/gestureHandlerRootHOC.js.map +0 -1
- package/lib/module/components/touchables/TouchableHighlight.js +0 -95
- package/lib/module/components/touchables/TouchableHighlight.js.map +0 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js +0 -84
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.js +0 -3
- package/lib/module/components/touchables/TouchableNativeFeedback.js.map +0 -1
- package/lib/module/getReactNativeVersion.js +0 -10
- package/lib/module/getReactNativeVersion.js.map +0 -1
- package/lib/module/getReactNativeVersion.web.js +0 -4
- package/lib/module/getReactNativeVersion.web.js.map +0 -1
- package/lib/module/getShadowNodeFromRef.js +0 -20
- package/lib/module/getShadowNodeFromRef.js.map +0 -1
- package/lib/module/getShadowNodeFromRef.web.js +0 -8
- package/lib/module/getShadowNodeFromRef.web.js.map +0 -1
- package/lib/module/ghQueueMicrotask.js +0 -5
- package/lib/module/ghQueueMicrotask.js.map +0 -1
- package/lib/module/handlers/FlingGestureHandler.js +0 -11
- package/lib/module/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js +0 -31
- package/lib/module/handlers/ForceTouchGestureHandler.js.map +0 -1
- package/lib/module/handlers/LongPressGestureHandler.js +0 -13
- package/lib/module/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/module/handlers/PinchGestureHandler.js +0 -10
- package/lib/module/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/module/handlers/PressabilityDebugView.js +0 -3
- package/lib/module/handlers/PressabilityDebugView.js.map +0 -1
- package/lib/module/handlers/PressabilityDebugView.web.js +0 -5
- package/lib/module/handlers/PressabilityDebugView.web.js.map +0 -1
- package/lib/module/handlers/RotationGestureHandler.js +0 -10
- package/lib/module/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/module/handlers/gestureHandlerTypesCompat.js +0 -2
- package/lib/module/handlers/gestureHandlerTypesCompat.js.map +0 -1
- package/lib/module/handlers/gestures/eventReceiver.js +0 -131
- package/lib/module/handlers/gestures/eventReceiver.js.map +0 -1
- package/lib/module/handlers/gestures/flingGesture.js +0 -24
- package/lib/module/handlers/gestures/flingGesture.js.map +0 -1
- package/lib/module/handlers/gestures/forceTouchGesture.js +0 -56
- package/lib/module/handlers/gestures/forceTouchGesture.js.map +0 -1
- package/lib/module/handlers/gestures/gesture.js +0 -222
- package/lib/module/handlers/gestures/gesture.js.map +0 -1
- package/lib/module/handlers/gestures/gestureComposition.js +0 -90
- package/lib/module/handlers/gestures/gestureComposition.js.map +0 -1
- package/lib/module/handlers/gestures/gestureObjects.js +0 -71
- package/lib/module/handlers/gestures/gestureObjects.js.map +0 -1
- package/lib/module/handlers/gestures/gestureStateManager.js +0 -54
- package/lib/module/handlers/gestures/gestureStateManager.js.map +0 -1
- package/lib/module/handlers/gestures/gestureStateManager.web.js +0 -21
- package/lib/module/handlers/gestures/gestureStateManager.web.js.map +0 -1
- package/lib/module/handlers/gestures/hoverGesture.js +0 -62
- package/lib/module/handlers/gestures/hoverGesture.js.map +0 -1
- package/lib/module/handlers/gestures/longPressGesture.js +0 -25
- package/lib/module/handlers/gestures/longPressGesture.js.map +0 -1
- package/lib/module/handlers/gestures/manualGesture.js +0 -22
- package/lib/module/handlers/gestures/manualGesture.js.map +0 -1
- package/lib/module/handlers/gestures/nativeGesture.js +0 -24
- package/lib/module/handlers/gestures/nativeGesture.js.map +0 -1
- package/lib/module/handlers/gestures/panGesture.js +0 -140
- package/lib/module/handlers/gestures/panGesture.js.map +0 -1
- package/lib/module/handlers/gestures/pinchGesture.js +0 -36
- package/lib/module/handlers/gestures/pinchGesture.js.map +0 -1
- package/lib/module/handlers/gestures/reanimatedWrapper.js +0 -30
- package/lib/module/handlers/gestures/reanimatedWrapper.js.map +0 -1
- package/lib/module/handlers/gestures/rotationGesture.js +0 -36
- package/lib/module/handlers/gestures/rotationGesture.js.map +0 -1
- package/lib/module/handlers/gestures/tapGesture.js +0 -50
- package/lib/module/handlers/gestures/tapGesture.js.map +0 -1
- package/lib/module/handlers/handlersRegistry.js +0 -44
- package/lib/module/handlers/handlersRegistry.js.map +0 -1
- package/lib/module/jestUtils/index.js +0 -2
- package/lib/module/jestUtils/index.js.map +0 -1
- package/lib/module/jestUtils/jestUtils.js +0 -350
- package/lib/module/jestUtils/jestUtils.js.map +0 -1
- package/lib/module/mocks.js +0 -56
- package/lib/module/mocks.js.map +0 -1
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js +0 -3
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js +0 -3
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
- package/lib/module/typeUtils.js +0 -2
- package/lib/module/typeUtils.js.map +0 -1
- package/lib/module/utils.js +0 -44
- package/lib/module/utils.js.map +0 -1
- package/lib/module/web/constants.js +0 -8
- package/lib/module/web/constants.js.map +0 -1
- package/lib/module/web/detectors/RotationGestureDetector.js +0 -155
- package/lib/module/web/detectors/RotationGestureDetector.js.map +0 -1
- package/lib/module/web/detectors/ScaleGestureDetector.js +0 -145
- package/lib/module/web/detectors/ScaleGestureDetector.js.map +0 -1
- package/lib/module/web/handlers/FlingGestureHandler.js +0 -152
- package/lib/module/web/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/GestureHandler.js +0 -776
- package/lib/module/web/handlers/GestureHandler.js.map +0 -1
- package/lib/module/web/handlers/HoverGestureHandler.js +0 -47
- package/lib/module/web/handlers/HoverGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/LongPressGestureHandler.js +0 -136
- package/lib/module/web/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/ManualGestureHandler.js +0 -49
- package/lib/module/web/handlers/ManualGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/NativeViewGestureHandler.js +0 -163
- package/lib/module/web/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/PanGestureHandler.js +0 -433
- package/lib/module/web/handlers/PanGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/PinchGestureHandler.js +0 -159
- package/lib/module/web/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/RotationGestureHandler.js +0 -171
- package/lib/module/web/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/TapGestureHandler.js +0 -265
- package/lib/module/web/handlers/TapGestureHandler.js.map +0 -1
- package/lib/module/web/interfaces.js +0 -45
- package/lib/module/web/interfaces.js.map +0 -1
- package/lib/module/web/tools/CircularBuffer.js +0 -50
- package/lib/module/web/tools/CircularBuffer.js.map +0 -1
- package/lib/module/web/tools/EventManager.js +0 -118
- package/lib/module/web/tools/EventManager.js.map +0 -1
- package/lib/module/web/tools/GestureHandlerDelegate.js +0 -2
- package/lib/module/web/tools/GestureHandlerDelegate.js.map +0 -1
- package/lib/module/web/tools/GestureHandlerOrchestrator.js +0 -335
- package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +0 -1
- package/lib/module/web/tools/GestureHandlerWebDelegate.js +0 -102
- package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +0 -1
- package/lib/module/web/tools/InteractionManager.js +0 -105
- package/lib/module/web/tools/InteractionManager.js.map +0 -1
- package/lib/module/web/tools/LeastSquareSolver.js +0 -195
- package/lib/module/web/tools/LeastSquareSolver.js.map +0 -1
- package/lib/module/web/tools/NodeManager.js +0 -39
- package/lib/module/web/tools/NodeManager.js.map +0 -1
- package/lib/module/web/tools/PointerEventManager.js +0 -184
- package/lib/module/web/tools/PointerEventManager.js.map +0 -1
- package/lib/module/web/tools/PointerTracker.js +0 -213
- package/lib/module/web/tools/PointerTracker.js.map +0 -1
- package/lib/module/web/tools/TouchEventManager.js +0 -124
- package/lib/module/web/tools/TouchEventManager.js.map +0 -1
- package/lib/module/web/tools/VelocityTracker.js +0 -98
- package/lib/module/web/tools/VelocityTracker.js.map +0 -1
- package/lib/module/web/utils.js +0 -8
- package/lib/module/web/utils.js.map +0 -1
- package/lib/module/web_hammer/DiscreteGestureHandler.js +0 -94
- package/lib/module/web_hammer/DiscreteGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/DraggingGestureHandler.js +0 -40
- package/lib/module/web_hammer/DraggingGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/Errors.js +0 -7
- package/lib/module/web_hammer/Errors.js.map +0 -1
- package/lib/module/web_hammer/FlingGestureHandler.js +0 -156
- package/lib/module/web_hammer/FlingGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/GestureHandler.js +0 -563
- package/lib/module/web_hammer/GestureHandler.js.map +0 -1
- package/lib/module/web_hammer/IndiscreteGestureHandler.js +0 -44
- package/lib/module/web_hammer/IndiscreteGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/LongPressGestureHandler.js +0 -58
- package/lib/module/web_hammer/LongPressGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/NativeViewGestureHandler.js +0 -49
- package/lib/module/web_hammer/NativeViewGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/NodeManager.js +0 -33
- package/lib/module/web_hammer/NodeManager.js.map +0 -1
- package/lib/module/web_hammer/PanGestureHandler.js +0 -194
- package/lib/module/web_hammer/PanGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/PinchGestureHandler.js +0 -29
- package/lib/module/web_hammer/PinchGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/PressGestureHandler.js +0 -174
- package/lib/module/web_hammer/PressGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/RotationGestureHandler.js +0 -32
- package/lib/module/web_hammer/RotationGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/TapGestureHandler.js +0 -180
- package/lib/module/web_hammer/TapGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/constants.js +0 -43
- package/lib/module/web_hammer/constants.js.map +0 -1
- package/lib/module/web_hammer/utils.js +0 -19
- package/lib/module/web_hammer/utils.js.map +0 -1
- package/lib/typescript/ActionType.d.ts +0 -7
- package/lib/typescript/Directions.d.ts +0 -7
- package/lib/typescript/EnableNewWebImplementation.d.ts +0 -3
- package/lib/typescript/GestureHandlerRootViewContext.d.ts +0 -3
- package/lib/typescript/PlatformConstants.d.ts +0 -5
- package/lib/typescript/PlatformConstants.web.d.ts +0 -4
- package/lib/typescript/RNGestureHandlerModule.macos.d.ts +0 -47
- package/lib/typescript/RNGestureHandlerModule.web.d.ts +0 -50
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts +0 -48
- package/lib/typescript/RNRenderer.d.ts +0 -1
- package/lib/typescript/RNRenderer.web.d.ts +0 -3
- package/lib/typescript/State.d.ts +0 -9
- package/lib/typescript/TouchEventType.d.ts +0 -8
- package/lib/typescript/components/DrawerLayout.d.ts +0 -148
- package/lib/typescript/components/GestureComponents.d.ts +0 -22
- package/lib/typescript/components/GestureComponents.web.d.ts +0 -8
- package/lib/typescript/components/GestureHandlerButton.web.d.ts +0 -4
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts +0 -6
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts +0 -6
- package/lib/typescript/components/Swipeable.d.ts +0 -178
- package/lib/typescript/components/gestureHandlerRootHOC.d.ts +0 -3
- package/lib/typescript/components/touchables/TouchableHighlight.d.ts +0 -36
- package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +0 -45
- package/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts +0 -2
- package/lib/typescript/getReactNativeVersion.d.ts +0 -4
- package/lib/typescript/getReactNativeVersion.web.d.ts +0 -1
- package/lib/typescript/getShadowNodeFromRef.d.ts +0 -1
- package/lib/typescript/getShadowNodeFromRef.web.d.ts +0 -1
- package/lib/typescript/ghQueueMicrotask.d.ts +0 -1
- package/lib/typescript/handlers/FlingGestureHandler.d.ts +0 -34
- package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +0 -44
- package/lib/typescript/handlers/LongPressGestureHandler.d.ts +0 -56
- package/lib/typescript/handlers/PinchGestureHandler.d.ts +0 -29
- package/lib/typescript/handlers/PressabilityDebugView.d.ts +0 -1
- package/lib/typescript/handlers/PressabilityDebugView.web.d.ts +0 -1
- package/lib/typescript/handlers/RotationGestureHandler.d.ts +0 -29
- package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +0 -42
- package/lib/typescript/handlers/gestures/eventReceiver.d.ts +0 -4
- package/lib/typescript/handlers/gestures/flingGesture.d.ts +0 -9
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +0 -15
- package/lib/typescript/handlers/gestures/gesture.d.ts +0 -110
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts +0 -21
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts +0 -41
- package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +0 -9
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +0 -4
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts +0 -32
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts +0 -9
- package/lib/typescript/handlers/gestures/manualGesture.d.ts +0 -7
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts +0 -9
- package/lib/typescript/handlers/gestures/panGesture.d.ts +0 -26
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts +0 -11
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +0 -14
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts +0 -12
- package/lib/typescript/handlers/gestures/tapGesture.d.ts +0 -14
- package/lib/typescript/handlers/handlersRegistry.d.ts +0 -14
- package/lib/typescript/jestUtils/index.d.ts +0 -1
- package/lib/typescript/jestUtils/jestUtils.d.ts +0 -28
- package/lib/typescript/mocks.d.ts +0 -44
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +0 -14
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +0 -6
- package/lib/typescript/typeUtils.d.ts +0 -1
- package/lib/typescript/utils.d.ts +0 -8
- package/lib/typescript/web/constants.d.ts +0 -7
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +0 -30
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +0 -29
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +0 -27
- package/lib/typescript/web/handlers/GestureHandler.d.ts +0 -90
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +0 -10
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +0 -26
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +0 -12
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +0 -24
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts +0 -55
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +0 -28
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +0 -29
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts +0 -39
- package/lib/typescript/web/interfaces.d.ts +0 -141
- package/lib/typescript/web/tools/CircularBuffer.d.ts +0 -11
- package/lib/typescript/web/tools/EventManager.d.ts +0 -34
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +0 -22
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +0 -29
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +0 -21
- package/lib/typescript/web/tools/InteractionManager.d.ts +0 -17
- package/lib/typescript/web/tools/LeastSquareSolver.d.ts +0 -12
- package/lib/typescript/web/tools/NodeManager.d.ts +0 -11
- package/lib/typescript/web/tools/PointerEventManager.d.ts +0 -8
- package/lib/typescript/web/tools/PointerTracker.d.ts +0 -53
- package/lib/typescript/web/tools/TouchEventManager.d.ts +0 -6
- package/lib/typescript/web/tools/VelocityTracker.d.ts +0 -13
- package/lib/typescript/web/utils.d.ts +0 -4
- package/lib/typescript/web_hammer/DiscreteGestureHandler.d.ts +0 -20
- package/lib/typescript/web_hammer/DraggingGestureHandler.d.ts +0 -15
- package/lib/typescript/web_hammer/Errors.d.ts +0 -3
- package/lib/typescript/web_hammer/FlingGestureHandler.d.ts +0 -43
- package/lib/typescript/web_hammer/GestureHandler.d.ts +0 -145
- package/lib/typescript/web_hammer/IndiscreteGestureHandler.d.ts +0 -40
- package/lib/typescript/web_hammer/LongPressGestureHandler.d.ts +0 -38
- package/lib/typescript/web_hammer/NativeViewGestureHandler.d.ts +0 -7
- package/lib/typescript/web_hammer/NodeManager.d.ts +0 -8
- package/lib/typescript/web_hammer/PanGestureHandler.d.ts +0 -56
- package/lib/typescript/web_hammer/PinchGestureHandler.d.ts +0 -13
- package/lib/typescript/web_hammer/PressGestureHandler.d.ts +0 -83
- package/lib/typescript/web_hammer/RotationGestureHandler.d.ts +0 -13
- package/lib/typescript/web_hammer/TapGestureHandler.d.ts +0 -57
- package/lib/typescript/web_hammer/constants.d.ts +0 -39
- package/lib/typescript/web_hammer/utils.d.ts +0 -9
- package/src/ActionType.ts +0 -9
- package/src/Directions.ts +0 -9
- package/src/EnableNewWebImplementation.ts +0 -35
- package/src/GestureHandlerRootViewContext.ts +0 -3
- package/src/PlatformConstants.ts +0 -8
- package/src/PlatformConstants.web.ts +0 -5
- package/src/RNGestureHandlerModule.macos.ts +0 -133
- package/src/RNGestureHandlerModule.web.ts +0 -146
- package/src/RNGestureHandlerModule.windows.ts +0 -144
- package/src/RNRenderer.ts +0 -3
- package/src/RNRenderer.web.ts +0 -3
- package/src/State.ts +0 -13
- package/src/TouchEventType.ts +0 -10
- package/src/components/DrawerLayout.tsx +0 -743
- package/src/components/GestureComponents.tsx +0 -148
- package/src/components/GestureComponents.web.tsx +0 -41
- package/src/components/GestureHandlerButton.web.tsx +0 -6
- package/src/components/GestureHandlerRootView.android.tsx +0 -24
- package/src/components/GestureHandlerRootView.web.tsx +0 -17
- package/src/components/Swipeable.tsx +0 -584
- package/src/components/gestureHandlerRootHOC.tsx +0 -32
- package/src/components/touchables/TouchableHighlight.tsx +0 -115
- package/src/components/touchables/TouchableNativeFeedback.android.tsx +0 -91
- package/src/components/touchables/TouchableNativeFeedback.tsx +0 -3
- package/src/getReactNativeVersion.ts +0 -11
- package/src/getReactNativeVersion.web.ts +0 -3
- package/src/getShadowNodeFromRef.ts +0 -22
- package/src/getShadowNodeFromRef.web.ts +0 -7
- package/src/ghQueueMicrotask.ts +0 -5
- package/src/handlers/FlingGestureHandler.ts +0 -59
- package/src/handlers/ForceTouchGestureHandler.ts +0 -90
- package/src/handlers/LongPressGestureHandler.ts +0 -88
- package/src/handlers/PinchGestureHandler.ts +0 -48
- package/src/handlers/PressabilityDebugView.tsx +0 -2
- package/src/handlers/PressabilityDebugView.web.tsx +0 -4
- package/src/handlers/RotationGestureHandler.ts +0 -48
- package/src/handlers/gestureHandlerTypesCompat.ts +0 -106
- package/src/handlers/gestures/eventReceiver.ts +0 -155
- package/src/handlers/gestures/flingGesture.ts +0 -27
- package/src/handlers/gestures/forceTouchGesture.ts +0 -74
- package/src/handlers/gestures/gesture.ts +0 -349
- package/src/handlers/gestures/gestureComposition.ts +0 -122
- package/src/handlers/gestures/gestureObjects.ts +0 -84
- package/src/handlers/gestures/gestureStateManager.ts +0 -62
- package/src/handlers/gestures/gestureStateManager.web.ts +0 -24
- package/src/handlers/gestures/hoverGesture.ts +0 -83
- package/src/handlers/gestures/longPressGesture.ts +0 -28
- package/src/handlers/gestures/manualGesture.ts +0 -31
- package/src/handlers/gestures/nativeGesture.ts +0 -27
- package/src/handlers/gestures/panGesture.ts +0 -152
- package/src/handlers/gestures/pinchGesture.ts +0 -51
- package/src/handlers/gestures/reanimatedWrapper.ts +0 -56
- package/src/handlers/gestures/rotationGesture.ts +0 -51
- package/src/handlers/gestures/tapGesture.ts +0 -53
- package/src/handlers/handlersRegistry.ts +0 -60
- package/src/jestUtils/index.ts +0 -1
- package/src/jestUtils/jestUtils.ts +0 -505
- package/src/mocks.ts +0 -67
- package/src/specs/RNGestureHandlerButtonNativeComponent.ts +0 -18
- package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -6
- package/src/typeUtils.ts +0 -1
- package/src/utils.ts +0 -54
- package/src/web/constants.ts +0 -8
- package/src/web/detectors/RotationGestureDetector.ts +0 -168
- package/src/web/detectors/ScaleGestureDetector.ts +0 -172
- package/src/web/handlers/FlingGestureHandler.ts +0 -161
- package/src/web/handlers/GestureHandler.ts +0 -849
- package/src/web/handlers/HoverGestureHandler.ts +0 -43
- package/src/web/handlers/LongPressGestureHandler.ts +0 -125
- package/src/web/handlers/ManualGestureHandler.ts +0 -43
- package/src/web/handlers/NativeViewGestureHandler.ts +0 -167
- package/src/web/handlers/PanGestureHandler.ts +0 -485
- package/src/web/handlers/PinchGestureHandler.ts +0 -158
- package/src/web/handlers/RotationGestureHandler.ts +0 -172
- package/src/web/handlers/TapGestureHandler.ts +0 -273
- package/src/web/interfaces.ts +0 -167
- package/src/web/tools/EventManager.ts +0 -104
- package/src/web/tools/GestureHandlerDelegate.ts +0 -23
- package/src/web/tools/GestureHandlerOrchestrator.ts +0 -389
- package/src/web/tools/GestureHandlerWebDelegate.ts +0 -115
- package/src/web/tools/NodeManager.ts +0 -43
- package/src/web/tools/PointerEventManager.ts +0 -202
- package/src/web/tools/TouchEventManager.ts +0 -167
- package/src/web/utils.ts +0 -8
- package/src/web_hammer/DiscreteGestureHandler.ts +0 -82
- package/src/web_hammer/DraggingGestureHandler.ts +0 -34
- package/src/web_hammer/Errors.ts +0 -7
- package/src/web_hammer/FlingGestureHandler.ts +0 -134
- package/src/web_hammer/GestureHandler.ts +0 -599
- package/src/web_hammer/IndiscreteGestureHandler.ts +0 -33
- package/src/web_hammer/LongPressGestureHandler.ts +0 -56
- package/src/web_hammer/NativeViewGestureHandler.ts +0 -47
- package/src/web_hammer/NodeManager.ts +0 -42
- package/src/web_hammer/PanGestureHandler.ts +0 -226
- package/src/web_hammer/PinchGestureHandler.ts +0 -25
- package/src/web_hammer/PressGestureHandler.ts +0 -167
- package/src/web_hammer/RotationGestureHandler.ts +0 -25
- package/src/web_hammer/TapGestureHandler.ts +0 -172
- package/src/web_hammer/constants.ts +0 -48
- package/src/web_hammer/utils.ts +0 -24
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["GestureButtons.tsx"],"names":["RawButton","GestureHandlerButton","shouldCancelWhenOutside","shouldActivateOnStart","BaseButton","React","Component","constructor","props","nativeEvent","state","oldState","pointerInside","active","State","ACTIVE","lastActive","onActiveStateChange","longPressDetected","CANCELLED","onPress","Platform","OS","BEGAN","onLongPress","longPressTimeout","setTimeout","delayLongPress","undefined","clearTimeout","END","FAILED","e","onHandlerStateChange","handleEvent","onGestureEvent","render","rippleColor","rest","AnimatedBaseButton","Animated","createAnimatedComponent","btnStyles","StyleSheet","create","underlay","position","left","right","bottom","top","RectButton","opacity","setValue","activeOpacity","Value","children","style","resolvedStyle","flatten","backgroundColor","underlayColor","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","BorderlessButton","borderless"],"mappings":"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","sourcesContent":["import * as React from 'react';\r\nimport {\r\n Animated,\r\n Platform,\r\n processColor,\r\n StyleSheet,\r\n StyleProp,\r\n ViewStyle,\r\n} from 'react-native';\r\n\r\nimport createNativeWrapper from '../handlers/createNativeWrapper';\r\nimport GestureHandlerButton from './GestureHandlerButton';\r\nimport { State } from '../State';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n} from '../handlers/gestureHandlerCommon';\r\nimport {\r\n NativeViewGestureHandlerPayload,\r\n NativeViewGestureHandlerProps,\r\n} from '../handlers/NativeViewGestureHandler';\r\n\r\nexport interface RawButtonProps extends NativeViewGestureHandlerProps {\r\n /**\r\n * Defines if more than one button could be pressed simultaneously. By default\r\n * set true.\r\n */\r\n exclusive?: boolean;\r\n // TODO: we should transform props in `createNativeWrapper`\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines color of native ripple animation used since API level 21.\r\n */\r\n rippleColor?: any; // it was present in BaseButtonProps before but is used here in code\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines radius of native ripple animation used since API level 21.\r\n */\r\n rippleRadius?: number | null;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Set this to true if you want the ripple animation to render outside the view bounds.\r\n */\r\n borderless?: boolean;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines whether the ripple animation should be drawn on the foreground of the view.\r\n */\r\n foreground?: boolean;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Set this to true if you don't want the system to play sound when the button is pressed.\r\n */\r\n touchSoundDisabled?: boolean;\r\n}\r\n\r\nexport interface BaseButtonProps extends RawButtonProps {\r\n /**\r\n * Called when the button gets pressed (analogous to `onPress` in\r\n * `TouchableHighlight` from RN core).\r\n */\r\n onPress?: (pointerInside: boolean) => void;\r\n\r\n /**\r\n * Called when the button gets pressed and is held for `delayLongPress`\r\n * milliseconds.\r\n */\r\n onLongPress?: () => void;\r\n\r\n /**\r\n * Called when button changes from inactive to active and vice versa. It\r\n * passes active state as a boolean variable as a first parameter for that\r\n * method.\r\n */\r\n onActiveStateChange?: (active: boolean) => void;\r\n style?: StyleProp<ViewStyle>;\r\n testID?: string;\r\n\r\n /**\r\n * Delay, in milliseconds, after which the `onLongPress` callback gets called.\r\n * Defaults to 600.\r\n */\r\n delayLongPress?: number;\r\n}\r\n\r\nexport interface RectButtonProps extends BaseButtonProps {\r\n /**\r\n * Background color that will be dimmed when button is in active state.\r\n */\r\n underlayColor?: string;\r\n\r\n /**\r\n * iOS only.\r\n *\r\n * Opacity applied to the underlay when button is in active state.\r\n */\r\n activeOpacity?: number;\r\n}\r\n\r\nexport interface BorderlessButtonProps extends BaseButtonProps {\r\n /**\r\n * iOS only.\r\n *\r\n * Opacity applied to the button when it is in an active state.\r\n */\r\n activeOpacity?: number;\r\n}\r\n\r\nexport const RawButton = createNativeWrapper(GestureHandlerButton, {\r\n shouldCancelWhenOutside: false,\r\n shouldActivateOnStart: false,\r\n});\r\n\r\nexport class BaseButton extends React.Component<BaseButtonProps> {\r\n static defaultProps = {\r\n delayLongPress: 600,\r\n };\r\n\r\n private lastActive: boolean;\r\n private longPressTimeout: ReturnType<typeof setTimeout> | undefined;\r\n private longPressDetected: boolean;\r\n\r\n constructor(props: BaseButtonProps) {\r\n super(props);\r\n this.lastActive = false;\r\n this.longPressDetected = false;\r\n }\r\n\r\n private handleEvent = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>) => {\r\n const { state, oldState, pointerInside } = nativeEvent;\r\n const active = pointerInside && state === State.ACTIVE;\r\n\r\n if (active !== this.lastActive && this.props.onActiveStateChange) {\r\n this.props.onActiveStateChange(active);\r\n }\r\n\r\n if (\r\n !this.longPressDetected &&\r\n oldState === State.ACTIVE &&\r\n state !== State.CANCELLED &&\r\n this.lastActive &&\r\n this.props.onPress\r\n ) {\r\n this.props.onPress(active);\r\n }\r\n\r\n if (\r\n !this.lastActive &&\r\n // NativeViewGestureHandler sends different events based on platform\r\n state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) &&\r\n pointerInside\r\n ) {\r\n this.longPressDetected = false;\r\n if (this.props.onLongPress) {\r\n this.longPressTimeout = setTimeout(\r\n this.onLongPress,\r\n this.props.delayLongPress\r\n );\r\n }\r\n } else if (\r\n // cancel longpress timeout if it's set and the finger moved out of the view\r\n state === State.ACTIVE &&\r\n !pointerInside &&\r\n this.longPressTimeout !== undefined\r\n ) {\r\n clearTimeout(this.longPressTimeout);\r\n this.longPressTimeout = undefined;\r\n } else if (\r\n // cancel longpress timeout if it's set and the gesture has finished\r\n this.longPressTimeout !== undefined &&\r\n (state === State.END ||\r\n state === State.CANCELLED ||\r\n state === State.FAILED)\r\n ) {\r\n clearTimeout(this.longPressTimeout);\r\n this.longPressTimeout = undefined;\r\n }\r\n\r\n this.lastActive = active;\r\n };\r\n\r\n private onLongPress = () => {\r\n this.longPressDetected = true;\r\n this.props.onLongPress?.();\r\n };\r\n\r\n // Normally, the parent would execute it's handler first, then forward the\r\n // event to listeners. However, here our handler is virtually only forwarding\r\n // events to listeners, so we reverse the order to keep the proper order of\r\n // the callbacks (from \"raw\" ones to \"processed\").\r\n private onHandlerStateChange = (\r\n e: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>\r\n ) => {\r\n this.props.onHandlerStateChange?.(e);\r\n this.handleEvent(e);\r\n };\r\n\r\n private onGestureEvent = (\r\n e: GestureEvent<NativeViewGestureHandlerPayload>\r\n ) => {\r\n this.props.onGestureEvent?.(e);\r\n this.handleEvent(\r\n e as HandlerStateChangeEvent<NativeViewGestureHandlerPayload>\r\n ); // TODO: maybe it is not correct\r\n };\r\n\r\n render() {\r\n const { rippleColor, ...rest } = this.props;\r\n\r\n return (\r\n <RawButton\r\n rippleColor={processColor(rippleColor)}\r\n {...rest}\r\n onGestureEvent={this.onGestureEvent}\r\n onHandlerStateChange={this.onHandlerStateChange}\r\n />\r\n );\r\n }\r\n}\r\n\r\nconst AnimatedBaseButton = Animated.createAnimatedComponent(BaseButton);\r\n\r\nconst btnStyles = StyleSheet.create({\r\n underlay: {\r\n position: 'absolute',\r\n left: 0,\r\n right: 0,\r\n bottom: 0,\r\n top: 0,\r\n },\r\n});\r\n\r\nexport class RectButton extends React.Component<RectButtonProps> {\r\n static defaultProps = {\r\n activeOpacity: 0.105,\r\n underlayColor: 'black',\r\n };\r\n\r\n private opacity: Animated.Value;\r\n\r\n constructor(props: RectButtonProps) {\r\n super(props);\r\n this.opacity = new Animated.Value(0);\r\n }\r\n\r\n private onActiveStateChange = (active: boolean) => {\r\n if (Platform.OS !== 'android') {\r\n this.opacity.setValue(active ? this.props.activeOpacity! : 0);\r\n }\r\n\r\n this.props.onActiveStateChange?.(active);\r\n };\r\n\r\n render() {\r\n const { children, style, ...rest } = this.props;\r\n\r\n const resolvedStyle = StyleSheet.flatten(style ?? {});\r\n\r\n return (\r\n <BaseButton\r\n {...rest}\r\n style={resolvedStyle}\r\n onActiveStateChange={this.onActiveStateChange}>\r\n <Animated.View\r\n style={[\r\n btnStyles.underlay,\r\n {\r\n opacity: this.opacity,\r\n backgroundColor: this.props.underlayColor,\r\n borderRadius: resolvedStyle.borderRadius,\r\n borderTopLeftRadius: resolvedStyle.borderTopLeftRadius,\r\n borderTopRightRadius: resolvedStyle.borderTopRightRadius,\r\n borderBottomLeftRadius: resolvedStyle.borderBottomLeftRadius,\r\n borderBottomRightRadius: resolvedStyle.borderBottomRightRadius,\r\n },\r\n ]}\r\n />\r\n {children}\r\n </BaseButton>\r\n );\r\n }\r\n}\r\n\r\nexport class BorderlessButton extends React.Component<BorderlessButtonProps> {\r\n static defaultProps = {\r\n activeOpacity: 0.3,\r\n borderless: true,\r\n };\r\n\r\n private opacity: Animated.Value;\r\n\r\n constructor(props: BorderlessButtonProps) {\r\n super(props);\r\n this.opacity = new Animated.Value(1);\r\n }\r\n\r\n private onActiveStateChange = (active: boolean) => {\r\n if (Platform.OS !== 'android') {\r\n this.opacity.setValue(active ? this.props.activeOpacity! : 1);\r\n }\r\n\r\n this.props.onActiveStateChange?.(active);\r\n };\r\n\r\n render() {\r\n const { children, style, ...rest } = this.props;\r\n\r\n return (\r\n <AnimatedBaseButton\r\n {...rest}\r\n onActiveStateChange={this.onActiveStateChange}\r\n style={[style, Platform.OS === 'ios' && { opacity: this.opacity }]}>\r\n {children}\r\n </AnimatedBaseButton>\r\n );\r\n }\r\n}\r\n\r\nexport { default as PureNativeButton } from './GestureHandlerButton';\r\n"]}
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_createNativeWrapper","_interopRequireDefault","_GestureHandlerButton","_State","obj","__esModule","default","_getRequireWildcardCache","e","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_extends","assign","bind","target","arguments","length","source","key","apply","RawButton","exports","createNativeWrapper","GestureHandlerButton","shouldCancelWhenOutside","shouldActivateOnStart","BaseButton","Component","defaultProps","delayLongPress","constructor","props","lastActive","longPressDetected","handleEvent","nativeEvent","state","oldState","pointerInside","active","State","ACTIVE","onActiveStateChange","CANCELLED","onPress","Platform","OS","BEGAN","onLongPress","longPressTimeout","setTimeout","undefined","clearTimeout","END","FAILED","_this$props$onLongPre","_this$props","onHandlerStateChange","_this$props$onHandler","_this$props2","onGestureEvent","_this$props$onGesture","_this$props3","render","rippleColor","rest","createElement","processColor","AnimatedBaseButton","Animated","createAnimatedComponent","btnStyles","StyleSheet","create","underlay","position","left","right","bottom","top","RectButton","activeOpacity","underlayColor","opacity","Value","_this$props$onActiveS","_this$props4","setValue","children","style","resolvedStyle","flatten","View","backgroundColor","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","BorderlessButton","borderless","_this$props$onActiveS2","_this$props5"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureButtons.tsx"],"mappings":"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"}
|
@@ -4,11 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
5
5
|
});
|
6
6
|
exports.default = void 0;
|
7
|
-
|
8
|
-
var
|
9
|
-
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
|
12
|
-
var _default = _RNGestureHandlerButtonNativeComponent.default;
|
13
|
-
exports.default = _default;
|
7
|
+
var _RNGestureHandlerButton = require("./RNGestureHandlerButton");
|
8
|
+
var _default = exports.default = _RNGestureHandlerButton.RNGestureHandlerButton;
|
14
9
|
//# sourceMappingURL=GestureHandlerButton.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"names":["_RNGestureHandlerButton","require","_default","exports","default","RNGestureHandlerButton"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureHandlerButton.tsx"],"mappings":";;;;;;AAEA,IAAAA,uBAAA,GAAAC,OAAA;AAAkE,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAEnDC,8CAAsB"}
|
@@ -4,21 +4,21 @@ Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
5
5
|
});
|
6
6
|
exports.default = GestureHandlerRootView;
|
7
|
-
|
7
|
+
var _reactNativeHarmony = require("react-native-harmony");
|
8
8
|
var React = _interopRequireWildcard(require("react"));
|
9
|
-
|
10
|
-
var _reactNative = require("react-native");
|
11
|
-
|
12
9
|
var _init = require("../init");
|
13
|
-
|
14
|
-
var _GestureHandlerRootViewContext = _interopRequireDefault(require("../GestureHandlerRootViewContext"));
|
15
|
-
|
10
|
+
var _GestureHandlerRootViewContext = _interopRequireDefault(require("react-native-gesture-handler/src/GestureHandlerRootViewContext"));
|
16
11
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
17
|
-
|
18
|
-
function
|
19
|
-
|
20
|
-
|
21
|
-
|
12
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
13
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
14
|
+
const GestureHandlerRootViewNativeComponent = (0, _reactNativeHarmony.registerViewConfig)('RNGestureHandlerRootView', () => ({
|
15
|
+
uiViewClassName: 'RNGestureHandlerRootView',
|
16
|
+
bubblingEventTypes: {},
|
17
|
+
directEventTypes: {},
|
18
|
+
validAttributes: {
|
19
|
+
..._reactNativeHarmony.ReactNativeViewAttributes.UIView
|
20
|
+
}
|
21
|
+
}));
|
22
22
|
function GestureHandlerRootView(props) {
|
23
23
|
// try initialize fabric on the first render, at this point we can
|
24
24
|
// reliably check if fabric is enabled (the function contains a flag
|
@@ -26,6 +26,6 @@ function GestureHandlerRootView(props) {
|
|
26
26
|
(0, _init.maybeInitializeFabric)();
|
27
27
|
return /*#__PURE__*/React.createElement(_GestureHandlerRootViewContext.default.Provider, {
|
28
28
|
value: true
|
29
|
-
}, /*#__PURE__*/React.createElement(
|
29
|
+
}, /*#__PURE__*/React.createElement(GestureHandlerRootViewNativeComponent, props));
|
30
30
|
}
|
31
31
|
//# sourceMappingURL=GestureHandlerRootView.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"names":["_reactNativeHarmony","require","React","_interopRequireWildcard","_init","_GestureHandlerRootViewContext","_interopRequireDefault","obj","__esModule","default","_getRequireWildcardCache","e","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","GestureHandlerRootViewNativeComponent","registerViewConfig","uiViewClassName","bubblingEventTypes","directEventTypes","validAttributes","ReactNativeViewAttributes","UIView","GestureHandlerRootView","props","maybeInitializeFabric","createElement","Provider","value"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureHandlerRootView.tsx"],"mappings":";;;;;;AAAA,IAAAA,mBAAA,GAAAC,OAAA;AACA,IAAAC,KAAA,GAAAC,uBAAA,CAAAF,OAAA;AAGA,IAAAG,KAAA,GAAAH,OAAA;AACA,IAAAI,8BAAA,GAAAC,sBAAA,CAAAL,OAAA;AAA2G,SAAAK,uBAAAC,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAR,wBAAAQ,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAH,UAAA,SAAAG,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAF,OAAA,EAAAE,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAC,GAAA,CAAAJ,CAAA,UAAAG,CAAA,CAAAE,GAAA,CAAAL,CAAA,OAAAM,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAZ,CAAA,oBAAAY,CAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAY,CAAA,SAAAI,CAAA,GAAAR,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAX,CAAA,EAAAY,CAAA,UAAAI,CAAA,KAAAA,CAAA,CAAAX,GAAA,IAAAW,CAAA,CAAAC,GAAA,IAAAR,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAI,CAAA,IAAAV,CAAA,CAAAM,CAAA,IAAAZ,CAAA,CAAAY,CAAA,YAAAN,CAAA,CAAAR,OAAA,GAAAE,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAc,GAAA,CAAAjB,CAAA,EAAAM,CAAA,GAAAA,CAAA;AAG3G,MAAMY,qCAAqC,GAAG,IAAAC,sCAAkB,EAAC,0BAA0B,EAAE,OAAO;EAClGC,eAAe,EAAE,0BAA0B;EAC3CC,kBAAkB,EAAE,CAAC,CAAC;EACtBC,gBAAgB,EAAE,CAAC,CAAC;EACpBC,eAAe,EAAE;IACf,GAAGC,6CAAyB,CAACC;EAC/B;AACF,CAAC,CAAC,CAAC;AAKY,SAASC,sBAAsBA,CAC5CC,KAAkC,EAClC;EACA;EACA;EACA;EACA,IAAAC,2BAAqB,EAAC,CAAC;EAEvB,oBACErC,KAAA,CAAAsC,aAAA,CAACnC,8BAAA,CAAAI,OAA6B,CAACgC,QAAQ;IAACC,KAAK;EAAA,gBAC3CxC,KAAA,CAAAsC,aAAA,CAACX,qCAAqC,EAAKS,KAAQ,CACb,CAAC;AAE7C"}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.RNGestureHandlerButton = void 0;
|
7
|
+
var _reactNativeHarmony = require("react-native-harmony");
|
8
|
+
const RNGestureHandlerButton = exports.RNGestureHandlerButton = (0, _reactNativeHarmony.registerViewConfig)('RNGestureHandlerButton', () => ({
|
9
|
+
uiViewClassName: 'RNGestureHandlerButton',
|
10
|
+
bubblingEventTypes: {},
|
11
|
+
directEventTypes: {},
|
12
|
+
validAttributes: {
|
13
|
+
..._reactNativeHarmony.ReactNativeViewAttributes.UIView,
|
14
|
+
exclusive: true,
|
15
|
+
foreground: true,
|
16
|
+
borderless: true,
|
17
|
+
enabled: true,
|
18
|
+
rippleColor: true,
|
19
|
+
rippleRadius: true,
|
20
|
+
touchSoundDisabled: true
|
21
|
+
}
|
22
|
+
}));
|
23
|
+
//# sourceMappingURL=RNGestureHandlerButton.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_reactNativeHarmony","require","RNGestureHandlerButton","exports","registerViewConfig","uiViewClassName","bubblingEventTypes","directEventTypes","validAttributes","ReactNativeViewAttributes","UIView","exclusive","foreground","borderless","enabled","rippleColor","rippleRadius","touchSoundDisabled"],"sourceRoot":"..\\..\\..\\src","sources":["components/RNGestureHandlerButton.tsx"],"mappings":";;;;;;AAAA,IAAAA,mBAAA,GAAAC,OAAA;AAKO,MAAMC,sBAAsB,GAAAC,OAAA,CAAAD,sBAAA,GAAG,IAAAE,sCAAkB,EACtD,wBAAwB,EACxB,OAAO;EACLC,eAAe,EAAE,wBAAwB;EACzCC,kBAAkB,EAAE,CAAC,CAAC;EACtBC,gBAAgB,EAAE,CAAC,CAAC;EACpBC,eAAe,EAAE;IACf,GAAGC,6CAAyB,CAACC,MAAM;IACnCC,SAAS,EAAE,IAAI;IACfC,UAAU,EAAE,IAAI;IAChBC,UAAU,EAAE,IAAI;IAChBC,OAAO,EAAE,IAAI;IACbC,WAAW,EAAE,IAAI;IACjBC,YAAY,EAAE,IAAI;IAClBC,kBAAkB,EAAE;EACtB;AACF,CAAC,CACH,CAAC"}
|
@@ -4,23 +4,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
5
5
|
});
|
6
6
|
exports.default = exports.TOUCHABLE_STATE = void 0;
|
7
|
-
|
8
|
-
var React =
|
9
|
-
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
8
|
+
var React = _react;
|
10
9
|
var _reactNative = require("react-native");
|
11
|
-
|
12
|
-
var _State = require("../../State");
|
13
|
-
|
10
|
+
var _State = require("react-native-gesture-handler/src/State");
|
14
11
|
var _GestureButtons = require("../GestureButtons");
|
15
|
-
|
16
|
-
function
|
17
|
-
|
18
|
-
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
19
|
-
|
20
|
-
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
21
|
-
|
22
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
23
|
-
|
12
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
13
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
14
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
24
15
|
/**
|
25
16
|
* Each touchable is a states' machine which preforms transitions.
|
26
17
|
* On very beginning (and on the very end or recognition) touchable is
|
@@ -28,86 +19,37 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
28
19
|
* travel outside it transits to special MOVED_OUTSIDE state. Gesture recognition
|
29
20
|
* finishes in UNDETERMINED state.
|
30
21
|
*/
|
31
|
-
const TOUCHABLE_STATE = {
|
22
|
+
const TOUCHABLE_STATE = exports.TOUCHABLE_STATE = {
|
32
23
|
UNDETERMINED: 0,
|
33
24
|
BEGAN: 1,
|
34
25
|
MOVED_OUTSIDE: 2
|
35
26
|
};
|
36
|
-
|
27
|
+
|
28
|
+
// TODO: maybe can be better
|
29
|
+
// TODO: all clearTimeout have ! added, maybe they shouldn't ?
|
37
30
|
|
38
31
|
/**
|
39
32
|
* GenericTouchable is not intented to be used as it is.
|
40
33
|
* Should be treated as a source for the rest of touchables
|
41
34
|
*/
|
42
|
-
class GenericTouchable extends React.Component {
|
43
|
-
constructor(...args) {
|
44
|
-
super(...args);
|
45
|
-
|
46
|
-
_defineProperty(this, "pressInTimeout", void 0);
|
47
|
-
|
48
|
-
_defineProperty(this, "pressOutTimeout", void 0);
|
49
|
-
|
50
|
-
_defineProperty(this, "longPressTimeout", void 0);
|
51
|
-
|
52
|
-
_defineProperty(this, "longPressDetected", false);
|
53
|
-
|
54
|
-
_defineProperty(this, "pointerInside", true);
|
55
|
-
|
56
|
-
_defineProperty(this, "STATE", TOUCHABLE_STATE.UNDETERMINED);
|
57
|
-
|
58
|
-
_defineProperty(this, "onGestureEvent", ({
|
59
|
-
nativeEvent: {
|
60
|
-
pointerInside
|
61
|
-
}
|
62
|
-
}) => {
|
63
|
-
if (this.pointerInside !== pointerInside) {
|
64
|
-
if (pointerInside) {
|
65
|
-
this.onMoveIn();
|
66
|
-
} else {
|
67
|
-
this.onMoveOut();
|
68
|
-
}
|
69
|
-
}
|
70
|
-
|
71
|
-
this.pointerInside = pointerInside;
|
72
|
-
});
|
73
35
|
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
// Need to handle case with external cancellation (e.g. by ScrollView)
|
83
|
-
this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
|
84
|
-
} else if ( // This platform check is an implication of slightly different behavior of handlers on different platform.
|
85
|
-
// And Android "Active" state is achieving on first move of a finger, not on press in.
|
86
|
-
// On iOS event on "Began" is not delivered.
|
87
|
-
state === (_reactNative.Platform.OS !== 'android' ? _State.State.ACTIVE : _State.State.BEGAN) && this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
|
88
|
-
// Moving inside requires
|
89
|
-
this.handlePressIn();
|
90
|
-
} else if (state === _State.State.END) {
|
91
|
-
const shouldCallOnPress = !this.longPressDetected && this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE && this.pressOutTimeout === null;
|
92
|
-
this.handleGoToUndetermined();
|
93
|
-
|
94
|
-
if (shouldCallOnPress) {
|
95
|
-
var _this$props$onPress, _this$props;
|
96
|
-
|
97
|
-
// Calls only inside component whether no long press was called previously
|
98
|
-
(_this$props$onPress = (_this$props = this.props).onPress) === null || _this$props$onPress === void 0 ? void 0 : _this$props$onPress.call(_this$props);
|
99
|
-
}
|
100
|
-
}
|
101
|
-
});
|
36
|
+
class GenericTouchable extends _react.Component {
|
37
|
+
static defaultProps = {
|
38
|
+
delayLongPress: 600,
|
39
|
+
extraButtonProps: {
|
40
|
+
rippleColor: 'transparent',
|
41
|
+
exclusive: true
|
42
|
+
}
|
43
|
+
};
|
102
44
|
|
103
|
-
|
104
|
-
var _this$props$onLongPre, _this$props2;
|
45
|
+
// timeout handlers
|
105
46
|
|
106
|
-
|
47
|
+
// This flag is required since recognition of longPress implies not-invoking onPress
|
48
|
+
longPressDetected = false;
|
49
|
+
pointerInside = true;
|
107
50
|
|
108
|
-
|
109
|
-
|
110
|
-
}
|
51
|
+
// State of touchable
|
52
|
+
STATE = TOUCHABLE_STATE.UNDETERMINED;
|
111
53
|
|
112
54
|
// handlePressIn in called on first touch on traveling inside component.
|
113
55
|
// Handles state transition with delay.
|
@@ -120,15 +62,13 @@ class GenericTouchable extends React.Component {
|
|
120
62
|
} else {
|
121
63
|
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
122
64
|
}
|
123
|
-
|
124
65
|
if (this.props.onLongPress) {
|
125
66
|
const time = (this.props.delayPressIn || 0) + (this.props.delayLongPress || 0);
|
126
67
|
this.longPressTimeout = setTimeout(this.onLongPressDetected, time);
|
127
68
|
}
|
128
|
-
}
|
69
|
+
}
|
70
|
+
// handleMoveOutside in called on traveling outside component.
|
129
71
|
// Handles state transition with delay.
|
130
|
-
|
131
|
-
|
132
72
|
handleMoveOutside() {
|
133
73
|
if (this.props.delayPressOut) {
|
134
74
|
this.pressOutTimeout = this.pressOutTimeout || setTimeout(() => {
|
@@ -138,18 +78,16 @@ class GenericTouchable extends React.Component {
|
|
138
78
|
} else {
|
139
79
|
this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);
|
140
80
|
}
|
141
|
-
}
|
142
|
-
|
81
|
+
}
|
143
82
|
|
83
|
+
// handleGoToUndetermined transits to UNDETERMINED state with proper delay
|
144
84
|
handleGoToUndetermined() {
|
145
85
|
clearTimeout(this.pressOutTimeout); // TODO: maybe it can be undefined
|
146
|
-
|
147
86
|
if (this.props.delayPressOut) {
|
148
87
|
this.pressOutTimeout = setTimeout(() => {
|
149
88
|
if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
|
150
89
|
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
151
90
|
}
|
152
|
-
|
153
91
|
this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
|
154
92
|
this.pressOutTimeout = null;
|
155
93
|
}, this.props.delayPressOut);
|
@@ -157,16 +95,13 @@ class GenericTouchable extends React.Component {
|
|
157
95
|
if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
|
158
96
|
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
159
97
|
}
|
160
|
-
|
161
98
|
this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
|
162
99
|
}
|
163
100
|
}
|
164
|
-
|
165
101
|
componentDidMount() {
|
166
102
|
this.reset();
|
167
|
-
}
|
168
|
-
|
169
|
-
|
103
|
+
}
|
104
|
+
// reset timeout to prevent memory leaks.
|
170
105
|
reset() {
|
171
106
|
this.longPressDetected = false;
|
172
107
|
this.pointerInside = true;
|
@@ -176,76 +111,108 @@ class GenericTouchable extends React.Component {
|
|
176
111
|
this.pressOutTimeout = null;
|
177
112
|
this.longPressTimeout = null;
|
178
113
|
this.pressInTimeout = null;
|
179
|
-
}
|
180
|
-
|
114
|
+
}
|
181
115
|
|
116
|
+
// All states' transitions are defined here.
|
182
117
|
moveToState(newState) {
|
183
|
-
var _this$props$onStateCh, _this$
|
184
|
-
|
118
|
+
var _this$props$onStateCh, _this$props4;
|
185
119
|
if (newState === this.STATE) {
|
186
120
|
// Ignore dummy transitions
|
187
121
|
return;
|
188
122
|
}
|
189
|
-
|
190
123
|
if (newState === TOUCHABLE_STATE.BEGAN) {
|
191
|
-
var _this$props$onPressIn, _this$
|
192
|
-
|
124
|
+
var _this$props$onPressIn, _this$props;
|
193
125
|
// First touch and moving inside
|
194
|
-
(_this$props$onPressIn = (_this$
|
126
|
+
(_this$props$onPressIn = (_this$props = this.props).onPressIn) === null || _this$props$onPressIn === void 0 || _this$props$onPressIn.call(_this$props);
|
195
127
|
} else if (newState === TOUCHABLE_STATE.MOVED_OUTSIDE) {
|
196
|
-
var _this$props$onPressOu, _this$
|
197
|
-
|
128
|
+
var _this$props$onPressOu, _this$props2;
|
198
129
|
// Moving outside
|
199
|
-
(_this$props$onPressOu = (_this$
|
130
|
+
(_this$props$onPressOu = (_this$props2 = this.props).onPressOut) === null || _this$props$onPressOu === void 0 || _this$props$onPressOu.call(_this$props2);
|
200
131
|
} else if (newState === TOUCHABLE_STATE.UNDETERMINED) {
|
201
132
|
// Need to reset each time on transition to UNDETERMINED
|
202
133
|
this.reset();
|
203
|
-
|
204
134
|
if (this.STATE === TOUCHABLE_STATE.BEGAN) {
|
205
|
-
var _this$props$onPressOu2, _this$
|
206
|
-
|
135
|
+
var _this$props$onPressOu2, _this$props3;
|
207
136
|
// ... and if it happens inside button.
|
208
|
-
(_this$props$onPressOu2 = (_this$
|
137
|
+
(_this$props$onPressOu2 = (_this$props3 = this.props).onPressOut) === null || _this$props$onPressOu2 === void 0 || _this$props$onPressOu2.call(_this$props3);
|
209
138
|
}
|
210
|
-
}
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
139
|
+
}
|
140
|
+
// Finally call lister (used by subclasses)
|
141
|
+
(_this$props$onStateCh = (_this$props4 = this.props).onStateChange) === null || _this$props$onStateCh === void 0 || _this$props$onStateCh.call(_this$props4, this.STATE, newState);
|
142
|
+
// ... and make transition.
|
215
143
|
this.STATE = newState;
|
216
144
|
}
|
217
|
-
|
145
|
+
onGestureEvent = ({
|
146
|
+
nativeEvent: {
|
147
|
+
pointerInside
|
148
|
+
}
|
149
|
+
}) => {
|
150
|
+
if (this.pointerInside !== pointerInside) {
|
151
|
+
if (pointerInside) {
|
152
|
+
this.onMoveIn();
|
153
|
+
} else {
|
154
|
+
this.onMoveOut();
|
155
|
+
}
|
156
|
+
}
|
157
|
+
this.pointerInside = pointerInside;
|
158
|
+
};
|
159
|
+
onHandlerStateChange = ({
|
160
|
+
nativeEvent
|
161
|
+
}) => {
|
162
|
+
const {
|
163
|
+
state
|
164
|
+
} = nativeEvent;
|
165
|
+
if (state === _State.State.CANCELLED || state === _State.State.FAILED) {
|
166
|
+
// Need to handle case with external cancellation (e.g. by ScrollView)
|
167
|
+
this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
|
168
|
+
} else if (
|
169
|
+
// This platform check is an implication of slightly different behavior of handlers on different platform.
|
170
|
+
// And Android "Active" state is achieving on first move of a finger, not on press in.
|
171
|
+
// On iOS event on "Began" is not delivered.
|
172
|
+
state === (_reactNative.Platform.OS !== 'android' ? _State.State.ACTIVE : _State.State.BEGAN) && this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
|
173
|
+
// Moving inside requires
|
174
|
+
this.handlePressIn();
|
175
|
+
} else if (state === _State.State.END) {
|
176
|
+
const shouldCallOnPress = !this.longPressDetected && this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE && this.pressOutTimeout === null;
|
177
|
+
this.handleGoToUndetermined();
|
178
|
+
if (shouldCallOnPress) {
|
179
|
+
var _this$props$onPress, _this$props5;
|
180
|
+
// Calls only inside component whether no long press was called previously
|
181
|
+
(_this$props$onPress = (_this$props5 = this.props).onPress) === null || _this$props$onPress === void 0 || _this$props$onPress.call(_this$props5);
|
182
|
+
}
|
183
|
+
}
|
184
|
+
};
|
185
|
+
onLongPressDetected = () => {
|
186
|
+
var _this$props$onLongPre, _this$props6;
|
187
|
+
this.longPressDetected = true;
|
188
|
+
// checked for in the caller of `onLongPressDetected`, but better to check twice
|
189
|
+
(_this$props$onLongPre = (_this$props6 = this.props).onLongPress) === null || _this$props$onLongPre === void 0 || _this$props$onLongPre.call(_this$props6);
|
190
|
+
};
|
218
191
|
componentWillUnmount() {
|
219
192
|
// to prevent memory leaks
|
220
193
|
this.reset();
|
221
194
|
}
|
222
|
-
|
223
195
|
onMoveIn() {
|
224
196
|
if (this.STATE === TOUCHABLE_STATE.MOVED_OUTSIDE) {
|
225
197
|
// This call is not throttled with delays (like in RN's implementation).
|
226
198
|
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
227
199
|
}
|
228
200
|
}
|
229
|
-
|
230
201
|
onMoveOut() {
|
231
202
|
// long press should no longer be detected
|
232
203
|
clearTimeout(this.longPressTimeout);
|
233
204
|
this.longPressTimeout = null;
|
234
|
-
|
235
205
|
if (this.STATE === TOUCHABLE_STATE.BEGAN) {
|
236
206
|
this.handleMoveOutside();
|
237
207
|
}
|
238
208
|
}
|
239
|
-
|
240
209
|
render() {
|
241
|
-
|
242
|
-
|
243
|
-
const hitSlop = (_ref = typeof this.props.hitSlop === 'number' ? {
|
210
|
+
const hitSlop = (typeof this.props.hitSlop === 'number' ? {
|
244
211
|
top: this.props.hitSlop,
|
245
212
|
left: this.props.hitSlop,
|
246
213
|
bottom: this.props.hitSlop,
|
247
214
|
right: this.props.hitSlop
|
248
|
-
} : this.props.hitSlop)
|
215
|
+
} : this.props.hitSlop) ?? undefined;
|
249
216
|
const coreProps = {
|
250
217
|
accessible: this.props.accessible !== false,
|
251
218
|
accessibilityLabel: this.props.accessibilityLabel,
|
@@ -261,29 +228,20 @@ class GenericTouchable extends React.Component {
|
|
261
228
|
};
|
262
229
|
return /*#__PURE__*/React.createElement(_GestureButtons.BaseButton, _extends({
|
263
230
|
style: this.props.containerStyle,
|
264
|
-
onHandlerStateChange:
|
231
|
+
onHandlerStateChange:
|
232
|
+
// TODO: not sure if it can be undefined instead of null
|
265
233
|
this.props.disabled ? undefined : this.onHandlerStateChange,
|
266
234
|
onGestureEvent: this.onGestureEvent,
|
267
235
|
hitSlop: hitSlop,
|
268
236
|
shouldActivateOnStart: this.props.shouldActivateOnStart,
|
269
237
|
disallowInterruption: this.props.disallowInterruption,
|
270
238
|
testID: this.props.testID,
|
271
|
-
touchSoundDisabled:
|
239
|
+
touchSoundDisabled: this.props.touchSoundDisabled ?? false,
|
272
240
|
enabled: !this.props.disabled
|
273
241
|
}, this.props.extraButtonProps), /*#__PURE__*/React.createElement(_reactNative.Animated.View, _extends({}, coreProps, {
|
274
242
|
style: this.props.style
|
275
243
|
}), this.props.children));
|
276
244
|
}
|
277
|
-
|
278
245
|
}
|
279
|
-
|
280
246
|
exports.default = GenericTouchable;
|
281
|
-
|
282
|
-
_defineProperty(GenericTouchable, "defaultProps", {
|
283
|
-
delayLongPress: 600,
|
284
|
-
extraButtonProps: {
|
285
|
-
rippleColor: 'transparent',
|
286
|
-
exclusive: true
|
287
|
-
}
|
288
|
-
});
|
289
247
|
//# sourceMappingURL=GenericTouchable.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["GenericTouchable.tsx"],"names":["TOUCHABLE_STATE","UNDETERMINED","BEGAN","MOVED_OUTSIDE","GenericTouchable","Component","nativeEvent","pointerInside","onMoveIn","onMoveOut","state","State","CANCELLED","FAILED","moveToState","Platform","OS","ACTIVE","STATE","handlePressIn","END","shouldCallOnPress","longPressDetected","pressOutTimeout","handleGoToUndetermined","props","onPress","onLongPress","delayPressIn","pressInTimeout","setTimeout","time","delayLongPress","longPressTimeout","onLongPressDetected","handleMoveOutside","delayPressOut","clearTimeout","componentDidMount","reset","newState","onPressIn","onPressOut","onStateChange","componentWillUnmount","render","hitSlop","top","left","bottom","right","undefined","coreProps","accessible","accessibilityLabel","accessibilityHint","accessibilityRole","accessibilityState","accessibilityActions","onAccessibilityAction","nativeID","onLayout","containerStyle","disabled","onHandlerStateChange","onGestureEvent","shouldActivateOnStart","disallowInterruption","testID","touchSoundDisabled","extraButtonProps","style","children","rippleColor","exclusive"],"mappings":"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","sourcesContent":["import * as React from 'react';\r\nimport { Component } from 'react';\r\nimport {\r\n Animated,\r\n Platform,\r\n StyleProp,\r\n ViewStyle,\r\n TouchableWithoutFeedbackProps,\r\n Insets,\r\n} from 'react-native';\r\n\r\nimport { State } from '../../State';\r\nimport { BaseButton } from '../GestureButtons';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n} from '../../handlers/gestureHandlerCommon';\r\nimport { NativeViewGestureHandlerPayload } from '../../handlers/NativeViewGestureHandler';\r\nimport { TouchableNativeFeedbackExtraProps } from './TouchableNativeFeedback.android';\r\n\r\n/**\r\n * Each touchable is a states' machine which preforms transitions.\r\n * On very beginning (and on the very end or recognition) touchable is\r\n * UNDETERMINED. Then it moves to BEGAN. If touchable recognizes that finger\r\n * travel outside it transits to special MOVED_OUTSIDE state. Gesture recognition\r\n * finishes in UNDETERMINED state.\r\n */\r\nexport const TOUCHABLE_STATE = {\r\n UNDETERMINED: 0,\r\n BEGAN: 1,\r\n MOVED_OUTSIDE: 2,\r\n} as const;\r\n\r\ntype TouchableState = typeof TOUCHABLE_STATE[keyof typeof TOUCHABLE_STATE];\r\n\r\nexport interface GenericTouchableProps\r\n extends Omit<TouchableWithoutFeedbackProps, 'hitSlop'> {\r\n // Decided to drop not used fields from RN's implementation.\r\n // e.g. onBlur and onFocus as well as deprecated props. - TODO: this comment may be unuseful in this moment\r\n\r\n // TODO: in RN these events get native event parameter, which prolly could be used in our implementation too\r\n onPress?: () => void;\r\n onPressIn?: () => void;\r\n onPressOut?: () => void;\r\n onLongPress?: () => void;\r\n\r\n nativeID?: string;\r\n shouldActivateOnStart?: boolean;\r\n disallowInterruption?: boolean;\r\n\r\n containerStyle?: StyleProp<ViewStyle>;\r\n hitSlop?: Insets | number;\r\n}\r\n\r\ninterface InternalProps {\r\n extraButtonProps: TouchableNativeFeedbackExtraProps;\r\n onStateChange?: (oldState: TouchableState, newState: TouchableState) => void;\r\n}\r\n\r\n// TODO: maybe can be better\r\n// TODO: all clearTimeout have ! added, maybe they shouldn't ?\r\ntype Timeout = ReturnType<typeof setTimeout> | null | undefined;\r\n\r\n/**\r\n * GenericTouchable is not intented to be used as it is.\r\n * Should be treated as a source for the rest of touchables\r\n */\r\n\r\nexport default class GenericTouchable extends Component<\r\n GenericTouchableProps & InternalProps\r\n> {\r\n static defaultProps = {\r\n delayLongPress: 600,\r\n extraButtonProps: {\r\n rippleColor: 'transparent',\r\n exclusive: true,\r\n },\r\n };\r\n\r\n // timeout handlers\r\n pressInTimeout: Timeout;\r\n pressOutTimeout: Timeout;\r\n longPressTimeout: Timeout;\r\n\r\n // This flag is required since recognition of longPress implies not-invoking onPress\r\n longPressDetected = false;\r\n\r\n pointerInside = true;\r\n\r\n // State of touchable\r\n STATE: TouchableState = TOUCHABLE_STATE.UNDETERMINED;\r\n\r\n // handlePressIn in called on first touch on traveling inside component.\r\n // Handles state transition with delay.\r\n handlePressIn() {\r\n if (this.props.delayPressIn) {\r\n this.pressInTimeout = setTimeout(() => {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n this.pressInTimeout = null;\r\n }, this.props.delayPressIn);\r\n } else {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n if (this.props.onLongPress) {\r\n const time =\r\n (this.props.delayPressIn || 0) + (this.props.delayLongPress || 0);\r\n this.longPressTimeout = setTimeout(this.onLongPressDetected, time);\r\n }\r\n }\r\n // handleMoveOutside in called on traveling outside component.\r\n // Handles state transition with delay.\r\n handleMoveOutside() {\r\n if (this.props.delayPressOut) {\r\n this.pressOutTimeout =\r\n this.pressOutTimeout ||\r\n setTimeout(() => {\r\n this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);\r\n this.pressOutTimeout = null;\r\n }, this.props.delayPressOut);\r\n } else {\r\n this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);\r\n }\r\n }\r\n\r\n // handleGoToUndetermined transits to UNDETERMINED state with proper delay\r\n handleGoToUndetermined() {\r\n clearTimeout(this.pressOutTimeout!); // TODO: maybe it can be undefined\r\n if (this.props.delayPressOut) {\r\n this.pressOutTimeout = setTimeout(() => {\r\n if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n this.pressOutTimeout = null;\r\n }, this.props.delayPressOut);\r\n } else {\r\n if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n }\r\n }\r\n\r\n componentDidMount() {\r\n this.reset();\r\n }\r\n // reset timeout to prevent memory leaks.\r\n reset() {\r\n this.longPressDetected = false;\r\n this.pointerInside = true;\r\n clearTimeout(this.pressInTimeout!);\r\n clearTimeout(this.pressOutTimeout!);\r\n clearTimeout(this.longPressTimeout!);\r\n this.pressOutTimeout = null;\r\n this.longPressTimeout = null;\r\n this.pressInTimeout = null;\r\n }\r\n\r\n // All states' transitions are defined here.\r\n moveToState(newState: TouchableState) {\r\n if (newState === this.STATE) {\r\n // Ignore dummy transitions\r\n return;\r\n }\r\n if (newState === TOUCHABLE_STATE.BEGAN) {\r\n // First touch and moving inside\r\n this.props.onPressIn?.();\r\n } else if (newState === TOUCHABLE_STATE.MOVED_OUTSIDE) {\r\n // Moving outside\r\n this.props.onPressOut?.();\r\n } else if (newState === TOUCHABLE_STATE.UNDETERMINED) {\r\n // Need to reset each time on transition to UNDETERMINED\r\n this.reset();\r\n if (this.STATE === TOUCHABLE_STATE.BEGAN) {\r\n // ... and if it happens inside button.\r\n this.props.onPressOut?.();\r\n }\r\n }\r\n // Finally call lister (used by subclasses)\r\n this.props.onStateChange?.(this.STATE, newState);\r\n // ... and make transition.\r\n this.STATE = newState;\r\n }\r\n\r\n onGestureEvent = ({\r\n nativeEvent: { pointerInside },\r\n }: GestureEvent<NativeViewGestureHandlerPayload>) => {\r\n if (this.pointerInside !== pointerInside) {\r\n if (pointerInside) {\r\n this.onMoveIn();\r\n } else {\r\n this.onMoveOut();\r\n }\r\n }\r\n this.pointerInside = pointerInside;\r\n };\r\n\r\n onHandlerStateChange = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>) => {\r\n const { state } = nativeEvent;\r\n if (state === State.CANCELLED || state === State.FAILED) {\r\n // Need to handle case with external cancellation (e.g. by ScrollView)\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n } else if (\r\n // This platform check is an implication of slightly different behavior of handlers on different platform.\r\n // And Android \"Active\" state is achieving on first move of a finger, not on press in.\r\n // On iOS event on \"Began\" is not delivered.\r\n state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) &&\r\n this.STATE === TOUCHABLE_STATE.UNDETERMINED\r\n ) {\r\n // Moving inside requires\r\n this.handlePressIn();\r\n } else if (state === State.END) {\r\n const shouldCallOnPress =\r\n !this.longPressDetected &&\r\n this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE &&\r\n this.pressOutTimeout === null;\r\n this.handleGoToUndetermined();\r\n if (shouldCallOnPress) {\r\n // Calls only inside component whether no long press was called previously\r\n this.props.onPress?.();\r\n }\r\n }\r\n };\r\n\r\n onLongPressDetected = () => {\r\n this.longPressDetected = true;\r\n // checked for in the caller of `onLongPressDetected`, but better to check twice\r\n this.props.onLongPress?.();\r\n };\r\n\r\n componentWillUnmount() {\r\n // to prevent memory leaks\r\n this.reset();\r\n }\r\n\r\n onMoveIn() {\r\n if (this.STATE === TOUCHABLE_STATE.MOVED_OUTSIDE) {\r\n // This call is not throttled with delays (like in RN's implementation).\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n }\r\n\r\n onMoveOut() {\r\n // long press should no longer be detected\r\n clearTimeout(this.longPressTimeout!);\r\n this.longPressTimeout = null;\r\n if (this.STATE === TOUCHABLE_STATE.BEGAN) {\r\n this.handleMoveOutside();\r\n }\r\n }\r\n\r\n render() {\r\n const hitSlop =\r\n (typeof this.props.hitSlop === 'number'\r\n ? {\r\n top: this.props.hitSlop,\r\n left: this.props.hitSlop,\r\n bottom: this.props.hitSlop,\r\n right: this.props.hitSlop,\r\n }\r\n : this.props.hitSlop) ?? undefined;\r\n\r\n const coreProps = {\r\n accessible: this.props.accessible !== false,\r\n accessibilityLabel: this.props.accessibilityLabel,\r\n accessibilityHint: this.props.accessibilityHint,\r\n accessibilityRole: this.props.accessibilityRole,\r\n // TODO: check if changed to no 's' correctly, also removed 2 props that are no longer available: `accessibilityComponentType` and `accessibilityTraits`,\r\n // would be good to check if it is ok for sure, see: https://github.com/facebook/react-native/issues/24016\r\n accessibilityState: this.props.accessibilityState,\r\n accessibilityActions: this.props.accessibilityActions,\r\n onAccessibilityAction: this.props.onAccessibilityAction,\r\n nativeID: this.props.nativeID,\r\n onLayout: this.props.onLayout,\r\n };\r\n\r\n return (\r\n <BaseButton\r\n style={this.props.containerStyle}\r\n onHandlerStateChange={\r\n // TODO: not sure if it can be undefined instead of null\r\n this.props.disabled ? undefined : this.onHandlerStateChange\r\n }\r\n onGestureEvent={this.onGestureEvent}\r\n hitSlop={hitSlop}\r\n shouldActivateOnStart={this.props.shouldActivateOnStart}\r\n disallowInterruption={this.props.disallowInterruption}\r\n testID={this.props.testID}\r\n touchSoundDisabled={this.props.touchSoundDisabled ?? false}\r\n enabled={!this.props.disabled}\r\n {...this.props.extraButtonProps}>\r\n <Animated.View {...coreProps} style={this.props.style}>\r\n {this.props.children}\r\n </Animated.View>\r\n </BaseButton>\r\n );\r\n }\r\n}\r\n"]}
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","React","_reactNative","_State","_GestureButtons","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_extends","assign","bind","target","arguments","length","source","key","apply","TOUCHABLE_STATE","exports","UNDETERMINED","BEGAN","MOVED_OUTSIDE","GenericTouchable","Component","defaultProps","delayLongPress","extraButtonProps","rippleColor","exclusive","longPressDetected","pointerInside","STATE","handlePressIn","props","delayPressIn","pressInTimeout","setTimeout","moveToState","onLongPress","time","longPressTimeout","onLongPressDetected","handleMoveOutside","delayPressOut","pressOutTimeout","handleGoToUndetermined","clearTimeout","componentDidMount","reset","newState","_this$props$onStateCh","_this$props4","_this$props$onPressIn","_this$props","onPressIn","_this$props$onPressOu","_this$props2","onPressOut","_this$props$onPressOu2","_this$props3","onStateChange","onGestureEvent","nativeEvent","onMoveIn","onMoveOut","onHandlerStateChange","state","State","CANCELLED","FAILED","Platform","OS","ACTIVE","END","shouldCallOnPress","_this$props$onPress","_this$props5","onPress","_this$props$onLongPre","_this$props6","componentWillUnmount","render","hitSlop","top","left","bottom","right","undefined","coreProps","accessible","accessibilityLabel","accessibilityHint","accessibilityRole","accessibilityState","accessibilityActions","onAccessibilityAction","nativeID","onLayout","createElement","BaseButton","style","containerStyle","disabled","shouldActivateOnStart","disallowInterruption","testID","touchSoundDisabled","enabled","Animated","View","children"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/touchables/GenericTouchable.tsx"],"mappings":"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"}
|