@react-native-ohos/react-native-keyboard-controller 1.17.0-beta.2 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.OpenSource +11 -11
- package/README.md +686 -19
- package/harmony/keyboard_controller/BuildProfile.ets +16 -16
- package/harmony/keyboard_controller/Index.ets +29 -28
- package/harmony/keyboard_controller/build-profile.json5 +31 -31
- package/harmony/keyboard_controller/hvigorfile.ts +6 -6
- package/harmony/keyboard_controller/obfuscation-rules.txt +17 -17
- package/harmony/keyboard_controller/oh-package-lock.json5 +28 -18
- package/harmony/keyboard_controller/oh-package.json5 +10 -10
- package/harmony/keyboard_controller/src/main/cpp/CMakeLists.txt +7 -7
- package/harmony/keyboard_controller/src/main/cpp/ClippingScrollViewComponentDescriptor.h +86 -0
- package/harmony/keyboard_controller/src/main/cpp/ClippingScrollViewComponentInstance.cpp +104 -0
- package/harmony/keyboard_controller/src/main/cpp/ClippingScrollViewComponentInstance.h +64 -0
- package/harmony/keyboard_controller/src/main/cpp/ClippingScrollViewJSIBinder.h +60 -0
- package/harmony/keyboard_controller/src/main/cpp/EventEmitters.cpp +119 -96
- package/harmony/keyboard_controller/src/main/cpp/EventEmitters.h +111 -111
- package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentDescriptor.h +94 -94
- package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentInstance.cpp +840 -288
- package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentInstance.h +169 -103
- package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewJSIBinder.h +65 -65
- package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentDescriptor.h +79 -79
- package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentInstance.cpp +108 -108
- package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentInstance.h +83 -83
- package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaJSIBinder.h +60 -60
- package/harmony/keyboard_controller/src/main/cpp/KeyboardToolbarGroupViewComponentDescriptor.h +46 -0
- package/harmony/keyboard_controller/src/main/cpp/KeyboardToolbarGroupViewComponentInstance.cpp +37 -0
- package/harmony/keyboard_controller/src/main/cpp/KeyboardToolbarGroupViewComponentInstance.h +32 -0
- package/harmony/keyboard_controller/src/main/cpp/KeyboardToolbarGroupViewJSIBinder.h +23 -0
- package/harmony/keyboard_controller/src/main/cpp/RNKeyboardController.cpp +103 -46
- package/harmony/keyboard_controller/src/main/cpp/RNKeyboardController.h +48 -48
- package/harmony/keyboard_controller/src/main/cpp/RNKeyboardControllerPackage.h +20 -0
- package/harmony/keyboard_controller/src/main/cpp/RNStatusBarManagerCompat.cpp +45 -45
- package/harmony/keyboard_controller/src/main/cpp/RNStatusBarManagerCompat.h +49 -49
- package/harmony/keyboard_controller/src/main/cpp/ViewHierarchyNavigator.cpp +207 -186
- package/harmony/keyboard_controller/src/main/cpp/ViewHierarchyNavigator.h +131 -112
- package/harmony/keyboard_controller/src/main/cpp/keyboardControllerPackage.cpp +77 -64
- package/harmony/keyboard_controller/src/main/cpp/keyboardControllerPackage.h +85 -77
- package/harmony/keyboard_controller/src/main/ets/Logger.ts +66 -66
- package/harmony/keyboard_controller/src/main/ets/{RNKeyboardControllerPackage.ts → RNKeyboardControllerPackage.ets} +70 -66
- package/harmony/keyboard_controller/src/main/ets/RNKeyboardControllerTurboModule.ts +465 -273
- package/harmony/keyboard_controller/src/main/ets/RNStatusBarManagerCompatTurboModule.ts +128 -119
- package/harmony/keyboard_controller/src/main/ets/Type.ts +63 -62
- package/harmony/keyboard_controller/src/main/module.json5 +11 -11
- package/harmony/keyboard_controller/src/main/resources/base/element/string.json +8 -8
- package/harmony/keyboard_controller/src/main/resources/en_US/element/string.json +8 -8
- package/harmony/keyboard_controller/src/main/resources/zh_CN/element/string.json +8 -8
- package/harmony/keyboard_controller/{ts.ts → ts.ets} +29 -29
- package/harmony/keyboard_controller.har +0 -0
- package/lib/commonjs/animated.js +22 -11
- package/lib/commonjs/animated.js.map +1 -1
- package/lib/commonjs/architecture.js +8 -0
- package/lib/commonjs/architecture.js.map +1 -0
- package/lib/commonjs/bindings.js +40 -5
- package/lib/commonjs/bindings.js.map +1 -1
- package/lib/commonjs/bindings.native.js +28 -5
- package/lib/commonjs/bindings.native.js.map +1 -1
- package/lib/commonjs/compat.js +50 -0
- package/lib/commonjs/compat.js.map +1 -0
- package/lib/commonjs/components/KeyboardAvoidingView/hooks.js +21 -15
- package/lib/commonjs/components/KeyboardAvoidingView/hooks.js.map +1 -1
- package/lib/commonjs/components/KeyboardAvoidingView/index.js +39 -14
- package/lib/commonjs/components/KeyboardAvoidingView/index.js.map +1 -1
- package/lib/commonjs/components/KeyboardAwareScrollView/index.js +94 -57
- package/lib/commonjs/components/KeyboardAwareScrollView/index.js.map +1 -1
- package/lib/commonjs/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js +5 -5
- package/lib/commonjs/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js.map +1 -1
- package/lib/commonjs/components/KeyboardAwareScrollView/utils.js.map +1 -1
- package/lib/commonjs/components/KeyboardChatScrollView/hooks.js +13 -0
- package/lib/commonjs/components/KeyboardChatScrollView/hooks.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/index.js +122 -0
- package/lib/commonjs/components/KeyboardChatScrollView/index.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/types.js +6 -0
- package/lib/commonjs/components/KeyboardChatScrollView/types.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/helpers.js +221 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/helpers.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/index.ios.js +149 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/index.ios.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/index.js +240 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/index.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/types.js +6 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useChatKeyboard/types.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useEndVisible.js +40 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useEndVisible.js.map +1 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useExtraContentPadding/index.js +92 -0
- package/lib/commonjs/components/KeyboardChatScrollView/useExtraContentPadding/index.js.map +1 -0
- package/lib/commonjs/components/KeyboardStickyView/index.js.map +1 -1
- package/lib/commonjs/components/KeyboardToolbar/Arrow.js +2 -3
- package/lib/commonjs/components/KeyboardToolbar/Arrow.js.map +1 -1
- package/lib/commonjs/components/KeyboardToolbar/Button.js +2 -3
- package/lib/commonjs/components/KeyboardToolbar/Button.js.map +1 -1
- package/lib/commonjs/components/KeyboardToolbar/colors.js.map +1 -1
- package/lib/commonjs/components/KeyboardToolbar/colors.native.js.map +1 -1
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Background.js +13 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Background.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Content.js +25 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Content.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Done.js +58 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Done.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Next.js +49 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Next.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Prev.js +49 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/Prev.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/index.js +42 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/index.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/types.js +6 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/components/types.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/context.js +17 -0
- package/lib/commonjs/components/KeyboardToolbar/compound/context.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/constants.js +17 -0
- package/lib/commonjs/components/KeyboardToolbar/constants.js.map +1 -0
- package/lib/commonjs/components/KeyboardToolbar/index.js +98 -87
- package/lib/commonjs/components/KeyboardToolbar/index.js.map +1 -1
- package/lib/commonjs/components/KeyboardToolbar/types.js.map +1 -1
- package/lib/commonjs/components/ScrollViewWithBottomPadding/index.js +120 -0
- package/lib/commonjs/components/ScrollViewWithBottomPadding/index.js.map +1 -0
- package/lib/commonjs/components/ScrollViewWithBottomPadding/styles.js +15 -0
- package/lib/commonjs/components/ScrollViewWithBottomPadding/styles.js.map +1 -0
- package/lib/commonjs/components/hooks/useColorScheme.js.map +1 -1
- package/lib/commonjs/components/hooks/useCombinedRef.js +24 -0
- package/lib/commonjs/components/hooks/useCombinedRef.js.map +1 -0
- package/lib/commonjs/components/hooks/useScrollState.js +62 -0
- package/lib/commonjs/components/hooks/useScrollState.js.map +1 -0
- package/lib/commonjs/components/index.js +7 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/constants.js +3 -1
- package/lib/commonjs/constants.js.map +1 -1
- package/lib/commonjs/context.js +1 -0
- package/lib/commonjs/context.js.map +1 -1
- package/lib/commonjs/hooks/index.js +14 -1
- package/lib/commonjs/hooks/index.js.map +1 -1
- package/lib/commonjs/hooks/useKeyboardState/index.js +39 -0
- package/lib/commonjs/hooks/useKeyboardState/index.js.map +1 -0
- package/lib/commonjs/hooks/useWindowDimensions/index.android.js.map +1 -1
- package/lib/commonjs/hooks/useWindowDimensions/index.js.map +1 -1
- package/lib/commonjs/index.js +27 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/internal.js +54 -18
- package/lib/commonjs/internal.js.map +1 -1
- package/lib/commonjs/module.js +21 -12
- package/lib/commonjs/module.js.map +1 -1
- package/lib/commonjs/reanimated.js.map +1 -1
- package/lib/commonjs/reanimated.native.js.map +1 -1
- package/lib/commonjs/specs/ClippingScrollViewDecoratorViewNativeComponent.js +12 -0
- package/lib/commonjs/specs/ClippingScrollViewDecoratorViewNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/KeyboardControllerViewNativeComponent.js +8 -2
- package/lib/commonjs/specs/KeyboardControllerViewNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/KeyboardGestureAreaNativeComponent.js +2 -1
- package/lib/commonjs/specs/KeyboardGestureAreaNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/KeyboardToolbarGroupViewNativeComponent.js +12 -0
- package/lib/commonjs/specs/KeyboardToolbarGroupViewNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/NativeKeyboardController.js.map +1 -1
- package/lib/commonjs/specs/NativeStatusBarManagerCompat.js.map +1 -1
- package/lib/commonjs/specs/OverKeyboardViewNativeComponent.js.map +1 -1
- package/lib/commonjs/types.js.map +1 -1
- package/lib/commonjs/utils/findNodeHandle/index.js +9 -0
- package/lib/commonjs/utils/findNodeHandle/index.js.map +1 -0
- package/lib/commonjs/utils/findNodeHandle/index.native.js +13 -0
- package/lib/commonjs/utils/findNodeHandle/index.native.js.map +1 -0
- package/lib/commonjs/utils.js.map +1 -1
- package/lib/commonjs/views/KeyboardExtender/index.js +30 -0
- package/lib/commonjs/views/KeyboardExtender/index.js.map +1 -0
- package/lib/commonjs/views/OverKeyboardView/index.js.map +1 -1
- package/lib/commonjs/views/index.js +7 -0
- package/lib/commonjs/views/index.js.map +1 -1
- package/lib/module/animated.js +24 -13
- package/lib/module/animated.js.map +1 -1
- package/lib/module/architecture.js +2 -0
- package/lib/module/architecture.js.map +1 -0
- package/lib/module/bindings.js +39 -5
- package/lib/module/bindings.js.map +1 -1
- package/lib/module/bindings.native.js +27 -5
- package/lib/module/bindings.native.js.map +1 -1
- package/lib/module/compat.js +43 -0
- package/lib/module/compat.js.map +1 -0
- package/lib/module/components/KeyboardAvoidingView/hooks.js +22 -16
- package/lib/module/components/KeyboardAvoidingView/hooks.js.map +1 -1
- package/lib/module/components/KeyboardAvoidingView/index.js +38 -14
- package/lib/module/components/KeyboardAvoidingView/index.js.map +1 -1
- package/lib/module/components/KeyboardAwareScrollView/index.js +97 -60
- package/lib/module/components/KeyboardAwareScrollView/index.js.map +1 -1
- package/lib/module/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js +5 -5
- package/lib/module/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js.map +1 -1
- package/lib/module/components/KeyboardAwareScrollView/utils.js.map +1 -1
- package/lib/module/components/KeyboardChatScrollView/hooks.js +2 -0
- package/lib/module/components/KeyboardChatScrollView/hooks.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/index.js +115 -0
- package/lib/module/components/KeyboardChatScrollView/index.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/types.js +2 -0
- package/lib/module/components/KeyboardChatScrollView/types.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/helpers.js +207 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/helpers.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/index.ios.js +143 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/index.ios.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/index.js +234 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/index.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/types.js +2 -0
- package/lib/module/components/KeyboardChatScrollView/useChatKeyboard/types.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/useEndVisible.js +33 -0
- package/lib/module/components/KeyboardChatScrollView/useEndVisible.js.map +1 -0
- package/lib/module/components/KeyboardChatScrollView/useExtraContentPadding/index.js +87 -0
- package/lib/module/components/KeyboardChatScrollView/useExtraContentPadding/index.js.map +1 -0
- package/lib/module/components/KeyboardStickyView/index.js.map +1 -1
- package/lib/module/components/KeyboardToolbar/Arrow.js +2 -2
- package/lib/module/components/KeyboardToolbar/Arrow.js.map +1 -1
- package/lib/module/components/KeyboardToolbar/Button.js +2 -2
- package/lib/module/components/KeyboardToolbar/Button.js.map +1 -1
- package/lib/module/components/KeyboardToolbar/colors.js.map +1 -1
- package/lib/module/components/KeyboardToolbar/colors.native.js.map +1 -1
- package/lib/module/components/KeyboardToolbar/compound/components/Background.js +6 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Background.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Content.js +18 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Content.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Done.js +50 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Done.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Next.js +41 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Next.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Prev.js +41 -0
- package/lib/module/components/KeyboardToolbar/compound/components/Prev.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/compound/components/index.js +6 -0
- package/lib/module/components/KeyboardToolbar/compound/components/index.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/compound/components/types.js +2 -0
- package/lib/module/components/KeyboardToolbar/compound/components/types.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/compound/context.js +10 -0
- package/lib/module/components/KeyboardToolbar/compound/context.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/constants.js +11 -0
- package/lib/module/components/KeyboardToolbar/constants.js.map +1 -0
- package/lib/module/components/KeyboardToolbar/index.js +98 -88
- package/lib/module/components/KeyboardToolbar/index.js.map +1 -1
- package/lib/module/components/KeyboardToolbar/types.js.map +1 -1
- package/lib/module/components/ScrollViewWithBottomPadding/index.js +112 -0
- package/lib/module/components/ScrollViewWithBottomPadding/index.js.map +1 -0
- package/lib/module/components/ScrollViewWithBottomPadding/styles.js +9 -0
- package/lib/module/components/ScrollViewWithBottomPadding/styles.js.map +1 -0
- package/lib/module/components/hooks/useColorScheme.js.map +1 -1
- package/lib/module/components/hooks/useCombinedRef.js +18 -0
- package/lib/module/components/hooks/useCombinedRef.js.map +1 -0
- package/lib/module/components/hooks/useScrollState.js +56 -0
- package/lib/module/components/hooks/useScrollState.js.map +1 -0
- package/lib/module/components/index.js +1 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/constants.js +3 -0
- package/lib/module/constants.js.map +1 -1
- package/lib/module/context.js +1 -0
- package/lib/module/context.js.map +1 -1
- package/lib/module/hooks/index.js +3 -1
- package/lib/module/hooks/index.js.map +1 -1
- package/lib/module/hooks/useKeyboardState/index.js +33 -0
- package/lib/module/hooks/useKeyboardState/index.js.map +1 -0
- package/lib/module/hooks/useWindowDimensions/index.android.js.map +1 -1
- package/lib/module/hooks/useWindowDimensions/index.js.map +1 -1
- package/lib/module/index.js +3 -2
- package/lib/module/index.js.map +1 -1
- package/lib/module/internal.js +53 -18
- package/lib/module/internal.js.map +1 -1
- package/lib/module/module.js +21 -12
- package/lib/module/module.js.map +1 -1
- package/lib/module/reanimated.js.map +1 -1
- package/lib/module/reanimated.native.js.map +1 -1
- package/lib/module/specs/ClippingScrollViewDecoratorViewNativeComponent.js +6 -0
- package/lib/module/specs/ClippingScrollViewDecoratorViewNativeComponent.js.map +1 -0
- package/lib/module/specs/KeyboardControllerViewNativeComponent.js +7 -1
- package/lib/module/specs/KeyboardControllerViewNativeComponent.js.map +1 -1
- package/lib/module/specs/KeyboardGestureAreaNativeComponent.js +2 -1
- package/lib/module/specs/KeyboardGestureAreaNativeComponent.js.map +1 -1
- package/lib/module/specs/KeyboardToolbarGroupViewNativeComponent.js +5 -0
- package/lib/module/specs/KeyboardToolbarGroupViewNativeComponent.js.map +1 -0
- package/lib/module/specs/NativeKeyboardController.js.map +1 -1
- package/lib/module/specs/NativeStatusBarManagerCompat.js.map +1 -1
- package/lib/module/specs/OverKeyboardViewNativeComponent.js.map +1 -1
- package/lib/module/types.js.map +1 -1
- package/lib/module/utils/findNodeHandle/index.js +2 -0
- package/lib/module/utils/findNodeHandle/index.js.map +1 -0
- package/lib/module/utils/findNodeHandle/index.native.js +3 -0
- package/lib/module/utils/findNodeHandle/index.native.js.map +1 -0
- package/lib/module/utils.js.map +1 -1
- package/lib/module/views/KeyboardExtender/index.js +23 -0
- package/lib/module/views/KeyboardExtender/index.js.map +1 -0
- package/lib/module/views/OverKeyboardView/index.js.map +1 -1
- package/lib/module/views/index.js +1 -0
- package/lib/module/views/index.js.map +1 -1
- package/lib/typescript/animated.d.ts +2 -38
- package/lib/typescript/architecture.d.ts +1 -0
- package/lib/typescript/bindings.d.ts +15 -1
- package/lib/typescript/bindings.native.d.ts +10 -1
- package/lib/typescript/compat.d.ts +12 -0
- package/lib/typescript/components/KeyboardAvoidingView/index.d.ts +5 -0
- package/lib/typescript/components/KeyboardAwareScrollView/index.d.ts +4 -1
- package/lib/typescript/components/KeyboardChatScrollView/hooks.d.ts +2 -0
- package/lib/typescript/components/KeyboardChatScrollView/index.d.ts +17 -0
- package/lib/typescript/components/KeyboardChatScrollView/types.d.ts +113 -0
- package/lib/typescript/components/KeyboardChatScrollView/useChatKeyboard/helpers.d.ts +132 -0
- package/lib/typescript/components/KeyboardChatScrollView/useChatKeyboard/index.d.ts +18 -0
- package/lib/typescript/components/KeyboardChatScrollView/useChatKeyboard/index.ios.d.ts +21 -0
- package/lib/typescript/components/KeyboardChatScrollView/useChatKeyboard/types.d.ts +37 -0
- package/lib/typescript/components/KeyboardChatScrollView/useEndVisible.d.ts +17 -0
- package/lib/typescript/components/KeyboardChatScrollView/useExtraContentPadding/index.d.ts +45 -0
- package/lib/typescript/components/KeyboardToolbar/Button.d.ts +2 -2
- package/lib/typescript/components/KeyboardToolbar/compound/components/Background.d.ts +6 -0
- package/lib/typescript/components/KeyboardToolbar/compound/components/Content.d.ts +7 -0
- package/lib/typescript/components/KeyboardToolbar/compound/components/Done.d.ts +7 -0
- package/lib/typescript/components/KeyboardToolbar/compound/components/Next.d.ts +4 -0
- package/lib/typescript/components/KeyboardToolbar/compound/components/Prev.d.ts +4 -0
- package/lib/typescript/components/KeyboardToolbar/compound/components/index.d.ts +5 -0
- package/lib/typescript/components/KeyboardToolbar/compound/components/types.d.ts +14 -0
- package/lib/typescript/components/KeyboardToolbar/compound/context.d.ts +9 -0
- package/lib/typescript/components/KeyboardToolbar/constants.d.ts +10 -0
- package/lib/typescript/components/KeyboardToolbar/index.d.ts +12 -45
- package/lib/typescript/components/KeyboardToolbar/types.d.ts +24 -1
- package/lib/typescript/components/ScrollViewWithBottomPadding/index.d.ts +30 -0
- package/lib/typescript/components/ScrollViewWithBottomPadding/styles.d.ts +7 -0
- package/lib/typescript/components/hooks/useCombinedRef.d.ts +3 -0
- package/lib/typescript/components/hooks/useScrollState.d.ts +17 -0
- package/lib/typescript/components/index.d.ts +3 -0
- package/lib/typescript/constants.d.ts +1 -0
- package/lib/typescript/context.d.ts +1 -0
- package/lib/typescript/hooks/index.d.ts +2 -0
- package/lib/typescript/hooks/useKeyboardState/index.d.ts +4 -0
- package/lib/typescript/index.d.ts +4 -3
- package/lib/typescript/internal.d.ts +4 -0
- package/lib/typescript/specs/ClippingScrollViewDecoratorViewNativeComponent.d.ts +10 -0
- package/lib/typescript/specs/KeyboardControllerViewNativeComponent.d.ts +4 -0
- package/lib/typescript/specs/KeyboardToolbarGroupViewNativeComponent.d.ts +6 -0
- package/lib/typescript/specs/NativeKeyboardController.d.ts +6 -2
- package/lib/typescript/types.d.ts +81 -5
- package/lib/typescript/utils/findNodeHandle/index.d.ts +4 -0
- package/lib/typescript/utils/findNodeHandle/index.native.d.ts +2 -0
- package/lib/typescript/views/KeyboardExtender/index.d.ts +5 -0
- package/lib/typescript/views/index.d.ts +1 -0
- package/package.json +183 -174
- package/src/animated.tsx +248 -255
- package/src/architecture.ts +1 -0
- package/src/bindings.native.ts +97 -62
- package/src/bindings.ts +81 -42
- package/src/compat.ts +44 -0
- package/src/components/KeyboardAvoidingView/hooks.ts +130 -123
- package/src/components/KeyboardAvoidingView/index.tsx +232 -188
- package/src/components/KeyboardAwareScrollView/index.tsx +452 -389
- package/src/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.ts +133 -133
- package/src/components/KeyboardAwareScrollView/utils.ts +41 -41
- package/src/components/KeyboardChatScrollView/hooks.ts +2 -0
- package/src/components/KeyboardChatScrollView/index.tsx +164 -0
- package/src/components/KeyboardChatScrollView/types.ts +117 -0
- package/src/components/KeyboardChatScrollView/useChatKeyboard/helpers.ts +268 -0
- package/src/components/KeyboardChatScrollView/useChatKeyboard/index.ios.ts +260 -0
- package/src/components/KeyboardChatScrollView/useChatKeyboard/index.ts +374 -0
- package/src/components/KeyboardChatScrollView/useChatKeyboard/types.ts +39 -0
- package/src/components/KeyboardChatScrollView/useEndVisible.ts +66 -0
- package/src/components/KeyboardChatScrollView/useExtraContentPadding/index.ts +149 -0
- package/src/components/KeyboardStickyView/index.tsx +66 -66
- package/src/components/KeyboardToolbar/Arrow.tsx +80 -80
- package/src/components/KeyboardToolbar/Button.tsx +98 -98
- package/src/components/KeyboardToolbar/colors.native.ts +37 -37
- package/src/components/KeyboardToolbar/colors.ts +16 -16
- package/src/components/KeyboardToolbar/compound/components/Background.tsx +9 -0
- package/src/components/KeyboardToolbar/compound/components/Content.tsx +25 -0
- package/src/components/KeyboardToolbar/compound/components/Done.tsx +57 -0
- package/src/components/KeyboardToolbar/compound/components/Next.tsx +49 -0
- package/src/components/KeyboardToolbar/compound/components/Prev.tsx +49 -0
- package/src/components/KeyboardToolbar/compound/components/index.ts +5 -0
- package/src/components/KeyboardToolbar/compound/components/types.ts +15 -0
- package/src/components/KeyboardToolbar/compound/context.ts +25 -0
- package/src/components/KeyboardToolbar/constants.ts +14 -0
- package/src/components/KeyboardToolbar/index.tsx +220 -223
- package/src/components/KeyboardToolbar/types.ts +72 -40
- package/src/components/ScrollViewWithBottomPadding/index.tsx +216 -0
- package/src/components/ScrollViewWithBottomPadding/styles.ts +10 -0
- package/src/components/hooks/useColorScheme.ts +6 -6
- package/src/components/hooks/useCombinedRef.ts +22 -0
- package/src/components/hooks/useScrollState.ts +81 -0
- package/src/components/index.ts +14 -11
- package/src/constants.ts +23 -19
- package/src/context.ts +70 -68
- package/src/hooks/index.ts +91 -90
- package/src/hooks/useKeyboardState/index.ts +52 -0
- package/src/hooks/useWindowDimensions/index.android.ts +38 -38
- package/src/hooks/useWindowDimensions/index.ts +1 -1
- package/src/index.ts +27 -23
- package/src/internal.ts +146 -84
- package/src/module.ts +64 -52
- package/src/reanimated.native.ts +132 -132
- package/src/reanimated.ts +29 -29
- package/src/specs/ClippingScrollViewDecoratorViewNativeComponent.ts +19 -0
- package/src/specs/KeyboardControllerViewNativeComponent.ts +82 -71
- package/src/specs/KeyboardGestureAreaNativeComponent.ts +21 -20
- package/src/specs/KeyboardToolbarGroupViewNativeComponent.ts +10 -0
- package/src/specs/NativeKeyboardController.ts +23 -19
- package/src/specs/NativeStatusBarManagerCompat.ts +14 -14
- package/src/specs/OverKeyboardViewNativeComponent.ts +12 -12
- package/src/types.ts +330 -243
- package/src/utils/findNodeHandle/index.native.ts +3 -0
- package/src/utils/findNodeHandle/index.ts +6 -0
- package/src/utils.ts +1 -1
- package/src/views/KeyboardExtender/index.tsx +30 -0
- package/src/views/OverKeyboardView/index.tsx +43 -43
- package/src/views/index.ts +2 -1
- package/lib/commonjs/monkey-patch.android.js +0 -57
- package/lib/commonjs/monkey-patch.android.js.map +0 -1
- package/lib/commonjs/monkey-patch.js +0 -11
- package/lib/commonjs/monkey-patch.js.map +0 -1
- package/lib/module/monkey-patch.android.js +0 -47
- package/lib/module/monkey-patch.android.js.map +0 -1
- package/lib/module/monkey-patch.js +0 -5
- package/lib/module/monkey-patch.js.map +0 -1
- package/lib/typescript/monkey-patch.android.d.ts +0 -2
- package/lib/typescript/monkey-patch.d.ts +0 -2
- package/src/monkey-patch.android.ts +0 -44
- package/src/monkey-patch.ts +0 -4
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
import React, { forwardRef, useMemo } from "react";
|
|
2
|
-
import Reanimated, {
|
|
3
|
-
interpolate,
|
|
4
|
-
useAnimatedStyle,
|
|
5
|
-
} from "react-native-reanimated";
|
|
6
|
-
|
|
7
|
-
import { useReanimatedKeyboardAnimation } from "../../hooks";
|
|
8
|
-
|
|
9
|
-
import type { View, ViewProps } from "react-native";
|
|
10
|
-
|
|
11
|
-
export type KeyboardStickyViewProps = {
|
|
12
|
-
/**
|
|
13
|
-
* Specify additional offset to the view for given keyboard state.
|
|
14
|
-
*/
|
|
15
|
-
offset?: {
|
|
16
|
-
/**
|
|
17
|
-
* Adds additional `translateY` when keyboard is close. By default `0`.
|
|
18
|
-
*/
|
|
19
|
-
closed?: number;
|
|
20
|
-
/**
|
|
21
|
-
* Adds additional `translateY` when keyboard is open. By default `0`.
|
|
22
|
-
*/
|
|
23
|
-
opened?: number;
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
/** Controls whether this `KeyboardStickyView` instance should take effect. Default is `true` */
|
|
27
|
-
enabled?: boolean;
|
|
28
|
-
} & ViewProps;
|
|
29
|
-
|
|
30
|
-
const KeyboardStickyView = forwardRef<
|
|
31
|
-
View,
|
|
32
|
-
React.PropsWithChildren<KeyboardStickyViewProps>
|
|
33
|
-
>(
|
|
34
|
-
(
|
|
35
|
-
{
|
|
36
|
-
children,
|
|
37
|
-
offset: { closed = 0, opened = 0 } = {},
|
|
38
|
-
style,
|
|
39
|
-
enabled = true,
|
|
40
|
-
...props
|
|
41
|
-
},
|
|
42
|
-
ref,
|
|
43
|
-
) => {
|
|
44
|
-
const { height, progress } = useReanimatedKeyboardAnimation();
|
|
45
|
-
const stickyViewStyle = useAnimatedStyle(() => {
|
|
46
|
-
const offset = interpolate(progress.value, [0, 1], [closed, opened]);
|
|
47
|
-
|
|
48
|
-
return {
|
|
49
|
-
transform: [{ translateY: enabled ? height.value + offset : closed }],
|
|
50
|
-
};
|
|
51
|
-
}, [closed, opened, enabled]);
|
|
52
|
-
|
|
53
|
-
const styles = useMemo(
|
|
54
|
-
() => [style, stickyViewStyle],
|
|
55
|
-
[style, stickyViewStyle],
|
|
56
|
-
);
|
|
57
|
-
|
|
58
|
-
return (
|
|
59
|
-
<Reanimated.View ref={ref} style={styles} {...props}>
|
|
60
|
-
{children}
|
|
61
|
-
</Reanimated.View>
|
|
62
|
-
);
|
|
63
|
-
},
|
|
64
|
-
);
|
|
65
|
-
|
|
66
|
-
export default KeyboardStickyView;
|
|
1
|
+
import React, { forwardRef, useMemo } from "react";
|
|
2
|
+
import Reanimated, {
|
|
3
|
+
interpolate,
|
|
4
|
+
useAnimatedStyle,
|
|
5
|
+
} from "react-native-reanimated";
|
|
6
|
+
|
|
7
|
+
import { useReanimatedKeyboardAnimation } from "../../hooks";
|
|
8
|
+
|
|
9
|
+
import type { View, ViewProps } from "react-native";
|
|
10
|
+
|
|
11
|
+
export type KeyboardStickyViewProps = {
|
|
12
|
+
/**
|
|
13
|
+
* Specify additional offset to the view for given keyboard state.
|
|
14
|
+
*/
|
|
15
|
+
offset?: {
|
|
16
|
+
/**
|
|
17
|
+
* Adds additional `translateY` when keyboard is close. By default `0`.
|
|
18
|
+
*/
|
|
19
|
+
closed?: number;
|
|
20
|
+
/**
|
|
21
|
+
* Adds additional `translateY` when keyboard is open. By default `0`.
|
|
22
|
+
*/
|
|
23
|
+
opened?: number;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
/** Controls whether this `KeyboardStickyView` instance should take effect. Default is `true` */
|
|
27
|
+
enabled?: boolean;
|
|
28
|
+
} & ViewProps;
|
|
29
|
+
|
|
30
|
+
const KeyboardStickyView = forwardRef<
|
|
31
|
+
View,
|
|
32
|
+
React.PropsWithChildren<KeyboardStickyViewProps>
|
|
33
|
+
>(
|
|
34
|
+
(
|
|
35
|
+
{
|
|
36
|
+
children,
|
|
37
|
+
offset: { closed = 0, opened = 0 } = {},
|
|
38
|
+
style,
|
|
39
|
+
enabled = true,
|
|
40
|
+
...props
|
|
41
|
+
},
|
|
42
|
+
ref,
|
|
43
|
+
) => {
|
|
44
|
+
const { height, progress } = useReanimatedKeyboardAnimation();
|
|
45
|
+
const stickyViewStyle = useAnimatedStyle(() => {
|
|
46
|
+
const offset = interpolate(progress.value, [0, 1], [closed, opened]);
|
|
47
|
+
|
|
48
|
+
return {
|
|
49
|
+
transform: [{ translateY: enabled ? height.value + offset : closed }],
|
|
50
|
+
};
|
|
51
|
+
}, [closed, opened, enabled]);
|
|
52
|
+
|
|
53
|
+
const styles = useMemo(
|
|
54
|
+
() => [style, stickyViewStyle],
|
|
55
|
+
[style, stickyViewStyle],
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
return (
|
|
59
|
+
<Reanimated.View ref={ref} style={styles} {...props}>
|
|
60
|
+
{children}
|
|
61
|
+
</Reanimated.View>
|
|
62
|
+
);
|
|
63
|
+
},
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
export default KeyboardStickyView;
|
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
import React, { useMemo } from "react";
|
|
2
|
-
import { Animated, StyleSheet, View } from "react-native";
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
import type { KeyboardToolbarTheme } from "./types";
|
|
7
|
-
import type { ViewStyle } from "react-native";
|
|
8
|
-
|
|
9
|
-
type ArrowProps = {
|
|
10
|
-
type: "prev" | "next";
|
|
11
|
-
disabled?: boolean;
|
|
12
|
-
theme: KeyboardToolbarTheme;
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
const ArrowComponent: React.FC<ArrowProps> = ({ type, disabled, theme }) => {
|
|
16
|
-
const colorScheme =
|
|
17
|
-
|
|
18
|
-
const color = useMemo(
|
|
19
|
-
() => ({
|
|
20
|
-
backgroundColor: disabled
|
|
21
|
-
? theme[colorScheme].disabled
|
|
22
|
-
: theme[colorScheme].primary,
|
|
23
|
-
}),
|
|
24
|
-
[disabled, theme, colorScheme],
|
|
25
|
-
);
|
|
26
|
-
const left = useMemo(() => [styles.arrowLeftLine, color], [color]);
|
|
27
|
-
const right = useMemo(() => [styles.arrowRightLine, color], [color]);
|
|
28
|
-
|
|
29
|
-
return (
|
|
30
|
-
<View
|
|
31
|
-
style={
|
|
32
|
-
type === "next" ? styles.arrowDownContainer : styles.arrowUpContainer
|
|
33
|
-
}
|
|
34
|
-
>
|
|
35
|
-
<View style={styles.arrow}>
|
|
36
|
-
<Animated.View style={left} />
|
|
37
|
-
<Animated.View style={right} />
|
|
38
|
-
</View>
|
|
39
|
-
</View>
|
|
40
|
-
);
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
const arrowLine: ViewStyle = {
|
|
44
|
-
width: 13,
|
|
45
|
-
height: 2,
|
|
46
|
-
borderRadius: 1,
|
|
47
|
-
};
|
|
48
|
-
const arrowUpContainer: ViewStyle = {
|
|
49
|
-
marginHorizontal: 5,
|
|
50
|
-
width: 30,
|
|
51
|
-
height: 30,
|
|
52
|
-
justifyContent: "center",
|
|
53
|
-
alignItems: "center",
|
|
54
|
-
};
|
|
55
|
-
const styles = StyleSheet.create({
|
|
56
|
-
arrowUpContainer: arrowUpContainer,
|
|
57
|
-
arrowDownContainer: {
|
|
58
|
-
...arrowUpContainer,
|
|
59
|
-
transform: [{ rotate: "180deg" }],
|
|
60
|
-
},
|
|
61
|
-
arrow: {
|
|
62
|
-
width: 20,
|
|
63
|
-
height: 20,
|
|
64
|
-
flexDirection: "row",
|
|
65
|
-
alignItems: "center",
|
|
66
|
-
justifyContent: "space-between",
|
|
67
|
-
},
|
|
68
|
-
arrowLeftLine: {
|
|
69
|
-
...arrowLine,
|
|
70
|
-
transform: [{ rotate: "-45deg" }],
|
|
71
|
-
left: -0.5,
|
|
72
|
-
},
|
|
73
|
-
arrowRightLine: {
|
|
74
|
-
...arrowLine,
|
|
75
|
-
transform: [{ rotate: "45deg" }],
|
|
76
|
-
left: -5.5,
|
|
77
|
-
},
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
export default ArrowComponent;
|
|
1
|
+
import React, { useMemo } from "react";
|
|
2
|
+
import { Animated, StyleSheet, View } from "react-native";
|
|
3
|
+
|
|
4
|
+
import { useKeyboardState } from "../../hooks";
|
|
5
|
+
|
|
6
|
+
import type { KeyboardToolbarTheme } from "./types";
|
|
7
|
+
import type { ViewStyle } from "react-native";
|
|
8
|
+
|
|
9
|
+
type ArrowProps = {
|
|
10
|
+
type: "prev" | "next";
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
theme: KeyboardToolbarTheme;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const ArrowComponent: React.FC<ArrowProps> = ({ type, disabled, theme }) => {
|
|
16
|
+
const colorScheme = useKeyboardState((state) => state.appearance);
|
|
17
|
+
|
|
18
|
+
const color = useMemo(
|
|
19
|
+
() => ({
|
|
20
|
+
backgroundColor: disabled
|
|
21
|
+
? theme[colorScheme].disabled
|
|
22
|
+
: theme[colorScheme].primary,
|
|
23
|
+
}),
|
|
24
|
+
[disabled, theme, colorScheme],
|
|
25
|
+
);
|
|
26
|
+
const left = useMemo(() => [styles.arrowLeftLine, color], [color]);
|
|
27
|
+
const right = useMemo(() => [styles.arrowRightLine, color], [color]);
|
|
28
|
+
|
|
29
|
+
return (
|
|
30
|
+
<View
|
|
31
|
+
style={
|
|
32
|
+
type === "next" ? styles.arrowDownContainer : styles.arrowUpContainer
|
|
33
|
+
}
|
|
34
|
+
>
|
|
35
|
+
<View style={styles.arrow}>
|
|
36
|
+
<Animated.View style={left} />
|
|
37
|
+
<Animated.View style={right} />
|
|
38
|
+
</View>
|
|
39
|
+
</View>
|
|
40
|
+
);
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
const arrowLine: ViewStyle = {
|
|
44
|
+
width: 13,
|
|
45
|
+
height: 2,
|
|
46
|
+
borderRadius: 1,
|
|
47
|
+
};
|
|
48
|
+
const arrowUpContainer: ViewStyle = {
|
|
49
|
+
marginHorizontal: 5,
|
|
50
|
+
width: 30,
|
|
51
|
+
height: 30,
|
|
52
|
+
justifyContent: "center",
|
|
53
|
+
alignItems: "center",
|
|
54
|
+
};
|
|
55
|
+
const styles = StyleSheet.create({
|
|
56
|
+
arrowUpContainer: arrowUpContainer,
|
|
57
|
+
arrowDownContainer: {
|
|
58
|
+
...arrowUpContainer,
|
|
59
|
+
transform: [{ rotate: "180deg" }],
|
|
60
|
+
},
|
|
61
|
+
arrow: {
|
|
62
|
+
width: 20,
|
|
63
|
+
height: 20,
|
|
64
|
+
flexDirection: "row",
|
|
65
|
+
alignItems: "center",
|
|
66
|
+
justifyContent: "space-between",
|
|
67
|
+
},
|
|
68
|
+
arrowLeftLine: {
|
|
69
|
+
...arrowLine,
|
|
70
|
+
transform: [{ rotate: "-45deg" }],
|
|
71
|
+
left: -0.5,
|
|
72
|
+
},
|
|
73
|
+
arrowRightLine: {
|
|
74
|
+
...arrowLine,
|
|
75
|
+
transform: [{ rotate: "45deg" }],
|
|
76
|
+
left: -5.5,
|
|
77
|
+
},
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
export default ArrowComponent;
|
|
@@ -1,98 +1,98 @@
|
|
|
1
|
-
import React, { useMemo } from "react";
|
|
2
|
-
import {
|
|
3
|
-
Platform,
|
|
4
|
-
TouchableNativeFeedback,
|
|
5
|
-
TouchableOpacity,
|
|
6
|
-
View,
|
|
7
|
-
} from "react-native";
|
|
8
|
-
|
|
9
|
-
import
|
|
10
|
-
|
|
11
|
-
import type { KeyboardToolbarTheme } from "./types";
|
|
12
|
-
import type { PropsWithChildren } from "react";
|
|
13
|
-
import type { ViewStyle } from "react-native";
|
|
14
|
-
|
|
15
|
-
type ButtonProps = {
|
|
16
|
-
disabled?: boolean;
|
|
17
|
-
onPress: () => void;
|
|
18
|
-
accessibilityLabel: string;
|
|
19
|
-
accessibilityHint: string;
|
|
20
|
-
testID: string;
|
|
21
|
-
rippleRadius?: number;
|
|
22
|
-
style?: ViewStyle;
|
|
23
|
-
theme: KeyboardToolbarTheme;
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
const ButtonIOS = ({
|
|
27
|
-
children,
|
|
28
|
-
onPress,
|
|
29
|
-
disabled,
|
|
30
|
-
accessibilityLabel,
|
|
31
|
-
accessibilityHint,
|
|
32
|
-
testID,
|
|
33
|
-
style,
|
|
34
|
-
}: PropsWithChildren<ButtonProps>) => {
|
|
35
|
-
// immediately switch to plain view to avoid animation flickering
|
|
36
|
-
// when fade out animation happens and view becomes disabled
|
|
37
|
-
const Container = disabled
|
|
38
|
-
? (View as unknown as typeof TouchableOpacity)
|
|
39
|
-
: TouchableOpacity;
|
|
40
|
-
const accessibilityState = useMemo(() => ({ disabled }), [disabled]);
|
|
41
|
-
|
|
42
|
-
return (
|
|
43
|
-
<Container
|
|
44
|
-
accessibilityState={accessibilityState}
|
|
45
|
-
accessibilityRole="button"
|
|
46
|
-
accessibilityLabel={accessibilityLabel}
|
|
47
|
-
accessibilityHint={accessibilityHint}
|
|
48
|
-
onPress={onPress}
|
|
49
|
-
style={style}
|
|
50
|
-
testID={testID}
|
|
51
|
-
>
|
|
52
|
-
{children}
|
|
53
|
-
</Container>
|
|
54
|
-
);
|
|
55
|
-
};
|
|
56
|
-
const ButtonAndroid = ({
|
|
57
|
-
children,
|
|
58
|
-
onPress,
|
|
59
|
-
disabled,
|
|
60
|
-
accessibilityLabel,
|
|
61
|
-
accessibilityHint,
|
|
62
|
-
testID,
|
|
63
|
-
rippleRadius = 18,
|
|
64
|
-
style,
|
|
65
|
-
theme,
|
|
66
|
-
}: PropsWithChildren<ButtonProps>) => {
|
|
67
|
-
const colorScheme =
|
|
68
|
-
const accessibilityState = useMemo(() => ({ disabled }), [disabled]);
|
|
69
|
-
const ripple = useMemo(
|
|
70
|
-
() =>
|
|
71
|
-
TouchableNativeFeedback.Ripple(
|
|
72
|
-
theme[colorScheme].ripple,
|
|
73
|
-
true,
|
|
74
|
-
rippleRadius,
|
|
75
|
-
),
|
|
76
|
-
[colorScheme, rippleRadius, theme],
|
|
77
|
-
);
|
|
78
|
-
|
|
79
|
-
return (
|
|
80
|
-
<TouchableNativeFeedback
|
|
81
|
-
accessibilityState={accessibilityState}
|
|
82
|
-
accessibilityRole="button"
|
|
83
|
-
accessibilityLabel={accessibilityLabel}
|
|
84
|
-
accessibilityHint={accessibilityHint}
|
|
85
|
-
onPress={onPress}
|
|
86
|
-
background={ripple}
|
|
87
|
-
testID={testID}
|
|
88
|
-
style={style}
|
|
89
|
-
>
|
|
90
|
-
<View style={style}>{children}</View>
|
|
91
|
-
</TouchableNativeFeedback>
|
|
92
|
-
);
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
export default Platform.select({
|
|
96
|
-
android: ButtonAndroid,
|
|
97
|
-
default: ButtonIOS,
|
|
98
|
-
});
|
|
1
|
+
import React, { useMemo } from "react";
|
|
2
|
+
import {
|
|
3
|
+
Platform,
|
|
4
|
+
TouchableNativeFeedback,
|
|
5
|
+
TouchableOpacity,
|
|
6
|
+
View,
|
|
7
|
+
} from "react-native";
|
|
8
|
+
|
|
9
|
+
import { useKeyboardState } from "../../hooks";
|
|
10
|
+
|
|
11
|
+
import type { KeyboardToolbarTheme } from "./types";
|
|
12
|
+
import type { PropsWithChildren } from "react";
|
|
13
|
+
import type { GestureResponderEvent, ViewStyle } from "react-native";
|
|
14
|
+
|
|
15
|
+
type ButtonProps = {
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
onPress: (event: GestureResponderEvent) => void;
|
|
18
|
+
accessibilityLabel: string;
|
|
19
|
+
accessibilityHint: string;
|
|
20
|
+
testID: string;
|
|
21
|
+
rippleRadius?: number;
|
|
22
|
+
style?: ViewStyle;
|
|
23
|
+
theme: KeyboardToolbarTheme;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
const ButtonIOS = ({
|
|
27
|
+
children,
|
|
28
|
+
onPress,
|
|
29
|
+
disabled,
|
|
30
|
+
accessibilityLabel,
|
|
31
|
+
accessibilityHint,
|
|
32
|
+
testID,
|
|
33
|
+
style,
|
|
34
|
+
}: PropsWithChildren<ButtonProps>) => {
|
|
35
|
+
// immediately switch to plain view to avoid animation flickering
|
|
36
|
+
// when fade out animation happens and view becomes disabled
|
|
37
|
+
const Container = disabled
|
|
38
|
+
? (View as unknown as typeof TouchableOpacity)
|
|
39
|
+
: TouchableOpacity;
|
|
40
|
+
const accessibilityState = useMemo(() => ({ disabled }), [disabled]);
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<Container
|
|
44
|
+
accessibilityState={accessibilityState}
|
|
45
|
+
accessibilityRole="button"
|
|
46
|
+
accessibilityLabel={accessibilityLabel}
|
|
47
|
+
accessibilityHint={accessibilityHint}
|
|
48
|
+
onPress={onPress}
|
|
49
|
+
style={style}
|
|
50
|
+
testID={testID}
|
|
51
|
+
>
|
|
52
|
+
{children}
|
|
53
|
+
</Container>
|
|
54
|
+
);
|
|
55
|
+
};
|
|
56
|
+
const ButtonAndroid = ({
|
|
57
|
+
children,
|
|
58
|
+
onPress,
|
|
59
|
+
disabled,
|
|
60
|
+
accessibilityLabel,
|
|
61
|
+
accessibilityHint,
|
|
62
|
+
testID,
|
|
63
|
+
rippleRadius = 18,
|
|
64
|
+
style,
|
|
65
|
+
theme,
|
|
66
|
+
}: PropsWithChildren<ButtonProps>) => {
|
|
67
|
+
const colorScheme = useKeyboardState((state) => state.appearance);
|
|
68
|
+
const accessibilityState = useMemo(() => ({ disabled }), [disabled]);
|
|
69
|
+
const ripple = useMemo(
|
|
70
|
+
() =>
|
|
71
|
+
TouchableNativeFeedback.Ripple(
|
|
72
|
+
theme[colorScheme].ripple,
|
|
73
|
+
true,
|
|
74
|
+
rippleRadius,
|
|
75
|
+
),
|
|
76
|
+
[colorScheme, rippleRadius, theme],
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
return (
|
|
80
|
+
<TouchableNativeFeedback
|
|
81
|
+
accessibilityState={accessibilityState}
|
|
82
|
+
accessibilityRole="button"
|
|
83
|
+
accessibilityLabel={accessibilityLabel}
|
|
84
|
+
accessibilityHint={accessibilityHint}
|
|
85
|
+
onPress={onPress}
|
|
86
|
+
background={ripple}
|
|
87
|
+
testID={testID}
|
|
88
|
+
style={style}
|
|
89
|
+
>
|
|
90
|
+
<View style={style}>{children}</View>
|
|
91
|
+
</TouchableNativeFeedback>
|
|
92
|
+
);
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export default Platform.select({
|
|
96
|
+
android: ButtonAndroid,
|
|
97
|
+
default: ButtonIOS,
|
|
98
|
+
});
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
import { Platform, PlatformColor } from "react-native";
|
|
2
|
-
|
|
3
|
-
import type { KeyboardToolbarTheme } from "./types";
|
|
4
|
-
import type { ColorValue } from "react-native";
|
|
5
|
-
|
|
6
|
-
export const colors: KeyboardToolbarTheme = {
|
|
7
|
-
light: {
|
|
8
|
-
primary: Platform.select<ColorValue>({
|
|
9
|
-
ios: PlatformColor("link"),
|
|
10
|
-
default: "#2c2c2c",
|
|
11
|
-
}),
|
|
12
|
-
disabled: Platform.select<ColorValue>({
|
|
13
|
-
ios: PlatformColor("systemGray4"),
|
|
14
|
-
default: "#B0BEC5",
|
|
15
|
-
}),
|
|
16
|
-
background: Platform.select({
|
|
17
|
-
ios: "#F8F8F8",
|
|
18
|
-
default: "#f3f3f4",
|
|
19
|
-
}),
|
|
20
|
-
ripple: "#bcbcbcbc",
|
|
21
|
-
},
|
|
22
|
-
dark: {
|
|
23
|
-
primary: Platform.select<ColorValue>({
|
|
24
|
-
ios: PlatformColor("label"),
|
|
25
|
-
default: "#fafafa",
|
|
26
|
-
}),
|
|
27
|
-
disabled: Platform.select<ColorValue>({
|
|
28
|
-
ios: PlatformColor("systemGray"),
|
|
29
|
-
default: "#707070",
|
|
30
|
-
}),
|
|
31
|
-
background: Platform.select({
|
|
32
|
-
ios: "#555756",
|
|
33
|
-
default: "#2C2C2E",
|
|
34
|
-
}),
|
|
35
|
-
ripple: "#F8F8F888",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
1
|
+
import { Platform, PlatformColor } from "react-native";
|
|
2
|
+
|
|
3
|
+
import type { KeyboardToolbarTheme } from "./types";
|
|
4
|
+
import type { ColorValue } from "react-native";
|
|
5
|
+
|
|
6
|
+
export const colors: KeyboardToolbarTheme = {
|
|
7
|
+
light: {
|
|
8
|
+
primary: Platform.select<ColorValue>({
|
|
9
|
+
ios: PlatformColor("link"),
|
|
10
|
+
default: "#2c2c2c",
|
|
11
|
+
}),
|
|
12
|
+
disabled: Platform.select<ColorValue>({
|
|
13
|
+
ios: PlatformColor("systemGray4"),
|
|
14
|
+
default: "#B0BEC5",
|
|
15
|
+
}),
|
|
16
|
+
background: Platform.select({
|
|
17
|
+
ios: "#F8F8F8",
|
|
18
|
+
default: "#f3f3f4",
|
|
19
|
+
}),
|
|
20
|
+
ripple: "#bcbcbcbc",
|
|
21
|
+
},
|
|
22
|
+
dark: {
|
|
23
|
+
primary: Platform.select<ColorValue>({
|
|
24
|
+
ios: PlatformColor("label"),
|
|
25
|
+
default: "#fafafa",
|
|
26
|
+
}),
|
|
27
|
+
disabled: Platform.select<ColorValue>({
|
|
28
|
+
ios: PlatformColor("systemGray"),
|
|
29
|
+
default: "#707070",
|
|
30
|
+
}),
|
|
31
|
+
background: Platform.select({
|
|
32
|
+
ios: "#555756",
|
|
33
|
+
default: "#2C2C2E",
|
|
34
|
+
}),
|
|
35
|
+
ripple: "#F8F8F888",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import type { KeyboardToolbarTheme } from "./types";
|
|
2
|
-
|
|
3
|
-
export const colors: KeyboardToolbarTheme = {
|
|
4
|
-
light: {
|
|
5
|
-
primary: "#2c2c2c",
|
|
6
|
-
disabled: "#B0BEC5",
|
|
7
|
-
background: "#f3f3f4",
|
|
8
|
-
ripple: "#bcbcbcbc",
|
|
9
|
-
},
|
|
10
|
-
dark: {
|
|
11
|
-
primary: "#fafafa",
|
|
12
|
-
disabled: "#707070",
|
|
13
|
-
background: "#2C2C2E",
|
|
14
|
-
ripple: "#F8F8F888",
|
|
15
|
-
},
|
|
16
|
-
};
|
|
1
|
+
import type { KeyboardToolbarTheme } from "./types";
|
|
2
|
+
|
|
3
|
+
export const colors: KeyboardToolbarTheme = {
|
|
4
|
+
light: {
|
|
5
|
+
primary: "#2c2c2c",
|
|
6
|
+
disabled: "#B0BEC5",
|
|
7
|
+
background: "#f3f3f4",
|
|
8
|
+
ripple: "#bcbcbcbc",
|
|
9
|
+
},
|
|
10
|
+
dark: {
|
|
11
|
+
primary: "#fafafa",
|
|
12
|
+
disabled: "#707070",
|
|
13
|
+
background: "#2C2C2E",
|
|
14
|
+
ripple: "#F8F8F888",
|
|
15
|
+
},
|
|
16
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { StyleSheet, View } from "react-native";
|
|
3
|
+
|
|
4
|
+
import { TEST_ID_KEYBOARD_TOOLBAR_CONTENT } from "../../constants";
|
|
5
|
+
|
|
6
|
+
import type { ReactNode } from "react";
|
|
7
|
+
import type { ViewProps } from "react-native";
|
|
8
|
+
|
|
9
|
+
const Content: React.FC<ViewProps & { children?: ReactNode }> = ({
|
|
10
|
+
children,
|
|
11
|
+
}) => {
|
|
12
|
+
return (
|
|
13
|
+
<View style={styles.flex} testID={TEST_ID_KEYBOARD_TOOLBAR_CONTENT}>
|
|
14
|
+
{children}
|
|
15
|
+
</View>
|
|
16
|
+
);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
const styles = StyleSheet.create({
|
|
20
|
+
flex: {
|
|
21
|
+
flex: 1,
|
|
22
|
+
},
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
export default Content;
|