@react-native-oh-tpl/react-native-gesture-handler 2.12.1-0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/DrawerLayout/package.json +6 -0
- package/LICENSE +21 -0
- package/README.md +62 -0
- package/RNGestureHandler.podspec +44 -0
- package/Swipeable/package.json +6 -0
- package/android/build.gradle +209 -0
- package/android/common/src/main/java/com/swmansion/common/GestureHandlerStateManager.kt +5 -0
- package/android/fabric/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerComponentsRegistry.java +29 -0
- package/android/fabric/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +12 -0
- package/android/gradle.properties +19 -0
- package/android/noreanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +10 -0
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +50 -0
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +23 -0
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +25 -0
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +16 -0
- package/android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +13 -0
- package/android/reanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +17 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +21 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/FlingGestureHandler.kt +100 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +807 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.kt +8 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +671 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerRegistry.kt +8 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureUtils.kt +47 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +120 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/LongPressGestureHandler.kt +100 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +11 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +257 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/OnTouchEventListener.kt +9 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +322 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +103 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/PointerEventsConfig.kt +23 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureDetector.kt +125 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +93 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/ScaleGestureDetector.java +558 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/TapGestureHandler.kt +168 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +10 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/Extensions.kt +16 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +423 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.kt +15 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.kt +75 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +74 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +702 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +100 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +142 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.kt +5 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +78 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.kt +51 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.kt +78 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +69 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +51 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.kt +30 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.kt +22 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.kt +30 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.kt +33 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.kt +5 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.kt +18 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.kt +42 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.kt +30 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.kt +30 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.kt +30 -0
- package/android/src/main/jni/CMakeLists.txt +37 -0
- package/android/src/main/jni/cpp-adapter.cpp +44 -0
- package/ios/Handlers/RNFlingHandler.h +4 -0
- package/ios/Handlers/RNFlingHandler.m +152 -0
- package/ios/Handlers/RNForceTouchHandler.h +4 -0
- package/ios/Handlers/RNForceTouchHandler.m +175 -0
- package/ios/Handlers/RNHoverHandler.h +12 -0
- package/ios/Handlers/RNHoverHandler.m +153 -0
- package/ios/Handlers/RNLongPressHandler.h +12 -0
- package/ios/Handlers/RNLongPressHandler.m +183 -0
- package/ios/Handlers/RNManualHandler.h +4 -0
- package/ios/Handlers/RNManualHandler.m +88 -0
- package/ios/Handlers/RNNativeViewHandler.h +15 -0
- package/ios/Handlers/RNNativeViewHandler.mm +193 -0
- package/ios/Handlers/RNPanHandler.h +12 -0
- package/ios/Handlers/RNPanHandler.m +331 -0
- package/ios/Handlers/RNPinchHandler.h +12 -0
- package/ios/Handlers/RNPinchHandler.m +95 -0
- package/ios/Handlers/RNRotationHandler.h +12 -0
- package/ios/Handlers/RNRotationHandler.m +93 -0
- package/ios/Handlers/RNTapHandler.h +12 -0
- package/ios/Handlers/RNTapHandler.m +265 -0
- package/ios/RNGHTouchEventType.h +9 -0
- package/ios/RNGestureHandler.h +90 -0
- package/ios/RNGestureHandler.m +493 -0
- package/ios/RNGestureHandler.xcodeproj/project.pbxproj +690 -0
- package/ios/RNGestureHandler.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/RNGestureHandlerActionType.h +10 -0
- package/ios/RNGestureHandlerButton.h +19 -0
- package/ios/RNGestureHandlerButton.m +77 -0
- package/ios/RNGestureHandlerButtonComponentView.h +17 -0
- package/ios/RNGestureHandlerButtonComponentView.mm +64 -0
- package/ios/RNGestureHandlerButtonManager.h +5 -0
- package/ios/RNGestureHandlerButtonManager.m +34 -0
- package/ios/RNGestureHandlerDirection.h +8 -0
- package/ios/RNGestureHandlerEvents.h +65 -0
- package/ios/RNGestureHandlerEvents.m +260 -0
- package/ios/RNGestureHandlerManager.h +35 -0
- package/ios/RNGestureHandlerManager.mm +367 -0
- package/ios/RNGestureHandlerModule.h +7 -0
- package/ios/RNGestureHandlerModule.mm +320 -0
- package/ios/RNGestureHandlerPointerTracker.h +25 -0
- package/ios/RNGestureHandlerPointerTracker.m +243 -0
- package/ios/RNGestureHandlerRegistry.h +21 -0
- package/ios/RNGestureHandlerRegistry.m +63 -0
- package/ios/RNGestureHandlerRootViewComponentView.mm +21 -0
- package/ios/RNGestureHandlerState.h +10 -0
- package/ios/RNGestureHandlerStateManager.h +5 -0
- package/ios/RNManualActivationRecognizer.h +10 -0
- package/ios/RNManualActivationRecognizer.m +88 -0
- package/ios/RNRootViewGestureRecognizer.h +17 -0
- package/ios/RNRootViewGestureRecognizer.m +106 -0
- package/jest-utils/package.json +6 -0
- package/jestSetup.js +7 -0
- package/lib/commonjs/ActionType.js +15 -0
- package/lib/commonjs/ActionType.js.map +1 -0
- package/lib/commonjs/Directions.js +15 -0
- package/lib/commonjs/Directions.js.map +1 -0
- package/lib/commonjs/EnableNewWebImplementation.js +35 -0
- package/lib/commonjs/EnableNewWebImplementation.js.map +1 -0
- package/lib/commonjs/GestureHandlerRootViewContext.js +15 -0
- package/lib/commonjs/GestureHandlerRootViewContext.js.map +1 -0
- package/lib/commonjs/PlatformConstants.js +15 -0
- package/lib/commonjs/PlatformConstants.js.map +1 -0
- package/lib/commonjs/PlatformConstants.web.js +14 -0
- package/lib/commonjs/PlatformConstants.web.js.map +1 -0
- package/lib/commonjs/RNGestureHandlerModule.js +29 -0
- package/lib/commonjs/RNGestureHandlerModule.js.map +1 -0
- package/lib/commonjs/RNGestureHandlerModule.macos.js +149 -0
- package/lib/commonjs/RNGestureHandlerModule.macos.js.map +1 -0
- package/lib/commonjs/RNGestureHandlerModule.web.js +163 -0
- package/lib/commonjs/RNGestureHandlerModule.web.js.map +1 -0
- package/lib/commonjs/RNGestureHandlerModule.windows.js +158 -0
- package/lib/commonjs/RNGestureHandlerModule.windows.js.map +1 -0
- package/lib/commonjs/RNRenderer.js +16 -0
- package/lib/commonjs/RNRenderer.js.map +1 -0
- package/lib/commonjs/RNRenderer.web.js +11 -0
- package/lib/commonjs/RNRenderer.web.js.map +1 -0
- package/lib/commonjs/State.js +18 -0
- package/lib/commonjs/State.js.map +1 -0
- package/lib/commonjs/TouchEventType.js +16 -0
- package/lib/commonjs/TouchEventType.js.map +1 -0
- package/lib/commonjs/components/DrawerLayout.js +566 -0
- package/lib/commonjs/components/DrawerLayout.js.map +1 -0
- package/lib/commonjs/components/GestureButtons.js +240 -0
- package/lib/commonjs/components/GestureButtons.js.map +1 -0
- package/lib/commonjs/components/GestureComponents.js +115 -0
- package/lib/commonjs/components/GestureComponents.js.map +1 -0
- package/lib/commonjs/components/GestureComponents.web.js +52 -0
- package/lib/commonjs/components/GestureComponents.web.js.map +1 -0
- package/lib/commonjs/components/GestureHandlerButton.js +14 -0
- package/lib/commonjs/components/GestureHandlerButton.js.map +1 -0
- package/lib/commonjs/components/GestureHandlerButton.web.js +24 -0
- package/lib/commonjs/components/GestureHandlerButton.web.js.map +1 -0
- package/lib/commonjs/components/GestureHandlerRootView.android.js +31 -0
- package/lib/commonjs/components/GestureHandlerRootView.android.js.map +1 -0
- package/lib/commonjs/components/GestureHandlerRootView.js +31 -0
- package/lib/commonjs/components/GestureHandlerRootView.js.map +1 -0
- package/lib/commonjs/components/GestureHandlerRootView.web.js +25 -0
- package/lib/commonjs/components/GestureHandlerRootView.web.js.map +1 -0
- package/lib/commonjs/components/Swipeable.js +408 -0
- package/lib/commonjs/components/Swipeable.js.map +1 -0
- package/lib/commonjs/components/gestureHandlerRootHOC.js +40 -0
- package/lib/commonjs/components/gestureHandlerRootHOC.js.map +1 -0
- package/lib/commonjs/components/touchables/GenericTouchable.js +289 -0
- package/lib/commonjs/components/touchables/GenericTouchable.js.map +1 -0
- package/lib/commonjs/components/touchables/TouchableHighlight.js +109 -0
- package/lib/commonjs/components/touchables/TouchableHighlight.js.map +1 -0
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +100 -0
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +1 -0
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +12 -0
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +1 -0
- package/lib/commonjs/components/touchables/TouchableOpacity.js +77 -0
- package/lib/commonjs/components/touchables/TouchableOpacity.js.map +1 -0
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +26 -0
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +1 -0
- package/lib/commonjs/components/touchables/index.js +40 -0
- package/lib/commonjs/components/touchables/index.js.map +1 -0
- package/lib/commonjs/getReactNativeVersion.js +22 -0
- package/lib/commonjs/getReactNativeVersion.js.map +1 -0
- package/lib/commonjs/getReactNativeVersion.web.js +11 -0
- package/lib/commonjs/getReactNativeVersion.web.js.map +1 -0
- package/lib/commonjs/getShadowNodeFromRef.js +27 -0
- package/lib/commonjs/getShadowNodeFromRef.js.map +1 -0
- package/lib/commonjs/getShadowNodeFromRef.web.js +15 -0
- package/lib/commonjs/getShadowNodeFromRef.web.js.map +1 -0
- package/lib/commonjs/ghQueueMicrotask.js +12 -0
- package/lib/commonjs/ghQueueMicrotask.js.map +1 -0
- package/lib/commonjs/handlers/FlingGestureHandler.js +25 -0
- package/lib/commonjs/handlers/FlingGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js +49 -0
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/LongPressGestureHandler.js +27 -0
- package/lib/commonjs/handlers/LongPressGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/NativeViewGestureHandler.js +27 -0
- package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/PanGestureHandler.js +123 -0
- package/lib/commonjs/handlers/PanGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/PinchGestureHandler.js +23 -0
- package/lib/commonjs/handlers/PinchGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/PressabilityDebugView.js +14 -0
- package/lib/commonjs/handlers/PressabilityDebugView.js.map +1 -0
- package/lib/commonjs/handlers/PressabilityDebugView.web.js +12 -0
- package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +1 -0
- package/lib/commonjs/handlers/RotationGestureHandler.js +23 -0
- package/lib/commonjs/handlers/RotationGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/TapGestureHandler.js +27 -0
- package/lib/commonjs/handlers/TapGestureHandler.js.map +1 -0
- package/lib/commonjs/handlers/createHandler.js +464 -0
- package/lib/commonjs/handlers/createHandler.js.map +1 -0
- package/lib/commonjs/handlers/createNativeWrapper.js +74 -0
- package/lib/commonjs/handlers/createNativeWrapper.js.map +1 -0
- package/lib/commonjs/handlers/gestureHandlerCommon.js +103 -0
- package/lib/commonjs/handlers/gestureHandlerCommon.js.map +1 -0
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +6 -0
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +1 -0
- package/lib/commonjs/handlers/gestures/GestureDetector.js +669 -0
- package/lib/commonjs/handlers/gestures/GestureDetector.js.map +1 -0
- package/lib/commonjs/handlers/gestures/eventReceiver.js +147 -0
- package/lib/commonjs/handlers/gestures/eventReceiver.js.map +1 -0
- package/lib/commonjs/handlers/gestures/flingGesture.js +34 -0
- package/lib/commonjs/handlers/gestures/flingGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js +65 -0
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/gesture.js +241 -0
- package/lib/commonjs/handlers/gestures/gesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/gestureComposition.js +105 -0
- package/lib/commonjs/handlers/gestures/gestureComposition.js.map +1 -0
- package/lib/commonjs/handlers/gestures/gestureObjects.js +90 -0
- package/lib/commonjs/handlers/gestures/gestureObjects.js.map +1 -0
- package/lib/commonjs/handlers/gestures/gestureStateManager.js +65 -0
- package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +1 -0
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +32 -0
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +1 -0
- package/lib/commonjs/handlers/gestures/hoverGesture.js +74 -0
- package/lib/commonjs/handlers/gestures/hoverGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/longPressGesture.js +35 -0
- package/lib/commonjs/handlers/gestures/longPressGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/manualGesture.js +31 -0
- package/lib/commonjs/handlers/gestures/manualGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/nativeGesture.js +34 -0
- package/lib/commonjs/handlers/gestures/nativeGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/panGesture.js +149 -0
- package/lib/commonjs/handlers/gestures/panGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/pinchGesture.js +45 -0
- package/lib/commonjs/handlers/gestures/pinchGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +37 -0
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +1 -0
- package/lib/commonjs/handlers/gestures/rotationGesture.js +45 -0
- package/lib/commonjs/handlers/gestures/rotationGesture.js.map +1 -0
- package/lib/commonjs/handlers/gestures/tapGesture.js +60 -0
- package/lib/commonjs/handlers/gestures/tapGesture.js.map +1 -0
- package/lib/commonjs/handlers/handlersRegistry.js +67 -0
- package/lib/commonjs/handlers/handlersRegistry.js.map +1 -0
- package/lib/commonjs/index.js +266 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/init.js +32 -0
- package/lib/commonjs/init.js.map +1 -0
- package/lib/commonjs/jestUtils/index.js +20 -0
- package/lib/commonjs/jestUtils/index.js.map +1 -0
- package/lib/commonjs/jestUtils/jestUtils.js +375 -0
- package/lib/commonjs/jestUtils/jestUtils.js.map +1 -0
- package/lib/commonjs/mocks.js +66 -0
- package/lib/commonjs/mocks.js.map +1 -0
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js +15 -0
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js +15 -0
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js.map +1 -0
- package/lib/commonjs/typeUtils.js +2 -0
- package/lib/commonjs/typeUtils.js.map +1 -0
- package/lib/commonjs/utils.js +63 -0
- package/lib/commonjs/utils.js.map +1 -0
- package/lib/commonjs/web/constants.js +16 -0
- package/lib/commonjs/web/constants.js.map +1 -0
- package/lib/commonjs/web/detectors/RotationGestureDetector.js +165 -0
- package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +1 -0
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js +156 -0
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +1 -0
- package/lib/commonjs/web/handlers/FlingGestureHandler.js +167 -0
- package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/GestureHandler.js +794 -0
- package/lib/commonjs/web/handlers/GestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/HoverGestureHandler.js +62 -0
- package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js +151 -0
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/ManualGestureHandler.js +61 -0
- package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +178 -0
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/PanGestureHandler.js +448 -0
- package/lib/commonjs/web/handlers/PanGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/PinchGestureHandler.js +174 -0
- package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/RotationGestureHandler.js +186 -0
- package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +1 -0
- package/lib/commonjs/web/handlers/TapGestureHandler.js +280 -0
- package/lib/commonjs/web/handlers/TapGestureHandler.js.map +1 -0
- package/lib/commonjs/web/interfaces.js +55 -0
- package/lib/commonjs/web/interfaces.js.map +1 -0
- package/lib/commonjs/web/tools/CircularBuffer.js +59 -0
- package/lib/commonjs/web/tools/CircularBuffer.js.map +1 -0
- package/lib/commonjs/web/tools/EventManager.js +127 -0
- package/lib/commonjs/web/tools/EventManager.js.map +1 -0
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js +6 -0
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +1 -0
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +349 -0
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +1 -0
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +118 -0
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +1 -0
- package/lib/commonjs/web/tools/InteractionManager.js +114 -0
- package/lib/commonjs/web/tools/InteractionManager.js.map +1 -0
- package/lib/commonjs/web/tools/LeastSquareSolver.js +204 -0
- package/lib/commonjs/web/tools/LeastSquareSolver.js.map +1 -0
- package/lib/commonjs/web/tools/NodeManager.js +48 -0
- package/lib/commonjs/web/tools/NodeManager.js.map +1 -0
- package/lib/commonjs/web/tools/PointerEventManager.js +198 -0
- package/lib/commonjs/web/tools/PointerEventManager.js.map +1 -0
- package/lib/commonjs/web/tools/PointerTracker.js +226 -0
- package/lib/commonjs/web/tools/PointerTracker.js.map +1 -0
- package/lib/commonjs/web/tools/TouchEventManager.js +138 -0
- package/lib/commonjs/web/tools/TouchEventManager.js.map +1 -0
- package/lib/commonjs/web/tools/VelocityTracker.js +111 -0
- package/lib/commonjs/web/tools/VelocityTracker.js.map +1 -0
- package/lib/commonjs/web/utils.js +15 -0
- package/lib/commonjs/web/utils.js.map +1 -0
- package/lib/commonjs/web_hammer/DiscreteGestureHandler.js +105 -0
- package/lib/commonjs/web_hammer/DiscreteGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/DraggingGestureHandler.js +53 -0
- package/lib/commonjs/web_hammer/DraggingGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/Errors.js +16 -0
- package/lib/commonjs/web_hammer/Errors.js.map +1 -0
- package/lib/commonjs/web_hammer/FlingGestureHandler.js +170 -0
- package/lib/commonjs/web_hammer/FlingGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/GestureHandler.js +579 -0
- package/lib/commonjs/web_hammer/GestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js +54 -0
- package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/LongPressGestureHandler.js +71 -0
- package/lib/commonjs/web_hammer/LongPressGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/NativeViewGestureHandler.js +66 -0
- package/lib/commonjs/web_hammer/NativeViewGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/NodeManager.js +46 -0
- package/lib/commonjs/web_hammer/NodeManager.js.map +1 -0
- package/lib/commonjs/web_hammer/PanGestureHandler.js +208 -0
- package/lib/commonjs/web_hammer/PanGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/PinchGestureHandler.js +40 -0
- package/lib/commonjs/web_hammer/PinchGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/PressGestureHandler.js +188 -0
- package/lib/commonjs/web_hammer/PressGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/RotationGestureHandler.js +44 -0
- package/lib/commonjs/web_hammer/RotationGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/TapGestureHandler.js +192 -0
- package/lib/commonjs/web_hammer/TapGestureHandler.js.map +1 -0
- package/lib/commonjs/web_hammer/constants.js +64 -0
- package/lib/commonjs/web_hammer/constants.js.map +1 -0
- package/lib/commonjs/web_hammer/utils.js +42 -0
- package/lib/commonjs/web_hammer/utils.js.map +1 -0
- package/lib/module/ActionType.js +7 -0
- package/lib/module/ActionType.js.map +1 -0
- package/lib/module/Directions.js +7 -0
- package/lib/module/Directions.js.map +1 -0
- package/lib/module/EnableNewWebImplementation.js +22 -0
- package/lib/module/EnableNewWebImplementation.js.map +1 -0
- package/lib/module/GestureHandlerRootViewContext.js +3 -0
- package/lib/module/GestureHandlerRootViewContext.js.map +1 -0
- package/lib/module/PlatformConstants.js +5 -0
- package/lib/module/PlatformConstants.js.map +1 -0
- package/lib/module/PlatformConstants.web.js +7 -0
- package/lib/module/PlatformConstants.web.js.map +1 -0
- package/lib/module/RNGestureHandlerModule.js +19 -0
- package/lib/module/RNGestureHandlerModule.js.map +1 -0
- package/lib/module/RNGestureHandlerModule.macos.js +110 -0
- package/lib/module/RNGestureHandlerModule.macos.js.map +1 -0
- package/lib/module/RNGestureHandlerModule.web.js +122 -0
- package/lib/module/RNGestureHandlerModule.web.js.map +1 -0
- package/lib/module/RNGestureHandlerModule.windows.js +118 -0
- package/lib/module/RNGestureHandlerModule.windows.js.map +1 -0
- package/lib/module/RNRenderer.js +4 -0
- package/lib/module/RNRenderer.js.map +1 -0
- package/lib/module/RNRenderer.web.js +4 -0
- package/lib/module/RNRenderer.web.js.map +1 -0
- package/lib/module/State.js +10 -0
- package/lib/module/State.js.map +1 -0
- package/lib/module/TouchEventType.js +8 -0
- package/lib/module/TouchEventType.js.map +1 -0
- package/lib/module/components/DrawerLayout.js +551 -0
- package/lib/module/components/DrawerLayout.js.map +1 -0
- package/lib/module/components/GestureButtons.js +206 -0
- package/lib/module/components/GestureButtons.js.map +1 -0
- package/lib/module/components/GestureComponents.js +90 -0
- package/lib/module/components/GestureComponents.js.map +1 -0
- package/lib/module/components/GestureComponents.web.js +28 -0
- package/lib/module/components/GestureComponents.web.js.map +1 -0
- package/lib/module/components/GestureHandlerButton.js +3 -0
- package/lib/module/components/GestureHandlerButton.js.map +1 -0
- package/lib/module/components/GestureHandlerButton.web.js +9 -0
- package/lib/module/components/GestureHandlerButton.web.js.map +1 -0
- package/lib/module/components/GestureHandlerRootView.android.js +14 -0
- package/lib/module/components/GestureHandlerRootView.android.js.map +1 -0
- package/lib/module/components/GestureHandlerRootView.js +14 -0
- package/lib/module/components/GestureHandlerRootView.js.map +1 -0
- package/lib/module/components/GestureHandlerRootView.web.js +9 -0
- package/lib/module/components/GestureHandlerRootView.web.js.map +1 -0
- package/lib/module/components/Swipeable.js +390 -0
- package/lib/module/components/Swipeable.js.map +1 -0
- package/lib/module/components/gestureHandlerRootHOC.js +22 -0
- package/lib/module/components/gestureHandlerRootHOC.js.map +1 -0
- package/lib/module/components/touchables/GenericTouchable.js +273 -0
- package/lib/module/components/touchables/GenericTouchable.js.map +1 -0
- package/lib/module/components/touchables/TouchableHighlight.js +95 -0
- package/lib/module/components/touchables/TouchableHighlight.js.map +1 -0
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js +84 -0
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -0
- package/lib/module/components/touchables/TouchableNativeFeedback.js +3 -0
- package/lib/module/components/touchables/TouchableNativeFeedback.js.map +1 -0
- package/lib/module/components/touchables/TouchableOpacity.js +63 -0
- package/lib/module/components/touchables/TouchableOpacity.js.map +1 -0
- package/lib/module/components/touchables/TouchableWithoutFeedback.js +10 -0
- package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -0
- package/lib/module/components/touchables/index.js +5 -0
- package/lib/module/components/touchables/index.js.map +1 -0
- package/lib/module/getReactNativeVersion.js +10 -0
- package/lib/module/getReactNativeVersion.js.map +1 -0
- package/lib/module/getReactNativeVersion.web.js +4 -0
- package/lib/module/getReactNativeVersion.web.js.map +1 -0
- package/lib/module/getShadowNodeFromRef.js +20 -0
- package/lib/module/getShadowNodeFromRef.js.map +1 -0
- package/lib/module/getShadowNodeFromRef.web.js +8 -0
- package/lib/module/getShadowNodeFromRef.web.js.map +1 -0
- package/lib/module/ghQueueMicrotask.js +5 -0
- package/lib/module/ghQueueMicrotask.js.map +1 -0
- package/lib/module/handlers/FlingGestureHandler.js +11 -0
- package/lib/module/handlers/FlingGestureHandler.js.map +1 -0
- package/lib/module/handlers/ForceTouchGestureHandler.js +31 -0
- package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -0
- package/lib/module/handlers/LongPressGestureHandler.js +13 -0
- package/lib/module/handlers/LongPressGestureHandler.js.map +1 -0
- package/lib/module/handlers/NativeViewGestureHandler.js +12 -0
- package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -0
- package/lib/module/handlers/PanGestureHandler.js +107 -0
- package/lib/module/handlers/PanGestureHandler.js.map +1 -0
- package/lib/module/handlers/PinchGestureHandler.js +10 -0
- package/lib/module/handlers/PinchGestureHandler.js.map +1 -0
- package/lib/module/handlers/PressabilityDebugView.js +3 -0
- package/lib/module/handlers/PressabilityDebugView.js.map +1 -0
- package/lib/module/handlers/PressabilityDebugView.web.js +5 -0
- package/lib/module/handlers/PressabilityDebugView.web.js.map +1 -0
- package/lib/module/handlers/RotationGestureHandler.js +10 -0
- package/lib/module/handlers/RotationGestureHandler.js.map +1 -0
- package/lib/module/handlers/TapGestureHandler.js +13 -0
- package/lib/module/handlers/TapGestureHandler.js.map +1 -0
- package/lib/module/handlers/createHandler.js +433 -0
- package/lib/module/handlers/createHandler.js.map +1 -0
- package/lib/module/handlers/createNativeWrapper.js +62 -0
- package/lib/module/handlers/createNativeWrapper.js.map +1 -0
- package/lib/module/handlers/gestureHandlerCommon.js +81 -0
- package/lib/module/handlers/gestureHandlerCommon.js.map +1 -0
- package/lib/module/handlers/gestureHandlerTypesCompat.js +2 -0
- package/lib/module/handlers/gestureHandlerTypesCompat.js.map +1 -0
- package/lib/module/handlers/gestures/GestureDetector.js +619 -0
- package/lib/module/handlers/gestures/GestureDetector.js.map +1 -0
- package/lib/module/handlers/gestures/eventReceiver.js +131 -0
- package/lib/module/handlers/gestures/eventReceiver.js.map +1 -0
- package/lib/module/handlers/gestures/flingGesture.js +24 -0
- package/lib/module/handlers/gestures/flingGesture.js.map +1 -0
- package/lib/module/handlers/gestures/forceTouchGesture.js +56 -0
- package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -0
- package/lib/module/handlers/gestures/gesture.js +222 -0
- package/lib/module/handlers/gestures/gesture.js.map +1 -0
- package/lib/module/handlers/gestures/gestureComposition.js +90 -0
- package/lib/module/handlers/gestures/gestureComposition.js.map +1 -0
- package/lib/module/handlers/gestures/gestureObjects.js +71 -0
- package/lib/module/handlers/gestures/gestureObjects.js.map +1 -0
- package/lib/module/handlers/gestures/gestureStateManager.js +54 -0
- package/lib/module/handlers/gestures/gestureStateManager.js.map +1 -0
- package/lib/module/handlers/gestures/gestureStateManager.web.js +21 -0
- package/lib/module/handlers/gestures/gestureStateManager.web.js.map +1 -0
- package/lib/module/handlers/gestures/hoverGesture.js +62 -0
- package/lib/module/handlers/gestures/hoverGesture.js.map +1 -0
- package/lib/module/handlers/gestures/longPressGesture.js +25 -0
- package/lib/module/handlers/gestures/longPressGesture.js.map +1 -0
- package/lib/module/handlers/gestures/manualGesture.js +22 -0
- package/lib/module/handlers/gestures/manualGesture.js.map +1 -0
- package/lib/module/handlers/gestures/nativeGesture.js +24 -0
- package/lib/module/handlers/gestures/nativeGesture.js.map +1 -0
- package/lib/module/handlers/gestures/panGesture.js +140 -0
- package/lib/module/handlers/gestures/panGesture.js.map +1 -0
- package/lib/module/handlers/gestures/pinchGesture.js +36 -0
- package/lib/module/handlers/gestures/pinchGesture.js.map +1 -0
- package/lib/module/handlers/gestures/reanimatedWrapper.js +30 -0
- package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -0
- package/lib/module/handlers/gestures/rotationGesture.js +36 -0
- package/lib/module/handlers/gestures/rotationGesture.js.map +1 -0
- package/lib/module/handlers/gestures/tapGesture.js +50 -0
- package/lib/module/handlers/gestures/tapGesture.js.map +1 -0
- package/lib/module/handlers/handlersRegistry.js +44 -0
- package/lib/module/handlers/handlersRegistry.js.map +1 -0
- package/lib/module/index.js +25 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/init.js +16 -0
- package/lib/module/init.js.map +1 -0
- package/lib/module/jestUtils/index.js +2 -0
- package/lib/module/jestUtils/index.js.map +1 -0
- package/lib/module/jestUtils/jestUtils.js +350 -0
- package/lib/module/jestUtils/jestUtils.js.map +1 -0
- package/lib/module/mocks.js +56 -0
- package/lib/module/mocks.js.map +1 -0
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js +3 -0
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js.map +1 -0
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js +3 -0
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js.map +1 -0
- package/lib/module/typeUtils.js +2 -0
- package/lib/module/typeUtils.js.map +1 -0
- package/lib/module/utils.js +44 -0
- package/lib/module/utils.js.map +1 -0
- package/lib/module/web/constants.js +8 -0
- package/lib/module/web/constants.js.map +1 -0
- package/lib/module/web/detectors/RotationGestureDetector.js +155 -0
- package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -0
- package/lib/module/web/detectors/ScaleGestureDetector.js +145 -0
- package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -0
- package/lib/module/web/handlers/FlingGestureHandler.js +152 -0
- package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/GestureHandler.js +776 -0
- package/lib/module/web/handlers/GestureHandler.js.map +1 -0
- package/lib/module/web/handlers/HoverGestureHandler.js +47 -0
- package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/LongPressGestureHandler.js +136 -0
- package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/ManualGestureHandler.js +49 -0
- package/lib/module/web/handlers/ManualGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/NativeViewGestureHandler.js +163 -0
- package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/PanGestureHandler.js +433 -0
- package/lib/module/web/handlers/PanGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/PinchGestureHandler.js +159 -0
- package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/RotationGestureHandler.js +171 -0
- package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -0
- package/lib/module/web/handlers/TapGestureHandler.js +265 -0
- package/lib/module/web/handlers/TapGestureHandler.js.map +1 -0
- package/lib/module/web/interfaces.js +45 -0
- package/lib/module/web/interfaces.js.map +1 -0
- package/lib/module/web/tools/CircularBuffer.js +50 -0
- package/lib/module/web/tools/CircularBuffer.js.map +1 -0
- package/lib/module/web/tools/EventManager.js +118 -0
- package/lib/module/web/tools/EventManager.js.map +1 -0
- package/lib/module/web/tools/GestureHandlerDelegate.js +2 -0
- package/lib/module/web/tools/GestureHandlerDelegate.js.map +1 -0
- package/lib/module/web/tools/GestureHandlerOrchestrator.js +335 -0
- package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -0
- package/lib/module/web/tools/GestureHandlerWebDelegate.js +102 -0
- package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -0
- package/lib/module/web/tools/InteractionManager.js +105 -0
- package/lib/module/web/tools/InteractionManager.js.map +1 -0
- package/lib/module/web/tools/LeastSquareSolver.js +195 -0
- package/lib/module/web/tools/LeastSquareSolver.js.map +1 -0
- package/lib/module/web/tools/NodeManager.js +39 -0
- package/lib/module/web/tools/NodeManager.js.map +1 -0
- package/lib/module/web/tools/PointerEventManager.js +184 -0
- package/lib/module/web/tools/PointerEventManager.js.map +1 -0
- package/lib/module/web/tools/PointerTracker.js +213 -0
- package/lib/module/web/tools/PointerTracker.js.map +1 -0
- package/lib/module/web/tools/TouchEventManager.js +124 -0
- package/lib/module/web/tools/TouchEventManager.js.map +1 -0
- package/lib/module/web/tools/VelocityTracker.js +98 -0
- package/lib/module/web/tools/VelocityTracker.js.map +1 -0
- package/lib/module/web/utils.js +8 -0
- package/lib/module/web/utils.js.map +1 -0
- package/lib/module/web_hammer/DiscreteGestureHandler.js +94 -0
- package/lib/module/web_hammer/DiscreteGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/DraggingGestureHandler.js +40 -0
- package/lib/module/web_hammer/DraggingGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/Errors.js +7 -0
- package/lib/module/web_hammer/Errors.js.map +1 -0
- package/lib/module/web_hammer/FlingGestureHandler.js +156 -0
- package/lib/module/web_hammer/FlingGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/GestureHandler.js +563 -0
- package/lib/module/web_hammer/GestureHandler.js.map +1 -0
- package/lib/module/web_hammer/IndiscreteGestureHandler.js +44 -0
- package/lib/module/web_hammer/IndiscreteGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/LongPressGestureHandler.js +58 -0
- package/lib/module/web_hammer/LongPressGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/NativeViewGestureHandler.js +49 -0
- package/lib/module/web_hammer/NativeViewGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/NodeManager.js +33 -0
- package/lib/module/web_hammer/NodeManager.js.map +1 -0
- package/lib/module/web_hammer/PanGestureHandler.js +194 -0
- package/lib/module/web_hammer/PanGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/PinchGestureHandler.js +29 -0
- package/lib/module/web_hammer/PinchGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/PressGestureHandler.js +174 -0
- package/lib/module/web_hammer/PressGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/RotationGestureHandler.js +32 -0
- package/lib/module/web_hammer/RotationGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/TapGestureHandler.js +180 -0
- package/lib/module/web_hammer/TapGestureHandler.js.map +1 -0
- package/lib/module/web_hammer/constants.js +43 -0
- package/lib/module/web_hammer/constants.js.map +1 -0
- package/lib/module/web_hammer/utils.js +19 -0
- package/lib/module/web_hammer/utils.js.map +1 -0
- package/lib/typescript/ActionType.d.ts +7 -0
- package/lib/typescript/Directions.d.ts +7 -0
- package/lib/typescript/EnableNewWebImplementation.d.ts +3 -0
- package/lib/typescript/GestureHandlerRootViewContext.d.ts +3 -0
- package/lib/typescript/PlatformConstants.d.ts +5 -0
- package/lib/typescript/PlatformConstants.web.d.ts +4 -0
- package/lib/typescript/RNGestureHandlerModule.d.ts +13 -0
- package/lib/typescript/RNGestureHandlerModule.macos.d.ts +47 -0
- package/lib/typescript/RNGestureHandlerModule.web.d.ts +50 -0
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts +48 -0
- package/lib/typescript/RNRenderer.d.ts +1 -0
- package/lib/typescript/RNRenderer.web.d.ts +3 -0
- package/lib/typescript/State.d.ts +9 -0
- package/lib/typescript/TouchEventType.d.ts +8 -0
- package/lib/typescript/components/DrawerLayout.d.ts +148 -0
- package/lib/typescript/components/GestureButtons.d.ts +121 -0
- package/lib/typescript/components/GestureComponents.d.ts +22 -0
- package/lib/typescript/components/GestureComponents.web.d.ts +8 -0
- package/lib/typescript/components/GestureHandlerButton.d.ts +4 -0
- package/lib/typescript/components/GestureHandlerButton.web.d.ts +4 -0
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts +6 -0
- package/lib/typescript/components/GestureHandlerRootView.d.ts +6 -0
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts +6 -0
- package/lib/typescript/components/Swipeable.d.ts +178 -0
- package/lib/typescript/components/gestureHandlerRootHOC.d.ts +3 -0
- package/lib/typescript/components/touchables/GenericTouchable.d.ts +68 -0
- package/lib/typescript/components/touchables/TouchableHighlight.d.ts +36 -0
- package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +45 -0
- package/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts +2 -0
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts +25 -0
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +7 -0
- package/lib/typescript/components/touchables/index.d.ts +7 -0
- package/lib/typescript/getReactNativeVersion.d.ts +4 -0
- package/lib/typescript/getReactNativeVersion.web.d.ts +1 -0
- package/lib/typescript/getShadowNodeFromRef.d.ts +1 -0
- package/lib/typescript/getShadowNodeFromRef.web.d.ts +1 -0
- package/lib/typescript/ghQueueMicrotask.d.ts +1 -0
- package/lib/typescript/handlers/FlingGestureHandler.d.ts +34 -0
- package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +44 -0
- package/lib/typescript/handlers/LongPressGestureHandler.d.ts +56 -0
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +28 -0
- package/lib/typescript/handlers/PanGestureHandler.d.ts +139 -0
- package/lib/typescript/handlers/PinchGestureHandler.d.ts +29 -0
- package/lib/typescript/handlers/PressabilityDebugView.d.ts +1 -0
- package/lib/typescript/handlers/PressabilityDebugView.web.d.ts +1 -0
- package/lib/typescript/handlers/RotationGestureHandler.d.ts +29 -0
- package/lib/typescript/handlers/TapGestureHandler.d.ts +57 -0
- package/lib/typescript/handlers/createHandler.d.ts +11 -0
- package/lib/typescript/handlers/createNativeWrapper.d.ts +3 -0
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts +68 -0
- package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +42 -0
- package/lib/typescript/handlers/gestures/GestureDetector.d.ts +19 -0
- package/lib/typescript/handlers/gestures/eventReceiver.d.ts +4 -0
- package/lib/typescript/handlers/gestures/flingGesture.d.ts +9 -0
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +15 -0
- package/lib/typescript/handlers/gestures/gesture.d.ts +110 -0
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts +21 -0
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts +41 -0
- package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +9 -0
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +4 -0
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts +32 -0
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts +9 -0
- package/lib/typescript/handlers/gestures/manualGesture.d.ts +7 -0
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts +9 -0
- package/lib/typescript/handlers/gestures/panGesture.d.ts +26 -0
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts +11 -0
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +14 -0
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts +12 -0
- package/lib/typescript/handlers/gestures/tapGesture.d.ts +14 -0
- package/lib/typescript/handlers/handlersRegistry.d.ts +14 -0
- package/lib/typescript/index.d.ts +52 -0
- package/lib/typescript/init.d.ts +2 -0
- package/lib/typescript/jestUtils/index.d.ts +1 -0
- package/lib/typescript/jestUtils/jestUtils.d.ts +28 -0
- package/lib/typescript/mocks.d.ts +44 -0
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +14 -0
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +6 -0
- package/lib/typescript/typeUtils.d.ts +1 -0
- package/lib/typescript/utils.d.ts +8 -0
- package/lib/typescript/web/constants.d.ts +7 -0
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +30 -0
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +29 -0
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +27 -0
- package/lib/typescript/web/handlers/GestureHandler.d.ts +90 -0
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +10 -0
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +26 -0
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +12 -0
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +24 -0
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts +55 -0
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +28 -0
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +29 -0
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts +39 -0
- package/lib/typescript/web/interfaces.d.ts +141 -0
- package/lib/typescript/web/tools/CircularBuffer.d.ts +11 -0
- package/lib/typescript/web/tools/EventManager.d.ts +34 -0
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +22 -0
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +29 -0
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +21 -0
- package/lib/typescript/web/tools/InteractionManager.d.ts +17 -0
- package/lib/typescript/web/tools/LeastSquareSolver.d.ts +12 -0
- package/lib/typescript/web/tools/NodeManager.d.ts +11 -0
- package/lib/typescript/web/tools/PointerEventManager.d.ts +8 -0
- package/lib/typescript/web/tools/PointerTracker.d.ts +53 -0
- package/lib/typescript/web/tools/TouchEventManager.d.ts +6 -0
- package/lib/typescript/web/tools/VelocityTracker.d.ts +13 -0
- package/lib/typescript/web/utils.d.ts +4 -0
- package/lib/typescript/web_hammer/DiscreteGestureHandler.d.ts +20 -0
- package/lib/typescript/web_hammer/DraggingGestureHandler.d.ts +15 -0
- package/lib/typescript/web_hammer/Errors.d.ts +3 -0
- package/lib/typescript/web_hammer/FlingGestureHandler.d.ts +43 -0
- package/lib/typescript/web_hammer/GestureHandler.d.ts +145 -0
- package/lib/typescript/web_hammer/IndiscreteGestureHandler.d.ts +40 -0
- package/lib/typescript/web_hammer/LongPressGestureHandler.d.ts +38 -0
- package/lib/typescript/web_hammer/NativeViewGestureHandler.d.ts +7 -0
- package/lib/typescript/web_hammer/NodeManager.d.ts +8 -0
- package/lib/typescript/web_hammer/PanGestureHandler.d.ts +56 -0
- package/lib/typescript/web_hammer/PinchGestureHandler.d.ts +13 -0
- package/lib/typescript/web_hammer/PressGestureHandler.d.ts +83 -0
- package/lib/typescript/web_hammer/RotationGestureHandler.d.ts +13 -0
- package/lib/typescript/web_hammer/TapGestureHandler.d.ts +57 -0
- package/lib/typescript/web_hammer/constants.d.ts +39 -0
- package/lib/typescript/web_hammer/utils.d.ts +9 -0
- package/package.json +156 -0
- package/src/ActionType.ts +9 -0
- package/src/Directions.ts +9 -0
- package/src/EnableNewWebImplementation.ts +35 -0
- package/src/GestureHandlerRootViewContext.ts +3 -0
- package/src/PlatformConstants.ts +8 -0
- package/src/PlatformConstants.web.ts +5 -0
- package/src/RNGestureHandlerModule.macos.ts +133 -0
- package/src/RNGestureHandlerModule.ts +50 -0
- package/src/RNGestureHandlerModule.web.ts +146 -0
- package/src/RNGestureHandlerModule.windows.ts +144 -0
- package/src/RNRenderer.ts +3 -0
- package/src/RNRenderer.web.ts +3 -0
- package/src/State.ts +13 -0
- package/src/TouchEventType.ts +10 -0
- package/src/components/DrawerLayout.tsx +743 -0
- package/src/components/GestureButtons.tsx +332 -0
- package/src/components/GestureComponents.tsx +148 -0
- package/src/components/GestureComponents.web.tsx +41 -0
- package/src/components/GestureHandlerButton.tsx +5 -0
- package/src/components/GestureHandlerButton.web.tsx +6 -0
- package/src/components/GestureHandlerRootView.android.tsx +24 -0
- package/src/components/GestureHandlerRootView.tsx +23 -0
- package/src/components/GestureHandlerRootView.web.tsx +17 -0
- package/src/components/Swipeable.tsx +584 -0
- package/src/components/gestureHandlerRootHOC.tsx +32 -0
- package/src/components/touchables/GenericTouchable.tsx +301 -0
- package/src/components/touchables/TouchableHighlight.tsx +115 -0
- package/src/components/touchables/TouchableNativeFeedback.android.tsx +91 -0
- package/src/components/touchables/TouchableNativeFeedback.tsx +3 -0
- package/src/components/touchables/TouchableOpacity.tsx +75 -0
- package/src/components/touchables/TouchableWithoutFeedback.tsx +14 -0
- package/src/components/touchables/index.ts +7 -0
- package/src/getReactNativeVersion.ts +11 -0
- package/src/getReactNativeVersion.web.ts +3 -0
- package/src/getShadowNodeFromRef.ts +22 -0
- package/src/getShadowNodeFromRef.web.ts +7 -0
- package/src/ghQueueMicrotask.ts +5 -0
- package/src/handlers/FlingGestureHandler.ts +59 -0
- package/src/handlers/ForceTouchGestureHandler.ts +90 -0
- package/src/handlers/LongPressGestureHandler.ts +88 -0
- package/src/handlers/NativeViewGestureHandler.ts +55 -0
- package/src/handlers/PanGestureHandler.ts +325 -0
- package/src/handlers/PinchGestureHandler.ts +48 -0
- package/src/handlers/PressabilityDebugView.tsx +2 -0
- package/src/handlers/PressabilityDebugView.web.tsx +4 -0
- package/src/handlers/RotationGestureHandler.ts +48 -0
- package/src/handlers/TapGestureHandler.ts +94 -0
- package/src/handlers/createHandler.tsx +533 -0
- package/src/handlers/createNativeWrapper.tsx +80 -0
- package/src/handlers/gestureHandlerCommon.ts +250 -0
- package/src/handlers/gestureHandlerTypesCompat.ts +106 -0
- package/src/handlers/gestures/GestureDetector.tsx +822 -0
- package/src/handlers/gestures/eventReceiver.ts +155 -0
- package/src/handlers/gestures/flingGesture.ts +27 -0
- package/src/handlers/gestures/forceTouchGesture.ts +74 -0
- package/src/handlers/gestures/gesture.ts +349 -0
- package/src/handlers/gestures/gestureComposition.ts +122 -0
- package/src/handlers/gestures/gestureObjects.ts +84 -0
- package/src/handlers/gestures/gestureStateManager.ts +62 -0
- package/src/handlers/gestures/gestureStateManager.web.ts +24 -0
- package/src/handlers/gestures/hoverGesture.ts +83 -0
- package/src/handlers/gestures/longPressGesture.ts +28 -0
- package/src/handlers/gestures/manualGesture.ts +31 -0
- package/src/handlers/gestures/nativeGesture.ts +27 -0
- package/src/handlers/gestures/panGesture.ts +152 -0
- package/src/handlers/gestures/pinchGesture.ts +51 -0
- package/src/handlers/gestures/reanimatedWrapper.ts +56 -0
- package/src/handlers/gestures/rotationGesture.ts +51 -0
- package/src/handlers/gestures/tapGesture.ts +53 -0
- package/src/handlers/handlersRegistry.ts +60 -0
- package/src/index.ts +174 -0
- package/src/init.ts +18 -0
- package/src/jestUtils/index.ts +1 -0
- package/src/jestUtils/jestUtils.ts +505 -0
- package/src/mocks.ts +67 -0
- package/src/specs/RNGestureHandlerButtonNativeComponent.ts +18 -0
- package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +6 -0
- package/src/typeUtils.ts +1 -0
- package/src/utils.ts +54 -0
- package/src/web/constants.ts +8 -0
- package/src/web/detectors/RotationGestureDetector.ts +168 -0
- package/src/web/detectors/ScaleGestureDetector.ts +172 -0
- package/src/web/handlers/FlingGestureHandler.ts +161 -0
- package/src/web/handlers/GestureHandler.ts +849 -0
- package/src/web/handlers/HoverGestureHandler.ts +43 -0
- package/src/web/handlers/LongPressGestureHandler.ts +125 -0
- package/src/web/handlers/ManualGestureHandler.ts +43 -0
- package/src/web/handlers/NativeViewGestureHandler.ts +167 -0
- package/src/web/handlers/PanGestureHandler.ts +485 -0
- package/src/web/handlers/PinchGestureHandler.ts +158 -0
- package/src/web/handlers/RotationGestureHandler.ts +172 -0
- package/src/web/handlers/TapGestureHandler.ts +273 -0
- package/src/web/interfaces.ts +167 -0
- package/src/web/tools/CircularBuffer.ts +42 -0
- package/src/web/tools/EventManager.ts +104 -0
- package/src/web/tools/GestureHandlerDelegate.ts +23 -0
- package/src/web/tools/GestureHandlerOrchestrator.ts +389 -0
- package/src/web/tools/GestureHandlerWebDelegate.ts +115 -0
- package/src/web/tools/InteractionManager.ts +130 -0
- package/src/web/tools/LeastSquareSolver.ts +182 -0
- package/src/web/tools/NodeManager.ts +43 -0
- package/src/web/tools/PointerEventManager.ts +202 -0
- package/src/web/tools/PointerTracker.ts +240 -0
- package/src/web/tools/TouchEventManager.ts +167 -0
- package/src/web/tools/VelocityTracker.ts +98 -0
- package/src/web/utils.ts +8 -0
- package/src/web_hammer/DiscreteGestureHandler.ts +82 -0
- package/src/web_hammer/DraggingGestureHandler.ts +34 -0
- package/src/web_hammer/Errors.ts +7 -0
- package/src/web_hammer/FlingGestureHandler.ts +134 -0
- package/src/web_hammer/GestureHandler.ts +599 -0
- package/src/web_hammer/IndiscreteGestureHandler.ts +33 -0
- package/src/web_hammer/LongPressGestureHandler.ts +56 -0
- package/src/web_hammer/NativeViewGestureHandler.ts +47 -0
- package/src/web_hammer/NodeManager.ts +42 -0
- package/src/web_hammer/PanGestureHandler.ts +226 -0
- package/src/web_hammer/PinchGestureHandler.ts +25 -0
- package/src/web_hammer/PressGestureHandler.ts +167 -0
- package/src/web_hammer/RotationGestureHandler.ts +25 -0
- package/src/web_hammer/TapGestureHandler.ts +172 -0
- package/src/web_hammer/constants.ts +48 -0
- package/src/web_hammer/utils.ts +24 -0
@@ -0,0 +1,273 @@
|
|
1
|
+
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); }
|
2
|
+
|
3
|
+
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; }
|
4
|
+
|
5
|
+
import * as React from 'react';
|
6
|
+
import { Component } from 'react';
|
7
|
+
import { Animated, Platform } from 'react-native';
|
8
|
+
import { State } from '../../State';
|
9
|
+
import { BaseButton } from '../GestureButtons';
|
10
|
+
|
11
|
+
/**
|
12
|
+
* Each touchable is a states' machine which preforms transitions.
|
13
|
+
* On very beginning (and on the very end or recognition) touchable is
|
14
|
+
* UNDETERMINED. Then it moves to BEGAN. If touchable recognizes that finger
|
15
|
+
* travel outside it transits to special MOVED_OUTSIDE state. Gesture recognition
|
16
|
+
* finishes in UNDETERMINED state.
|
17
|
+
*/
|
18
|
+
export const TOUCHABLE_STATE = {
|
19
|
+
UNDETERMINED: 0,
|
20
|
+
BEGAN: 1,
|
21
|
+
MOVED_OUTSIDE: 2
|
22
|
+
};
|
23
|
+
|
24
|
+
/**
|
25
|
+
* GenericTouchable is not intented to be used as it is.
|
26
|
+
* Should be treated as a source for the rest of touchables
|
27
|
+
*/
|
28
|
+
export default class GenericTouchable extends Component {
|
29
|
+
constructor(...args) {
|
30
|
+
super(...args);
|
31
|
+
|
32
|
+
_defineProperty(this, "pressInTimeout", void 0);
|
33
|
+
|
34
|
+
_defineProperty(this, "pressOutTimeout", void 0);
|
35
|
+
|
36
|
+
_defineProperty(this, "longPressTimeout", void 0);
|
37
|
+
|
38
|
+
_defineProperty(this, "longPressDetected", false);
|
39
|
+
|
40
|
+
_defineProperty(this, "pointerInside", true);
|
41
|
+
|
42
|
+
_defineProperty(this, "STATE", TOUCHABLE_STATE.UNDETERMINED);
|
43
|
+
|
44
|
+
_defineProperty(this, "onGestureEvent", ({
|
45
|
+
nativeEvent: {
|
46
|
+
pointerInside
|
47
|
+
}
|
48
|
+
}) => {
|
49
|
+
if (this.pointerInside !== pointerInside) {
|
50
|
+
if (pointerInside) {
|
51
|
+
this.onMoveIn();
|
52
|
+
} else {
|
53
|
+
this.onMoveOut();
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
this.pointerInside = pointerInside;
|
58
|
+
});
|
59
|
+
|
60
|
+
_defineProperty(this, "onHandlerStateChange", ({
|
61
|
+
nativeEvent
|
62
|
+
}) => {
|
63
|
+
const {
|
64
|
+
state
|
65
|
+
} = nativeEvent;
|
66
|
+
|
67
|
+
if (state === State.CANCELLED || state === State.FAILED) {
|
68
|
+
// Need to handle case with external cancellation (e.g. by ScrollView)
|
69
|
+
this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
|
70
|
+
} else if ( // This platform check is an implication of slightly different behavior of handlers on different platform.
|
71
|
+
// And Android "Active" state is achieving on first move of a finger, not on press in.
|
72
|
+
// On iOS event on "Began" is not delivered.
|
73
|
+
state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) && this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
|
74
|
+
// Moving inside requires
|
75
|
+
this.handlePressIn();
|
76
|
+
} else if (state === State.END) {
|
77
|
+
const shouldCallOnPress = !this.longPressDetected && this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE && this.pressOutTimeout === null;
|
78
|
+
this.handleGoToUndetermined();
|
79
|
+
|
80
|
+
if (shouldCallOnPress) {
|
81
|
+
var _this$props$onPress, _this$props;
|
82
|
+
|
83
|
+
// Calls only inside component whether no long press was called previously
|
84
|
+
(_this$props$onPress = (_this$props = this.props).onPress) === null || _this$props$onPress === void 0 ? void 0 : _this$props$onPress.call(_this$props);
|
85
|
+
}
|
86
|
+
}
|
87
|
+
});
|
88
|
+
|
89
|
+
_defineProperty(this, "onLongPressDetected", () => {
|
90
|
+
var _this$props$onLongPre, _this$props2;
|
91
|
+
|
92
|
+
this.longPressDetected = true; // checked for in the caller of `onLongPressDetected`, but better to check twice
|
93
|
+
|
94
|
+
(_this$props$onLongPre = (_this$props2 = this.props).onLongPress) === null || _this$props$onLongPre === void 0 ? void 0 : _this$props$onLongPre.call(_this$props2);
|
95
|
+
});
|
96
|
+
}
|
97
|
+
|
98
|
+
// handlePressIn in called on first touch on traveling inside component.
|
99
|
+
// Handles state transition with delay.
|
100
|
+
handlePressIn() {
|
101
|
+
if (this.props.delayPressIn) {
|
102
|
+
this.pressInTimeout = setTimeout(() => {
|
103
|
+
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
104
|
+
this.pressInTimeout = null;
|
105
|
+
}, this.props.delayPressIn);
|
106
|
+
} else {
|
107
|
+
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
108
|
+
}
|
109
|
+
|
110
|
+
if (this.props.onLongPress) {
|
111
|
+
const time = (this.props.delayPressIn || 0) + (this.props.delayLongPress || 0);
|
112
|
+
this.longPressTimeout = setTimeout(this.onLongPressDetected, time);
|
113
|
+
}
|
114
|
+
} // handleMoveOutside in called on traveling outside component.
|
115
|
+
// Handles state transition with delay.
|
116
|
+
|
117
|
+
|
118
|
+
handleMoveOutside() {
|
119
|
+
if (this.props.delayPressOut) {
|
120
|
+
this.pressOutTimeout = this.pressOutTimeout || setTimeout(() => {
|
121
|
+
this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);
|
122
|
+
this.pressOutTimeout = null;
|
123
|
+
}, this.props.delayPressOut);
|
124
|
+
} else {
|
125
|
+
this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);
|
126
|
+
}
|
127
|
+
} // handleGoToUndetermined transits to UNDETERMINED state with proper delay
|
128
|
+
|
129
|
+
|
130
|
+
handleGoToUndetermined() {
|
131
|
+
clearTimeout(this.pressOutTimeout); // TODO: maybe it can be undefined
|
132
|
+
|
133
|
+
if (this.props.delayPressOut) {
|
134
|
+
this.pressOutTimeout = setTimeout(() => {
|
135
|
+
if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
|
136
|
+
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
137
|
+
}
|
138
|
+
|
139
|
+
this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
|
140
|
+
this.pressOutTimeout = null;
|
141
|
+
}, this.props.delayPressOut);
|
142
|
+
} else {
|
143
|
+
if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
|
144
|
+
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
145
|
+
}
|
146
|
+
|
147
|
+
this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
componentDidMount() {
|
152
|
+
this.reset();
|
153
|
+
} // reset timeout to prevent memory leaks.
|
154
|
+
|
155
|
+
|
156
|
+
reset() {
|
157
|
+
this.longPressDetected = false;
|
158
|
+
this.pointerInside = true;
|
159
|
+
clearTimeout(this.pressInTimeout);
|
160
|
+
clearTimeout(this.pressOutTimeout);
|
161
|
+
clearTimeout(this.longPressTimeout);
|
162
|
+
this.pressOutTimeout = null;
|
163
|
+
this.longPressTimeout = null;
|
164
|
+
this.pressInTimeout = null;
|
165
|
+
} // All states' transitions are defined here.
|
166
|
+
|
167
|
+
|
168
|
+
moveToState(newState) {
|
169
|
+
var _this$props$onStateCh, _this$props6;
|
170
|
+
|
171
|
+
if (newState === this.STATE) {
|
172
|
+
// Ignore dummy transitions
|
173
|
+
return;
|
174
|
+
}
|
175
|
+
|
176
|
+
if (newState === TOUCHABLE_STATE.BEGAN) {
|
177
|
+
var _this$props$onPressIn, _this$props3;
|
178
|
+
|
179
|
+
// First touch and moving inside
|
180
|
+
(_this$props$onPressIn = (_this$props3 = this.props).onPressIn) === null || _this$props$onPressIn === void 0 ? void 0 : _this$props$onPressIn.call(_this$props3);
|
181
|
+
} else if (newState === TOUCHABLE_STATE.MOVED_OUTSIDE) {
|
182
|
+
var _this$props$onPressOu, _this$props4;
|
183
|
+
|
184
|
+
// Moving outside
|
185
|
+
(_this$props$onPressOu = (_this$props4 = this.props).onPressOut) === null || _this$props$onPressOu === void 0 ? void 0 : _this$props$onPressOu.call(_this$props4);
|
186
|
+
} else if (newState === TOUCHABLE_STATE.UNDETERMINED) {
|
187
|
+
// Need to reset each time on transition to UNDETERMINED
|
188
|
+
this.reset();
|
189
|
+
|
190
|
+
if (this.STATE === TOUCHABLE_STATE.BEGAN) {
|
191
|
+
var _this$props$onPressOu2, _this$props5;
|
192
|
+
|
193
|
+
// ... and if it happens inside button.
|
194
|
+
(_this$props$onPressOu2 = (_this$props5 = this.props).onPressOut) === null || _this$props$onPressOu2 === void 0 ? void 0 : _this$props$onPressOu2.call(_this$props5);
|
195
|
+
}
|
196
|
+
} // Finally call lister (used by subclasses)
|
197
|
+
|
198
|
+
|
199
|
+
(_this$props$onStateCh = (_this$props6 = this.props).onStateChange) === null || _this$props$onStateCh === void 0 ? void 0 : _this$props$onStateCh.call(_this$props6, this.STATE, newState); // ... and make transition.
|
200
|
+
|
201
|
+
this.STATE = newState;
|
202
|
+
}
|
203
|
+
|
204
|
+
componentWillUnmount() {
|
205
|
+
// to prevent memory leaks
|
206
|
+
this.reset();
|
207
|
+
}
|
208
|
+
|
209
|
+
onMoveIn() {
|
210
|
+
if (this.STATE === TOUCHABLE_STATE.MOVED_OUTSIDE) {
|
211
|
+
// This call is not throttled with delays (like in RN's implementation).
|
212
|
+
this.moveToState(TOUCHABLE_STATE.BEGAN);
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
onMoveOut() {
|
217
|
+
// long press should no longer be detected
|
218
|
+
clearTimeout(this.longPressTimeout);
|
219
|
+
this.longPressTimeout = null;
|
220
|
+
|
221
|
+
if (this.STATE === TOUCHABLE_STATE.BEGAN) {
|
222
|
+
this.handleMoveOutside();
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
render() {
|
227
|
+
var _ref, _this$props$touchSoun;
|
228
|
+
|
229
|
+
const hitSlop = (_ref = typeof this.props.hitSlop === 'number' ? {
|
230
|
+
top: this.props.hitSlop,
|
231
|
+
left: this.props.hitSlop,
|
232
|
+
bottom: this.props.hitSlop,
|
233
|
+
right: this.props.hitSlop
|
234
|
+
} : this.props.hitSlop) !== null && _ref !== void 0 ? _ref : undefined;
|
235
|
+
const coreProps = {
|
236
|
+
accessible: this.props.accessible !== false,
|
237
|
+
accessibilityLabel: this.props.accessibilityLabel,
|
238
|
+
accessibilityHint: this.props.accessibilityHint,
|
239
|
+
accessibilityRole: this.props.accessibilityRole,
|
240
|
+
// TODO: check if changed to no 's' correctly, also removed 2 props that are no longer available: `accessibilityComponentType` and `accessibilityTraits`,
|
241
|
+
// would be good to check if it is ok for sure, see: https://github.com/facebook/react-native/issues/24016
|
242
|
+
accessibilityState: this.props.accessibilityState,
|
243
|
+
accessibilityActions: this.props.accessibilityActions,
|
244
|
+
onAccessibilityAction: this.props.onAccessibilityAction,
|
245
|
+
nativeID: this.props.nativeID,
|
246
|
+
onLayout: this.props.onLayout
|
247
|
+
};
|
248
|
+
return /*#__PURE__*/React.createElement(BaseButton, _extends({
|
249
|
+
style: this.props.containerStyle,
|
250
|
+
onHandlerStateChange: // TODO: not sure if it can be undefined instead of null
|
251
|
+
this.props.disabled ? undefined : this.onHandlerStateChange,
|
252
|
+
onGestureEvent: this.onGestureEvent,
|
253
|
+
hitSlop: hitSlop,
|
254
|
+
shouldActivateOnStart: this.props.shouldActivateOnStart,
|
255
|
+
disallowInterruption: this.props.disallowInterruption,
|
256
|
+
testID: this.props.testID,
|
257
|
+
touchSoundDisabled: (_this$props$touchSoun = this.props.touchSoundDisabled) !== null && _this$props$touchSoun !== void 0 ? _this$props$touchSoun : false,
|
258
|
+
enabled: !this.props.disabled
|
259
|
+
}, this.props.extraButtonProps), /*#__PURE__*/React.createElement(Animated.View, _extends({}, coreProps, {
|
260
|
+
style: this.props.style
|
261
|
+
}), this.props.children));
|
262
|
+
}
|
263
|
+
|
264
|
+
}
|
265
|
+
|
266
|
+
_defineProperty(GenericTouchable, "defaultProps", {
|
267
|
+
delayLongPress: 600,
|
268
|
+
extraButtonProps: {
|
269
|
+
rippleColor: 'transparent',
|
270
|
+
exclusive: true
|
271
|
+
}
|
272
|
+
});
|
273
|
+
//# sourceMappingURL=GenericTouchable.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["GenericTouchable.tsx"],"names":["React","Component","Animated","Platform","State","BaseButton","TOUCHABLE_STATE","UNDETERMINED","BEGAN","MOVED_OUTSIDE","GenericTouchable","nativeEvent","pointerInside","onMoveIn","onMoveOut","state","CANCELLED","FAILED","moveToState","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"]}
|
@@ -0,0 +1,95 @@
|
|
1
|
+
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); }
|
2
|
+
|
3
|
+
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; }
|
4
|
+
|
5
|
+
import * as React from 'react';
|
6
|
+
import { Component } from 'react';
|
7
|
+
import GenericTouchable, { TOUCHABLE_STATE } from './GenericTouchable';
|
8
|
+
import { StyleSheet, View } from 'react-native';
|
9
|
+
|
10
|
+
/**
|
11
|
+
* TouchableHighlight follows RN's implementation
|
12
|
+
*/
|
13
|
+
export default class TouchableHighlight extends Component {
|
14
|
+
constructor(props) {
|
15
|
+
super(props);
|
16
|
+
|
17
|
+
_defineProperty(this, "showUnderlay", () => {
|
18
|
+
var _this$props$onShowUnd, _this$props;
|
19
|
+
|
20
|
+
if (!this.hasPressHandler()) {
|
21
|
+
return;
|
22
|
+
}
|
23
|
+
|
24
|
+
this.setState({
|
25
|
+
extraChildStyle: {
|
26
|
+
opacity: this.props.activeOpacity
|
27
|
+
},
|
28
|
+
extraUnderlayStyle: {
|
29
|
+
backgroundColor: this.props.underlayColor
|
30
|
+
}
|
31
|
+
});
|
32
|
+
(_this$props$onShowUnd = (_this$props = this.props).onShowUnderlay) === null || _this$props$onShowUnd === void 0 ? void 0 : _this$props$onShowUnd.call(_this$props);
|
33
|
+
});
|
34
|
+
|
35
|
+
_defineProperty(this, "hasPressHandler", () => this.props.onPress || this.props.onPressIn || this.props.onPressOut || this.props.onLongPress);
|
36
|
+
|
37
|
+
_defineProperty(this, "hideUnderlay", () => {
|
38
|
+
var _this$props$onHideUnd, _this$props2;
|
39
|
+
|
40
|
+
this.setState({
|
41
|
+
extraChildStyle: null,
|
42
|
+
extraUnderlayStyle: null
|
43
|
+
});
|
44
|
+
(_this$props$onHideUnd = (_this$props2 = this.props).onHideUnderlay) === null || _this$props$onHideUnd === void 0 ? void 0 : _this$props$onHideUnd.call(_this$props2);
|
45
|
+
});
|
46
|
+
|
47
|
+
_defineProperty(this, "onStateChange", (_from, to) => {
|
48
|
+
if (to === TOUCHABLE_STATE.BEGAN) {
|
49
|
+
this.showUnderlay();
|
50
|
+
} else if (to === TOUCHABLE_STATE.UNDETERMINED || to === TOUCHABLE_STATE.MOVED_OUTSIDE) {
|
51
|
+
this.hideUnderlay();
|
52
|
+
}
|
53
|
+
});
|
54
|
+
|
55
|
+
this.state = {
|
56
|
+
extraChildStyle: null,
|
57
|
+
extraUnderlayStyle: null
|
58
|
+
};
|
59
|
+
} // Copied from RN
|
60
|
+
|
61
|
+
|
62
|
+
renderChildren() {
|
63
|
+
if (!this.props.children) {
|
64
|
+
return /*#__PURE__*/React.createElement(View, null);
|
65
|
+
}
|
66
|
+
|
67
|
+
const child = React.Children.only(this.props.children); // TODO: not sure if OK but fixes error
|
68
|
+
|
69
|
+
return /*#__PURE__*/React.cloneElement(child, {
|
70
|
+
style: StyleSheet.compose(child.props.style, this.state.extraChildStyle)
|
71
|
+
});
|
72
|
+
}
|
73
|
+
|
74
|
+
render() {
|
75
|
+
const {
|
76
|
+
style = {},
|
77
|
+
...rest
|
78
|
+
} = this.props;
|
79
|
+
const {
|
80
|
+
extraUnderlayStyle
|
81
|
+
} = this.state;
|
82
|
+
return /*#__PURE__*/React.createElement(GenericTouchable, _extends({}, rest, {
|
83
|
+
style: [style, extraUnderlayStyle],
|
84
|
+
onStateChange: this.onStateChange
|
85
|
+
}), this.renderChildren());
|
86
|
+
}
|
87
|
+
|
88
|
+
}
|
89
|
+
|
90
|
+
_defineProperty(TouchableHighlight, "defaultProps", { ...GenericTouchable.defaultProps,
|
91
|
+
activeOpacity: 0.85,
|
92
|
+
delayPressOut: 100,
|
93
|
+
underlayColor: 'black'
|
94
|
+
});
|
95
|
+
//# sourceMappingURL=TouchableHighlight.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["TouchableHighlight.tsx"],"names":["React","Component","GenericTouchable","TOUCHABLE_STATE","StyleSheet","View","TouchableHighlight","constructor","props","hasPressHandler","setState","extraChildStyle","opacity","activeOpacity","extraUnderlayStyle","backgroundColor","underlayColor","onShowUnderlay","onPress","onPressIn","onPressOut","onLongPress","onHideUnderlay","_from","to","BEGAN","showUnderlay","UNDETERMINED","MOVED_OUTSIDE","hideUnderlay","state","renderChildren","children","child","Children","only","cloneElement","style","compose","render","rest","onStateChange","defaultProps","delayPressOut"],"mappings":";;;;AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAASC,SAAT,QAA0B,OAA1B;AACA,OAAOC,gBAAP,IAEEC,eAFF,QAGO,oBAHP;AAIA,SACEC,UADF,EAEEC,IAFF,QAMO,cANP;;AAoBA;AACA;AACA;AACA,eAAe,MAAMC,kBAAN,SAAiCL,SAAjC,CAGb;AAQAM,EAAAA,WAAW,CAACC,KAAD,EAAiC;AAC1C,UAAMA,KAAN;;AAD0C,0CAS7B,MAAM;AAAA;;AACnB,UAAI,CAAC,KAAKC,eAAL,EAAL,EAA6B;AAC3B;AACD;;AACD,WAAKC,QAAL,CAAc;AACZC,QAAAA,eAAe,EAAE;AACfC,UAAAA,OAAO,EAAE,KAAKJ,KAAL,CAAWK;AADL,SADL;AAIZC,QAAAA,kBAAkB,EAAE;AAClBC,UAAAA,eAAe,EAAE,KAAKP,KAAL,CAAWQ;AADV;AAJR,OAAd;AAQA,mDAAKR,KAAL,EAAWS,cAAX;AACD,KAtB2C;;AAAA,6CAwB1B,MAChB,KAAKT,KAAL,CAAWU,OAAX,IACA,KAAKV,KAAL,CAAWW,SADX,IAEA,KAAKX,KAAL,CAAWY,UAFX,IAGA,KAAKZ,KAAL,CAAWa,WA5B+B;;AAAA,0CA8B7B,MAAM;AAAA;;AACnB,WAAKX,QAAL,CAAc;AACZC,QAAAA,eAAe,EAAE,IADL;AAEZG,QAAAA,kBAAkB,EAAE;AAFR,OAAd;AAIA,oDAAKN,KAAL,EAAWc,cAAX;AACD,KApC2C;;AAAA,2CAmD5B,CAACC,KAAD,EAAgBC,EAAhB,KAA+B;AAC7C,UAAIA,EAAE,KAAKrB,eAAe,CAACsB,KAA3B,EAAkC;AAChC,aAAKC,YAAL;AACD,OAFD,MAEO,IACLF,EAAE,KAAKrB,eAAe,CAACwB,YAAvB,IACAH,EAAE,KAAKrB,eAAe,CAACyB,aAFlB,EAGL;AACA,aAAKC,YAAL;AACD;AACF,KA5D2C;;AAE1C,SAAKC,KAAL,GAAa;AACXnB,MAAAA,eAAe,EAAE,IADN;AAEXG,MAAAA,kBAAkB,EAAE;AAFT,KAAb;AAID,GAdD,CAgBA;;;AA8BAiB,EAAAA,cAAc,GAAG;AACf,QAAI,CAAC,KAAKvB,KAAL,CAAWwB,QAAhB,EAA0B;AACxB,0BAAO,oBAAC,IAAD,OAAP;AACD;;AAED,UAAMC,KAAK,GAAGjC,KAAK,CAACkC,QAAN,CAAeC,IAAf,CACZ,KAAK3B,KAAL,CAAWwB,QADC,CAAd,CALe,CAOqB;;AACpC,wBAAOhC,KAAK,CAACoC,YAAN,CAAmBH,KAAnB,EAA0B;AAC/BI,MAAAA,KAAK,EAAEjC,UAAU,CAACkC,OAAX,CAAmBL,KAAK,CAACzB,KAAN,CAAY6B,KAA/B,EAAsC,KAAKP,KAAL,CAAWnB,eAAjD;AADwB,KAA1B,CAAP;AAGD;;AAaD4B,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEF,MAAAA,KAAK,GAAG,EAAV;AAAc,SAAGG;AAAjB,QAA0B,KAAKhC,KAArC;AACA,UAAM;AAAEM,MAAAA;AAAF,QAAyB,KAAKgB,KAApC;AACA,wBACE,oBAAC,gBAAD,eACMU,IADN;AAEE,MAAA,KAAK,EAAE,CAACH,KAAD,EAAQvB,kBAAR,CAFT;AAGE,MAAA,aAAa,EAAE,KAAK2B;AAHtB,QAIG,KAAKV,cAAL,EAJH,CADF;AAQD;;AAjFD;;gBAHmBzB,kB,kBAIG,EACpB,GAAGJ,gBAAgB,CAACwC,YADA;AAEpB7B,EAAAA,aAAa,EAAE,IAFK;AAGpB8B,EAAAA,aAAa,EAAE,GAHK;AAIpB3B,EAAAA,aAAa,EAAE;AAJK,C","sourcesContent":["import * as React from 'react';\r\nimport { Component } from 'react';\r\nimport GenericTouchable, {\r\n GenericTouchableProps,\r\n TOUCHABLE_STATE,\r\n} from './GenericTouchable';\r\nimport {\r\n StyleSheet,\r\n View,\r\n TouchableHighlightProps as RNTouchableHighlightProps,\r\n ColorValue,\r\n ViewProps,\r\n} from 'react-native';\r\n\r\ninterface State {\r\n extraChildStyle: null | {\r\n opacity?: number;\r\n };\r\n extraUnderlayStyle: null | {\r\n backgroundColor?: ColorValue;\r\n };\r\n}\r\n\r\nexport type TouchableHighlightProps = RNTouchableHighlightProps &\r\n GenericTouchableProps;\r\n\r\n/**\r\n * TouchableHighlight follows RN's implementation\r\n */\r\nexport default class TouchableHighlight extends Component<\r\n TouchableHighlightProps,\r\n State\r\n> {\r\n static defaultProps = {\r\n ...GenericTouchable.defaultProps,\r\n activeOpacity: 0.85,\r\n delayPressOut: 100,\r\n underlayColor: 'black',\r\n };\r\n\r\n constructor(props: TouchableHighlightProps) {\r\n super(props);\r\n this.state = {\r\n extraChildStyle: null,\r\n extraUnderlayStyle: null,\r\n };\r\n }\r\n\r\n // Copied from RN\r\n showUnderlay = () => {\r\n if (!this.hasPressHandler()) {\r\n return;\r\n }\r\n this.setState({\r\n extraChildStyle: {\r\n opacity: this.props.activeOpacity,\r\n },\r\n extraUnderlayStyle: {\r\n backgroundColor: this.props.underlayColor,\r\n },\r\n });\r\n this.props.onShowUnderlay?.();\r\n };\r\n\r\n hasPressHandler = () =>\r\n this.props.onPress ||\r\n this.props.onPressIn ||\r\n this.props.onPressOut ||\r\n this.props.onLongPress;\r\n\r\n hideUnderlay = () => {\r\n this.setState({\r\n extraChildStyle: null,\r\n extraUnderlayStyle: null,\r\n });\r\n this.props.onHideUnderlay?.();\r\n };\r\n\r\n renderChildren() {\r\n if (!this.props.children) {\r\n return <View />;\r\n }\r\n\r\n const child = React.Children.only(\r\n this.props.children\r\n ) as React.ReactElement<ViewProps>; // TODO: not sure if OK but fixes error\r\n return React.cloneElement(child, {\r\n style: StyleSheet.compose(child.props.style, this.state.extraChildStyle),\r\n });\r\n }\r\n\r\n onStateChange = (_from: number, to: number) => {\r\n if (to === TOUCHABLE_STATE.BEGAN) {\r\n this.showUnderlay();\r\n } else if (\r\n to === TOUCHABLE_STATE.UNDETERMINED ||\r\n to === TOUCHABLE_STATE.MOVED_OUTSIDE\r\n ) {\r\n this.hideUnderlay();\r\n }\r\n };\r\n\r\n render() {\r\n const { style = {}, ...rest } = this.props;\r\n const { extraUnderlayStyle } = this.state;\r\n return (\r\n <GenericTouchable\r\n {...rest}\r\n style={[style, extraUnderlayStyle]}\r\n onStateChange={this.onStateChange}>\r\n {this.renderChildren()}\r\n </GenericTouchable>\r\n );\r\n }\r\n}\r\n"]}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
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); }
|
2
|
+
|
3
|
+
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; }
|
4
|
+
|
5
|
+
import { Platform } from 'react-native';
|
6
|
+
import * as React from 'react';
|
7
|
+
import { Component } from 'react';
|
8
|
+
import GenericTouchable from './GenericTouchable';
|
9
|
+
|
10
|
+
/**
|
11
|
+
* TouchableNativeFeedback behaves slightly different than RN's TouchableNativeFeedback.
|
12
|
+
* There's small difference with handling long press ripple since RN's implementation calls
|
13
|
+
* ripple animation via bridge. This solution leaves all animations' handling for native components so
|
14
|
+
* it follows native behaviours.
|
15
|
+
*/
|
16
|
+
export default class TouchableNativeFeedback extends Component {
|
17
|
+
// could be taken as RNTouchableNativeFeedback.SelectableBackground etc. but the API may change
|
18
|
+
getExtraButtonProps() {
|
19
|
+
const extraProps = {};
|
20
|
+
const {
|
21
|
+
background
|
22
|
+
} = this.props;
|
23
|
+
|
24
|
+
if (background) {
|
25
|
+
// I changed type values to match those used in RN
|
26
|
+
// TODO(TS): check if it works the same as previous implementation - looks like it works the same as RN component, so it should be ok
|
27
|
+
if (background.type === 'RippleAndroid') {
|
28
|
+
extraProps['borderless'] = background.borderless;
|
29
|
+
extraProps['rippleColor'] = background.color;
|
30
|
+
} else if (background.type === 'ThemeAttrAndroid') {
|
31
|
+
extraProps['borderless'] = background.attribute === 'selectableItemBackgroundBorderless';
|
32
|
+
} // I moved it from above since it should be available in all options
|
33
|
+
|
34
|
+
|
35
|
+
extraProps['rippleRadius'] = background.rippleRadius;
|
36
|
+
}
|
37
|
+
|
38
|
+
extraProps['foreground'] = this.props.useForeground;
|
39
|
+
return extraProps;
|
40
|
+
}
|
41
|
+
|
42
|
+
render() {
|
43
|
+
const {
|
44
|
+
style = {},
|
45
|
+
...rest
|
46
|
+
} = this.props;
|
47
|
+
return /*#__PURE__*/React.createElement(GenericTouchable, _extends({}, rest, {
|
48
|
+
style: style,
|
49
|
+
extraButtonProps: this.getExtraButtonProps()
|
50
|
+
}));
|
51
|
+
}
|
52
|
+
|
53
|
+
}
|
54
|
+
|
55
|
+
_defineProperty(TouchableNativeFeedback, "defaultProps", { ...GenericTouchable.defaultProps,
|
56
|
+
useForeground: true,
|
57
|
+
extraButtonProps: {
|
58
|
+
// Disable hiding ripple on Android
|
59
|
+
rippleColor: null
|
60
|
+
}
|
61
|
+
});
|
62
|
+
|
63
|
+
_defineProperty(TouchableNativeFeedback, "SelectableBackground", rippleRadius => ({
|
64
|
+
type: 'ThemeAttrAndroid',
|
65
|
+
// I added `attribute` prop to clone the implementation of RN and be able to use only 2 types
|
66
|
+
attribute: 'selectableItemBackground',
|
67
|
+
rippleRadius
|
68
|
+
}));
|
69
|
+
|
70
|
+
_defineProperty(TouchableNativeFeedback, "SelectableBackgroundBorderless", rippleRadius => ({
|
71
|
+
type: 'ThemeAttrAndroid',
|
72
|
+
attribute: 'selectableItemBackgroundBorderless',
|
73
|
+
rippleRadius
|
74
|
+
}));
|
75
|
+
|
76
|
+
_defineProperty(TouchableNativeFeedback, "Ripple", (color, borderless, rippleRadius) => ({
|
77
|
+
type: 'RippleAndroid',
|
78
|
+
color,
|
79
|
+
borderless,
|
80
|
+
rippleRadius
|
81
|
+
}));
|
82
|
+
|
83
|
+
_defineProperty(TouchableNativeFeedback, "canUseNativeForeground", () => Platform.OS === 'android' && Platform.Version >= 23);
|
84
|
+
//# sourceMappingURL=TouchableNativeFeedback.android.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["TouchableNativeFeedback.android.tsx"],"names":["Platform","React","Component","GenericTouchable","TouchableNativeFeedback","getExtraButtonProps","extraProps","background","props","type","borderless","color","attribute","rippleRadius","useForeground","render","style","rest","defaultProps","extraButtonProps","rippleColor","OS","Version"],"mappings":";;;;AAAA,SACEA,QADF,QAIO,cAJP;AAKA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,SAASC,SAAT,QAA0B,OAA1B;AACA,OAAOC,gBAAP,MAAwD,oBAAxD;;AAYA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,MAAMC,uBAAN,SAAsCF,SAAtC,CAA8E;AAU3F;AA0BAG,EAAAA,mBAAmB,GAAG;AACpB,UAAMC,UAA6C,GAAG,EAAtD;AACA,UAAM;AAAEC,MAAAA;AAAF,QAAiB,KAAKC,KAA5B;;AACA,QAAID,UAAJ,EAAgB;AACd;AACA;AACA,UAAIA,UAAU,CAACE,IAAX,KAAoB,eAAxB,EAAyC;AACvCH,QAAAA,UAAU,CAAC,YAAD,CAAV,GAA2BC,UAAU,CAACG,UAAtC;AACAJ,QAAAA,UAAU,CAAC,aAAD,CAAV,GAA4BC,UAAU,CAACI,KAAvC;AACD,OAHD,MAGO,IAAIJ,UAAU,CAACE,IAAX,KAAoB,kBAAxB,EAA4C;AACjDH,QAAAA,UAAU,CAAC,YAAD,CAAV,GACEC,UAAU,CAACK,SAAX,KAAyB,oCAD3B;AAED,OATa,CAUd;;;AACAN,MAAAA,UAAU,CAAC,cAAD,CAAV,GAA6BC,UAAU,CAACM,YAAxC;AACD;;AACDP,IAAAA,UAAU,CAAC,YAAD,CAAV,GAA2B,KAAKE,KAAL,CAAWM,aAAtC;AACA,WAAOR,UAAP;AACD;;AACDS,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEC,MAAAA,KAAK,GAAG,EAAV;AAAc,SAAGC;AAAjB,QAA0B,KAAKT,KAArC;AACA,wBACE,oBAAC,gBAAD,eACMS,IADN;AAEE,MAAA,KAAK,EAAED,KAFT;AAGE,MAAA,gBAAgB,EAAE,KAAKX,mBAAL;AAHpB,OADF;AAOD;;AAhE0F;;gBAAxED,uB,kBACG,EACpB,GAAGD,gBAAgB,CAACe,YADA;AAEpBJ,EAAAA,aAAa,EAAE,IAFK;AAGpBK,EAAAA,gBAAgB,EAAE;AAChB;AACAC,IAAAA,WAAW,EAAE;AAFG;AAHE,C;;gBADHhB,uB,0BAWYS,YAAD,KAA4B;AACxDJ,EAAAA,IAAI,EAAE,kBADkD;AAExD;AACAG,EAAAA,SAAS,EAAE,0BAH6C;AAIxDC,EAAAA;AAJwD,CAA5B,C;;gBAXXT,uB,oCAiBsBS,YAAD,KAA4B;AAClEJ,EAAAA,IAAI,EAAE,kBAD4D;AAElEG,EAAAA,SAAS,EAAE,oCAFuD;AAGlEC,EAAAA;AAHkE,CAA5B,C;;gBAjBrBT,uB,YAsBH,CACdO,KADc,EAEdD,UAFc,EAGdG,YAHc,MAIV;AACJJ,EAAAA,IAAI,EAAE,eADF;AAEJE,EAAAA,KAFI;AAGJD,EAAAA,UAHI;AAIJG,EAAAA;AAJI,CAJU,C;;gBAtBGT,uB,4BAiCa,MAC9BJ,QAAQ,CAACqB,EAAT,KAAgB,SAAhB,IAA6BrB,QAAQ,CAACsB,OAAT,IAAoB,E","sourcesContent":["import {\r\n Platform,\r\n TouchableNativeFeedbackProps as RNTouchableNativeFeedbackProps,\r\n ColorValue,\r\n} from 'react-native';\r\nimport * as React from 'react';\r\nimport { Component } from 'react';\r\nimport GenericTouchable, { GenericTouchableProps } from './GenericTouchable';\r\n\r\nexport type TouchableNativeFeedbackExtraProps = {\r\n borderless?: boolean;\r\n rippleColor?: number | null;\r\n rippleRadius?: number | null;\r\n foreground?: boolean;\r\n};\r\n\r\nexport type TouchableNativeFeedbackProps = RNTouchableNativeFeedbackProps &\r\n GenericTouchableProps;\r\n\r\n/**\r\n * TouchableNativeFeedback behaves slightly different than RN's TouchableNativeFeedback.\r\n * There's small difference with handling long press ripple since RN's implementation calls\r\n * ripple animation via bridge. This solution leaves all animations' handling for native components so\r\n * it follows native behaviours.\r\n */\r\nexport default class TouchableNativeFeedback extends Component<TouchableNativeFeedbackProps> {\r\n static defaultProps = {\r\n ...GenericTouchable.defaultProps,\r\n useForeground: true,\r\n extraButtonProps: {\r\n // Disable hiding ripple on Android\r\n rippleColor: null,\r\n },\r\n };\r\n\r\n // could be taken as RNTouchableNativeFeedback.SelectableBackground etc. but the API may change\r\n static SelectableBackground = (rippleRadius?: number) => ({\r\n type: 'ThemeAttrAndroid',\r\n // I added `attribute` prop to clone the implementation of RN and be able to use only 2 types\r\n attribute: 'selectableItemBackground',\r\n rippleRadius,\r\n });\r\n static SelectableBackgroundBorderless = (rippleRadius?: number) => ({\r\n type: 'ThemeAttrAndroid',\r\n attribute: 'selectableItemBackgroundBorderless',\r\n rippleRadius,\r\n });\r\n static Ripple = (\r\n color: ColorValue,\r\n borderless: boolean,\r\n rippleRadius?: number\r\n ) => ({\r\n type: 'RippleAndroid',\r\n color,\r\n borderless,\r\n rippleRadius,\r\n });\r\n\r\n static canUseNativeForeground = () =>\r\n Platform.OS === 'android' && Platform.Version >= 23;\r\n\r\n getExtraButtonProps() {\r\n const extraProps: TouchableNativeFeedbackExtraProps = {};\r\n const { background } = this.props;\r\n if (background) {\r\n // I changed type values to match those used in RN\r\n // TODO(TS): check if it works the same as previous implementation - looks like it works the same as RN component, so it should be ok\r\n if (background.type === 'RippleAndroid') {\r\n extraProps['borderless'] = background.borderless;\r\n extraProps['rippleColor'] = background.color;\r\n } else if (background.type === 'ThemeAttrAndroid') {\r\n extraProps['borderless'] =\r\n background.attribute === 'selectableItemBackgroundBorderless';\r\n }\r\n // I moved it from above since it should be available in all options\r\n extraProps['rippleRadius'] = background.rippleRadius;\r\n }\r\n extraProps['foreground'] = this.props.useForeground;\r\n return extraProps;\r\n }\r\n render() {\r\n const { style = {}, ...rest } = this.props;\r\n return (\r\n <GenericTouchable\r\n {...rest}\r\n style={style}\r\n extraButtonProps={this.getExtraButtonProps()}\r\n />\r\n );\r\n }\r\n}\r\n"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["TouchableNativeFeedback.tsx"],"names":["TouchableNativeFeedback"],"mappings":"AAAA,SAASA,uBAAT,QAAwC,cAAxC;AAEA,eAAeA,uBAAf","sourcesContent":["import { TouchableNativeFeedback } from 'react-native';\r\n\r\nexport default TouchableNativeFeedback;\r\n"]}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
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); }
|
2
|
+
|
3
|
+
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; }
|
4
|
+
|
5
|
+
import { Animated, Easing, StyleSheet, View } from 'react-native';
|
6
|
+
import GenericTouchable, { TOUCHABLE_STATE } from './GenericTouchable';
|
7
|
+
import * as React from 'react';
|
8
|
+
import { Component } from 'react';
|
9
|
+
|
10
|
+
/**
|
11
|
+
* TouchableOpacity bases on timing animation which has been used in RN's core
|
12
|
+
*/
|
13
|
+
export default class TouchableOpacity extends Component {
|
14
|
+
constructor(...args) {
|
15
|
+
super(...args);
|
16
|
+
|
17
|
+
_defineProperty(this, "getChildStyleOpacityWithDefault", () => {
|
18
|
+
const childStyle = StyleSheet.flatten(this.props.style) || {};
|
19
|
+
return childStyle.opacity == null ? 1 : childStyle.opacity.valueOf();
|
20
|
+
});
|
21
|
+
|
22
|
+
_defineProperty(this, "opacity", new Animated.Value(this.getChildStyleOpacityWithDefault()));
|
23
|
+
|
24
|
+
_defineProperty(this, "setOpacityTo", (value, duration) => {
|
25
|
+
var _this$props$useNative;
|
26
|
+
|
27
|
+
Animated.timing(this.opacity, {
|
28
|
+
toValue: value,
|
29
|
+
duration: duration,
|
30
|
+
easing: Easing.inOut(Easing.quad),
|
31
|
+
useNativeDriver: (_this$props$useNative = this.props.useNativeAnimations) !== null && _this$props$useNative !== void 0 ? _this$props$useNative : true
|
32
|
+
}).start();
|
33
|
+
});
|
34
|
+
|
35
|
+
_defineProperty(this, "onStateChange", (_from, to) => {
|
36
|
+
if (to === TOUCHABLE_STATE.BEGAN) {
|
37
|
+
this.setOpacityTo(this.props.activeOpacity, 0);
|
38
|
+
} else if (to === TOUCHABLE_STATE.UNDETERMINED || to === TOUCHABLE_STATE.MOVED_OUTSIDE) {
|
39
|
+
this.setOpacityTo(this.getChildStyleOpacityWithDefault(), 150);
|
40
|
+
}
|
41
|
+
});
|
42
|
+
}
|
43
|
+
|
44
|
+
render() {
|
45
|
+
const {
|
46
|
+
style = {},
|
47
|
+
...rest
|
48
|
+
} = this.props;
|
49
|
+
return /*#__PURE__*/React.createElement(GenericTouchable, _extends({}, rest, {
|
50
|
+
style: [style, {
|
51
|
+
opacity: this.opacity // TODO: fix this
|
52
|
+
|
53
|
+
}],
|
54
|
+
onStateChange: this.onStateChange
|
55
|
+
}), this.props.children ? this.props.children : /*#__PURE__*/React.createElement(View, null));
|
56
|
+
}
|
57
|
+
|
58
|
+
}
|
59
|
+
|
60
|
+
_defineProperty(TouchableOpacity, "defaultProps", { ...GenericTouchable.defaultProps,
|
61
|
+
activeOpacity: 0.2
|
62
|
+
});
|
63
|
+
//# sourceMappingURL=TouchableOpacity.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["TouchableOpacity.tsx"],"names":["Animated","Easing","StyleSheet","View","GenericTouchable","TOUCHABLE_STATE","React","Component","TouchableOpacity","childStyle","flatten","props","style","opacity","valueOf","Value","getChildStyleOpacityWithDefault","value","duration","timing","toValue","easing","inOut","quad","useNativeDriver","useNativeAnimations","start","_from","to","BEGAN","setOpacityTo","activeOpacity","UNDETERMINED","MOVED_OUTSIDE","render","rest","onStateChange","children","defaultProps"],"mappings":";;;;AAAA,SACEA,QADF,EAEEC,MAFF,EAGEC,UAHF,EAIEC,IAJF,QAMO,cANP;AAOA,OAAOC,gBAAP,IACEC,eADF,QAGO,oBAHP;AAIA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,SAASC,SAAT,QAA0B,OAA1B;;AAOA;AACA;AACA;AACA,eAAe,MAAMC,gBAAN,SAA+BD,SAA/B,CAAgE;AAAA;AAAA;;AAAA,6DAO3C,MAAM;AACtC,YAAME,UAAU,GAAGP,UAAU,CAACQ,OAAX,CAAmB,KAAKC,KAAL,CAAWC,KAA9B,KAAwC,EAA3D;AACA,aAAOH,UAAU,CAACI,OAAX,IAAsB,IAAtB,GACH,CADG,GAEFJ,UAAU,CAACI,OAAX,CAAmBC,OAAnB,EAFL;AAGD,KAZ4E;;AAAA,qCAcnE,IAAId,QAAQ,CAACe,KAAb,CAAmB,KAAKC,+BAAL,EAAnB,CAdmE;;AAAA,0CAgB9D,CAACC,KAAD,EAAgBC,QAAhB,KAAqC;AAAA;;AAClDlB,MAAAA,QAAQ,CAACmB,MAAT,CAAgB,KAAKN,OAArB,EAA8B;AAC5BO,QAAAA,OAAO,EAAEH,KADmB;AAE5BC,QAAAA,QAAQ,EAAEA,QAFkB;AAG5BG,QAAAA,MAAM,EAAEpB,MAAM,CAACqB,KAAP,CAAarB,MAAM,CAACsB,IAApB,CAHoB;AAI5BC,QAAAA,eAAe,2BAAE,KAAKb,KAAL,CAAWc,mBAAb,yEAAoC;AAJvB,OAA9B,EAKGC,KALH;AAMD,KAvB4E;;AAAA,2CAyB7D,CAACC,KAAD,EAAgBC,EAAhB,KAA+B;AAC7C,UAAIA,EAAE,KAAKvB,eAAe,CAACwB,KAA3B,EAAkC;AAChC,aAAKC,YAAL,CAAkB,KAAKnB,KAAL,CAAWoB,aAA7B,EAA6C,CAA7C;AACD,OAFD,MAEO,IACLH,EAAE,KAAKvB,eAAe,CAAC2B,YAAvB,IACAJ,EAAE,KAAKvB,eAAe,CAAC4B,aAFlB,EAGL;AACA,aAAKH,YAAL,CAAkB,KAAKd,+BAAL,EAAlB,EAA0D,GAA1D;AACD;AACF,KAlC4E;AAAA;;AAoC7EkB,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEtB,MAAAA,KAAK,GAAG,EAAV;AAAc,SAAGuB;AAAjB,QAA0B,KAAKxB,KAArC;AACA,wBACE,oBAAC,gBAAD,eACMwB,IADN;AAEE,MAAA,KAAK,EAAE,CACLvB,KADK,EAEL;AACEC,QAAAA,OAAO,EAAE,KAAKA,OADhB,CAC8C;;AAD9C,OAFK,CAFT;AAQE,MAAA,aAAa,EAAE,KAAKuB;AARtB,QASG,KAAKzB,KAAL,CAAW0B,QAAX,GAAsB,KAAK1B,KAAL,CAAW0B,QAAjC,gBAA4C,oBAAC,IAAD,OAT/C,CADF;AAaD;;AAnD4E;;gBAA1D7B,gB,kBACG,EACpB,GAAGJ,gBAAgB,CAACkC,YADA;AAEpBP,EAAAA,aAAa,EAAE;AAFK,C","sourcesContent":["import {\r\n Animated,\r\n Easing,\r\n StyleSheet,\r\n View,\r\n TouchableOpacityProps as RNTouchableOpacityProps,\r\n} from 'react-native';\r\nimport GenericTouchable, {\r\n TOUCHABLE_STATE,\r\n GenericTouchableProps,\r\n} from './GenericTouchable';\r\nimport * as React from 'react';\r\nimport { Component } from 'react';\r\n\r\nexport type TouchableOpacityProps = RNTouchableOpacityProps &\r\n GenericTouchableProps & {\r\n useNativeAnimations?: boolean;\r\n };\r\n\r\n/**\r\n * TouchableOpacity bases on timing animation which has been used in RN's core\r\n */\r\nexport default class TouchableOpacity extends Component<TouchableOpacityProps> {\r\n static defaultProps = {\r\n ...GenericTouchable.defaultProps,\r\n activeOpacity: 0.2,\r\n };\r\n\r\n // opacity is 1 one by default but could be overwritten\r\n getChildStyleOpacityWithDefault = () => {\r\n const childStyle = StyleSheet.flatten(this.props.style) || {};\r\n return childStyle.opacity == null\r\n ? 1\r\n : (childStyle.opacity.valueOf() as number);\r\n };\r\n\r\n opacity = new Animated.Value(this.getChildStyleOpacityWithDefault());\r\n\r\n setOpacityTo = (value: number, duration: number) => {\r\n Animated.timing(this.opacity, {\r\n toValue: value,\r\n duration: duration,\r\n easing: Easing.inOut(Easing.quad),\r\n useNativeDriver: this.props.useNativeAnimations ?? true,\r\n }).start();\r\n };\r\n\r\n onStateChange = (_from: number, to: number) => {\r\n if (to === TOUCHABLE_STATE.BEGAN) {\r\n this.setOpacityTo(this.props.activeOpacity!, 0);\r\n } else if (\r\n to === TOUCHABLE_STATE.UNDETERMINED ||\r\n to === TOUCHABLE_STATE.MOVED_OUTSIDE\r\n ) {\r\n this.setOpacityTo(this.getChildStyleOpacityWithDefault(), 150);\r\n }\r\n };\r\n\r\n render() {\r\n const { style = {}, ...rest } = this.props;\r\n return (\r\n <GenericTouchable\r\n {...rest}\r\n style={[\r\n style,\r\n {\r\n opacity: this.opacity as unknown as number, // TODO: fix this\r\n },\r\n ]}\r\n onStateChange={this.onStateChange}>\r\n {this.props.children ? this.props.children : <View />}\r\n </GenericTouchable>\r\n );\r\n }\r\n}\r\n"]}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
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); }
|
2
|
+
|
3
|
+
import * as React from 'react';
|
4
|
+
import GenericTouchable from './GenericTouchable';
|
5
|
+
const TouchableWithoutFeedback = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement(GenericTouchable, _extends({
|
6
|
+
ref: ref
|
7
|
+
}, props)));
|
8
|
+
TouchableWithoutFeedback.defaultProps = GenericTouchable.defaultProps;
|
9
|
+
export default TouchableWithoutFeedback;
|
10
|
+
//# sourceMappingURL=TouchableWithoutFeedback.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["TouchableWithoutFeedback.tsx"],"names":["React","GenericTouchable","TouchableWithoutFeedback","forwardRef","props","ref","defaultProps"],"mappings":";;AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AAEA,OAAOC,gBAAP,MAAwD,oBAAxD;AAIA,MAAMC,wBAAwB,gBAAGF,KAAK,CAACG,UAAN,CAG/B,CAACC,KAAD,EAAQC,GAAR,kBAAgB,oBAAC,gBAAD;AAAkB,EAAA,GAAG,EAAEA;AAAvB,GAAgCD,KAAhC,EAHe,CAAjC;AAKAF,wBAAwB,CAACI,YAAzB,GAAwCL,gBAAgB,CAACK,YAAzD;AAEA,eAAeJ,wBAAf","sourcesContent":["import * as React from 'react';\r\nimport { PropsWithChildren } from 'react';\r\nimport GenericTouchable, { GenericTouchableProps } from './GenericTouchable';\r\n\r\nexport type TouchableWithoutFeedbackProps = GenericTouchableProps;\r\n\r\nconst TouchableWithoutFeedback = React.forwardRef<\r\n GenericTouchable,\r\n PropsWithChildren<TouchableWithoutFeedbackProps>\r\n>((props, ref) => <GenericTouchable ref={ref} {...props} />);\r\n\r\nTouchableWithoutFeedback.defaultProps = GenericTouchable.defaultProps;\r\n\r\nexport default TouchableWithoutFeedback;\r\n"]}
|
@@ -0,0 +1,5 @@
|
|
1
|
+
export { default as TouchableNativeFeedback } from './TouchableNativeFeedback';
|
2
|
+
export { default as TouchableWithoutFeedback } from './TouchableWithoutFeedback';
|
3
|
+
export { default as TouchableOpacity } from './TouchableOpacity';
|
4
|
+
export { default as TouchableHighlight } from './TouchableHighlight';
|
5
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":["default","TouchableNativeFeedback","TouchableWithoutFeedback","TouchableOpacity","TouchableHighlight"],"mappings":"AAGA,SAASA,OAAO,IAAIC,uBAApB,QAAmD,2BAAnD;AACA,SAASD,OAAO,IAAIE,wBAApB,QAAoD,4BAApD;AACA,SAASF,OAAO,IAAIG,gBAApB,QAA4C,oBAA5C;AACA,SAASH,OAAO,IAAII,kBAApB,QAA8C,sBAA9C","sourcesContent":["export type { TouchableHighlightProps } from './TouchableHighlight';\r\nexport type { TouchableOpacityProps } from './TouchableOpacity';\r\nexport type { TouchableWithoutFeedbackProps } from './TouchableWithoutFeedback';\r\nexport { default as TouchableNativeFeedback } from './TouchableNativeFeedback';\r\nexport { default as TouchableWithoutFeedback } from './TouchableWithoutFeedback';\r\nexport { default as TouchableOpacity } from './TouchableOpacity';\r\nexport { default as TouchableHighlight } from './TouchableHighlight';\r\n"]}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import pack from 'react-native/package.json';
|
2
|
+
const [majorStr, minorStr] = pack.version.split('.');
|
3
|
+
const REACT_NATIVE_VERSION = {
|
4
|
+
major: parseInt(majorStr, 10),
|
5
|
+
minor: parseInt(minorStr, 10)
|
6
|
+
};
|
7
|
+
export function getReactNativeVersion() {
|
8
|
+
return REACT_NATIVE_VERSION;
|
9
|
+
}
|
10
|
+
//# sourceMappingURL=getReactNativeVersion.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["getReactNativeVersion.ts"],"names":["pack","majorStr","minorStr","version","split","REACT_NATIVE_VERSION","major","parseInt","minor","getReactNativeVersion"],"mappings":"AAAA,OAAOA,IAAP,MAAiB,2BAAjB;AAEA,MAAM,CAACC,QAAD,EAAWC,QAAX,IAAuBF,IAAI,CAACG,OAAL,CAAaC,KAAb,CAAmB,GAAnB,CAA7B;AACA,MAAMC,oBAAoB,GAAG;AAC3BC,EAAAA,KAAK,EAAEC,QAAQ,CAACN,QAAD,EAAW,EAAX,CADY;AAE3BO,EAAAA,KAAK,EAAED,QAAQ,CAACL,QAAD,EAAW,EAAX;AAFY,CAA7B;AAKA,OAAO,SAASO,qBAAT,GAAiC;AACtC,SAAOJ,oBAAP;AACD","sourcesContent":["import pack from 'react-native/package.json';\r\n\r\nconst [majorStr, minorStr] = pack.version.split('.');\r\nconst REACT_NATIVE_VERSION = {\r\n major: parseInt(majorStr, 10),\r\n minor: parseInt(minorStr, 10),\r\n};\r\n\r\nexport function getReactNativeVersion() {\r\n return REACT_NATIVE_VERSION;\r\n}\r\n"]}
|