@react-native-ohos/react-native-keyboard-controller 1.12.8-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (251) hide show
  1. package/LICENSE +21 -0
  2. package/README.OpenSource +11 -0
  3. package/README.md +19 -0
  4. package/harmony/keyboard_controller/BuildProfile.ets +17 -0
  5. package/harmony/keyboard_controller/Index.ets +30 -0
  6. package/harmony/keyboard_controller/ResourceTable.txt +9 -0
  7. package/harmony/keyboard_controller/build-profile.json5 +31 -0
  8. package/harmony/keyboard_controller/consumer-rules.txt +0 -0
  9. package/harmony/keyboard_controller/hvigorfile.ts +6 -0
  10. package/harmony/keyboard_controller/obfuscation-rules.txt +18 -0
  11. package/harmony/keyboard_controller/oh-package-lock.json5 +19 -0
  12. package/harmony/keyboard_controller/oh-package.json5 +11 -0
  13. package/harmony/keyboard_controller/src/main/cpp/CMakeLists.txt +7 -0
  14. package/harmony/keyboard_controller/src/main/cpp/EventEmitters.cpp +96 -0
  15. package/harmony/keyboard_controller/src/main/cpp/EventEmitters.h +111 -0
  16. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentDescriptor.h +98 -0
  17. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentInstance.cpp +274 -0
  18. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentInstance.h +101 -0
  19. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewJSIBinder.h +64 -0
  20. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentDescriptor.h +85 -0
  21. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentInstance.cpp +110 -0
  22. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentInstance.h +84 -0
  23. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaJSIBinder.h +60 -0
  24. package/harmony/keyboard_controller/src/main/cpp/RNKeyboardController.cpp +46 -0
  25. package/harmony/keyboard_controller/src/main/cpp/RNKeyboardController.h +48 -0
  26. package/harmony/keyboard_controller/src/main/cpp/RNKeyboardControllerPackage.cpp +64 -0
  27. package/harmony/keyboard_controller/src/main/cpp/RNKeyboardControllerPackage.h +77 -0
  28. package/harmony/keyboard_controller/src/main/cpp/RNStatusBarManagerCompat.cpp +45 -0
  29. package/harmony/keyboard_controller/src/main/cpp/RNStatusBarManagerCompat.h +49 -0
  30. package/harmony/keyboard_controller/src/main/cpp/ViewHierarchyNavigator.cpp +186 -0
  31. package/harmony/keyboard_controller/src/main/cpp/ViewHierarchyNavigator.h +112 -0
  32. package/harmony/keyboard_controller/src/main/cpp/keyboardControllerPackage.cpp +64 -0
  33. package/harmony/keyboard_controller/src/main/cpp/keyboardControllerPackage.h +77 -0
  34. package/harmony/keyboard_controller/src/main/ets/Logger.ts +67 -0
  35. package/harmony/keyboard_controller/src/main/ets/RNKeyboardControllerPackage.ets +70 -0
  36. package/harmony/keyboard_controller/src/main/ets/RNKeyboardControllerTurboModule.ts +245 -0
  37. package/harmony/keyboard_controller/src/main/ets/RNStatusBarManagerCompatTurboModule.ts +119 -0
  38. package/harmony/keyboard_controller/src/main/ets/Type.ts +62 -0
  39. package/harmony/keyboard_controller/src/main/module.json +29 -0
  40. package/harmony/keyboard_controller/src/main/module.json5 +11 -0
  41. package/harmony/keyboard_controller/src/main/resources/base/element/string.json +8 -0
  42. package/harmony/keyboard_controller/src/main/resources/en_US/element/string.json +8 -0
  43. package/harmony/keyboard_controller/src/main/resources/zh_CN/element/string.json +8 -0
  44. package/harmony/keyboard_controller/ts.ets +30 -0
  45. package/harmony/keyboard_controller.har +0 -0
  46. package/lib/commonjs/animated.js +188 -0
  47. package/lib/commonjs/animated.js.map +1 -0
  48. package/lib/commonjs/bindings.js +38 -0
  49. package/lib/commonjs/bindings.js.map +1 -0
  50. package/lib/commonjs/bindings.native.js +37 -0
  51. package/lib/commonjs/bindings.native.js.map +1 -0
  52. package/lib/commonjs/components/KeyboardAvoidingView/hooks.js +66 -0
  53. package/lib/commonjs/components/KeyboardAvoidingView/hooks.js.map +1 -0
  54. package/lib/commonjs/components/KeyboardAvoidingView/index.js +102 -0
  55. package/lib/commonjs/components/KeyboardAvoidingView/index.js.map +1 -0
  56. package/lib/commonjs/components/KeyboardAwareScrollView/index.js +255 -0
  57. package/lib/commonjs/components/KeyboardAwareScrollView/index.js.map +1 -0
  58. package/lib/commonjs/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js +110 -0
  59. package/lib/commonjs/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js.map +1 -0
  60. package/lib/commonjs/components/KeyboardAwareScrollView/utils.js +37 -0
  61. package/lib/commonjs/components/KeyboardAwareScrollView/utils.js.map +1 -0
  62. package/lib/commonjs/components/KeyboardStickyView/index.js +40 -0
  63. package/lib/commonjs/components/KeyboardStickyView/index.js.map +1 -0
  64. package/lib/commonjs/components/KeyboardToolbar/Arrow.js +76 -0
  65. package/lib/commonjs/components/KeyboardToolbar/Arrow.js.map +1 -0
  66. package/lib/commonjs/components/KeyboardToolbar/Button.js +70 -0
  67. package/lib/commonjs/components/KeyboardToolbar/Button.js.map +1 -0
  68. package/lib/commonjs/components/KeyboardToolbar/colors.js +21 -0
  69. package/lib/commonjs/components/KeyboardToolbar/colors.js.map +1 -0
  70. package/lib/commonjs/components/KeyboardToolbar/colors.native.js +40 -0
  71. package/lib/commonjs/components/KeyboardToolbar/colors.native.js.map +1 -0
  72. package/lib/commonjs/components/KeyboardToolbar/index.js +152 -0
  73. package/lib/commonjs/components/KeyboardToolbar/index.js.map +1 -0
  74. package/lib/commonjs/components/KeyboardToolbar/types.js +6 -0
  75. package/lib/commonjs/components/KeyboardToolbar/types.js.map +1 -0
  76. package/lib/commonjs/components/hooks/useColorScheme.js +10 -0
  77. package/lib/commonjs/components/hooks/useColorScheme.js.map +1 -0
  78. package/lib/commonjs/components/index.js +42 -0
  79. package/lib/commonjs/components/index.js.map +1 -0
  80. package/lib/commonjs/constants.js +27 -0
  81. package/lib/commonjs/constants.js.map +1 -0
  82. package/lib/commonjs/context.js +42 -0
  83. package/lib/commonjs/context.js.map +1 -0
  84. package/lib/commonjs/hooks/index.js +104 -0
  85. package/lib/commonjs/hooks/index.js.map +1 -0
  86. package/lib/commonjs/hooks/useWindowDimensions/index.android.js +29 -0
  87. package/lib/commonjs/hooks/useWindowDimensions/index.android.js.map +1 -0
  88. package/lib/commonjs/hooks/useWindowDimensions/index.js +13 -0
  89. package/lib/commonjs/hooks/useWindowDimensions/index.js.map +1 -0
  90. package/lib/commonjs/index.js +116 -0
  91. package/lib/commonjs/index.js.map +1 -0
  92. package/lib/commonjs/internal.js +73 -0
  93. package/lib/commonjs/internal.js.map +1 -0
  94. package/lib/commonjs/monkey-patch.android.js +57 -0
  95. package/lib/commonjs/monkey-patch.android.js.map +1 -0
  96. package/lib/commonjs/monkey-patch.js +11 -0
  97. package/lib/commonjs/monkey-patch.js.map +1 -0
  98. package/lib/commonjs/reanimated.js +12 -0
  99. package/lib/commonjs/reanimated.js.map +1 -0
  100. package/lib/commonjs/reanimated.native.js +88 -0
  101. package/lib/commonjs/reanimated.native.js.map +1 -0
  102. package/lib/commonjs/specs/KeyboardControllerViewNativeComponent.js +10 -0
  103. package/lib/commonjs/specs/KeyboardControllerViewNativeComponent.js.map +1 -0
  104. package/lib/commonjs/specs/KeyboardGestureAreaNativeComponent.js +12 -0
  105. package/lib/commonjs/specs/KeyboardGestureAreaNativeComponent.js.map +1 -0
  106. package/lib/commonjs/specs/NativeKeyboardController.js +9 -0
  107. package/lib/commonjs/specs/NativeKeyboardController.js.map +1 -0
  108. package/lib/commonjs/specs/NativeStatusBarManagerCompat.js +9 -0
  109. package/lib/commonjs/specs/NativeStatusBarManagerCompat.js.map +1 -0
  110. package/lib/commonjs/types.js +6 -0
  111. package/lib/commonjs/types.js.map +1 -0
  112. package/lib/commonjs/utils.js +9 -0
  113. package/lib/commonjs/utils.js.map +1 -0
  114. package/lib/module/animated.js +180 -0
  115. package/lib/module/animated.js.map +1 -0
  116. package/lib/module/bindings.js +32 -0
  117. package/lib/module/bindings.js.map +1 -0
  118. package/lib/module/bindings.native.js +31 -0
  119. package/lib/module/bindings.native.js.map +1 -0
  120. package/lib/module/components/KeyboardAvoidingView/hooks.js +59 -0
  121. package/lib/module/components/KeyboardAvoidingView/hooks.js.map +1 -0
  122. package/lib/module/components/KeyboardAvoidingView/index.js +95 -0
  123. package/lib/module/components/KeyboardAvoidingView/index.js.map +1 -0
  124. package/lib/module/components/KeyboardAwareScrollView/index.js +248 -0
  125. package/lib/module/components/KeyboardAwareScrollView/index.js.map +1 -0
  126. package/lib/module/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js +103 -0
  127. package/lib/module/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js.map +1 -0
  128. package/lib/module/components/KeyboardAwareScrollView/utils.js +29 -0
  129. package/lib/module/components/KeyboardAwareScrollView/utils.js.map +1 -0
  130. package/lib/module/components/KeyboardStickyView/index.js +33 -0
  131. package/lib/module/components/KeyboardStickyView/index.js.map +1 -0
  132. package/lib/module/components/KeyboardToolbar/Arrow.js +68 -0
  133. package/lib/module/components/KeyboardToolbar/Arrow.js.map +1 -0
  134. package/lib/module/components/KeyboardToolbar/Button.js +62 -0
  135. package/lib/module/components/KeyboardToolbar/Button.js.map +1 -0
  136. package/lib/module/components/KeyboardToolbar/colors.js +15 -0
  137. package/lib/module/components/KeyboardToolbar/colors.js.map +1 -0
  138. package/lib/module/components/KeyboardToolbar/colors.native.js +34 -0
  139. package/lib/module/components/KeyboardToolbar/colors.native.js.map +1 -0
  140. package/lib/module/components/KeyboardToolbar/index.js +140 -0
  141. package/lib/module/components/KeyboardToolbar/index.js.map +1 -0
  142. package/lib/module/components/KeyboardToolbar/types.js +2 -0
  143. package/lib/module/components/KeyboardToolbar/types.js.map +1 -0
  144. package/lib/module/components/hooks/useColorScheme.js +4 -0
  145. package/lib/module/components/hooks/useColorScheme.js.map +1 -0
  146. package/lib/module/components/index.js +5 -0
  147. package/lib/module/components/index.js.map +1 -0
  148. package/lib/module/constants.js +21 -0
  149. package/lib/module/constants.js.map +1 -0
  150. package/lib/module/context.js +35 -0
  151. package/lib/module/context.js.map +1 -0
  152. package/lib/module/hooks/index.js +68 -0
  153. package/lib/module/hooks/index.js.map +1 -0
  154. package/lib/module/hooks/useWindowDimensions/index.android.js +22 -0
  155. package/lib/module/hooks/useWindowDimensions/index.android.js.map +1 -0
  156. package/lib/module/hooks/useWindowDimensions/index.js +2 -0
  157. package/lib/module/hooks/useWindowDimensions/index.js.map +1 -0
  158. package/lib/module/index.js +10 -0
  159. package/lib/module/index.js.map +1 -0
  160. package/lib/module/internal.js +66 -0
  161. package/lib/module/internal.js.map +1 -0
  162. package/lib/module/monkey-patch.android.js +47 -0
  163. package/lib/module/monkey-patch.android.js.map +1 -0
  164. package/lib/module/monkey-patch.js +5 -0
  165. package/lib/module/monkey-patch.js.map +1 -0
  166. package/lib/module/reanimated.js +6 -0
  167. package/lib/module/reanimated.js.map +1 -0
  168. package/lib/module/reanimated.native.js +78 -0
  169. package/lib/module/reanimated.native.js.map +1 -0
  170. package/lib/module/specs/KeyboardControllerViewNativeComponent.js +3 -0
  171. package/lib/module/specs/KeyboardControllerViewNativeComponent.js.map +1 -0
  172. package/lib/module/specs/KeyboardGestureAreaNativeComponent.js +5 -0
  173. package/lib/module/specs/KeyboardGestureAreaNativeComponent.js.map +1 -0
  174. package/lib/module/specs/NativeKeyboardController.js +3 -0
  175. package/lib/module/specs/NativeKeyboardController.js.map +1 -0
  176. package/lib/module/specs/NativeStatusBarManagerCompat.js +3 -0
  177. package/lib/module/specs/NativeStatusBarManagerCompat.js.map +1 -0
  178. package/lib/module/types.js +2 -0
  179. package/lib/module/types.js.map +1 -0
  180. package/lib/module/utils.js +2 -0
  181. package/lib/module/utils.js.map +1 -0
  182. package/lib/typescript/animated.d.ts +31 -0
  183. package/lib/typescript/bindings.d.ts +12 -0
  184. package/lib/typescript/bindings.native.d.ts +12 -0
  185. package/lib/typescript/components/KeyboardAvoidingView/hooks.d.ts +6 -0
  186. package/lib/typescript/components/KeyboardAvoidingView/index.d.ts +50 -0
  187. package/lib/typescript/components/KeyboardAwareScrollView/index.d.ts +25 -0
  188. package/lib/typescript/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.d.ts +6 -0
  189. package/lib/typescript/components/KeyboardAwareScrollView/utils.d.ts +2 -0
  190. package/lib/typescript/components/KeyboardStickyView/index.d.ts +35 -0
  191. package/lib/typescript/components/KeyboardToolbar/Arrow.d.ts +9 -0
  192. package/lib/typescript/components/KeyboardToolbar/Button.d.ts +15 -0
  193. package/lib/typescript/components/KeyboardToolbar/colors.d.ts +2 -0
  194. package/lib/typescript/components/KeyboardToolbar/colors.native.d.ts +2 -0
  195. package/lib/typescript/components/KeyboardToolbar/index.d.ts +50 -0
  196. package/lib/typescript/components/KeyboardToolbar/types.d.ts +18 -0
  197. package/lib/typescript/components/hooks/useColorScheme.d.ts +2 -0
  198. package/lib/typescript/components/index.d.ts +8 -0
  199. package/lib/typescript/constants.d.ts +16 -0
  200. package/lib/typescript/context.d.ts +23 -0
  201. package/lib/typescript/hooks/index.d.ts +17 -0
  202. package/lib/typescript/hooks/useWindowDimensions/index.android.d.ts +2 -0
  203. package/lib/typescript/hooks/useWindowDimensions/index.d.ts +1 -0
  204. package/lib/typescript/index.d.ts +8 -0
  205. package/lib/typescript/internal.d.ts +30 -0
  206. package/lib/typescript/monkey-patch.android.d.ts +2 -0
  207. package/lib/typescript/monkey-patch.d.ts +2 -0
  208. package/lib/typescript/reanimated.d.ts +5 -0
  209. package/lib/typescript/reanimated.native.d.ts +7 -0
  210. package/lib/typescript/specs/KeyboardControllerViewNativeComponent.d.ts +53 -0
  211. package/lib/typescript/specs/KeyboardGestureAreaNativeComponent.d.ts +10 -0
  212. package/lib/typescript/specs/NativeKeyboardController.d.ts +12 -0
  213. package/lib/typescript/specs/NativeStatusBarManagerCompat.d.ts +10 -0
  214. package/lib/typescript/types.d.ts +133 -0
  215. package/lib/typescript/utils.d.ts +1 -0
  216. package/package.json +178 -0
  217. package/react-native-keyboard-controller.podspec +61 -0
  218. package/src/animated.tsx +253 -0
  219. package/src/bindings.native.ts +57 -0
  220. package/src/bindings.ts +38 -0
  221. package/src/components/KeyboardAvoidingView/hooks.ts +58 -0
  222. package/src/components/KeyboardAvoidingView/index.tsx +156 -0
  223. package/src/components/KeyboardAwareScrollView/index.tsx +373 -0
  224. package/src/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.ts +133 -0
  225. package/src/components/KeyboardAwareScrollView/utils.ts +41 -0
  226. package/src/components/KeyboardStickyView/index.tsx +57 -0
  227. package/src/components/KeyboardToolbar/Arrow.tsx +80 -0
  228. package/src/components/KeyboardToolbar/Button.tsx +98 -0
  229. package/src/components/KeyboardToolbar/colors.native.ts +37 -0
  230. package/src/components/KeyboardToolbar/colors.ts +16 -0
  231. package/src/components/KeyboardToolbar/index.tsx +211 -0
  232. package/src/components/KeyboardToolbar/types.ts +40 -0
  233. package/src/components/hooks/useColorScheme.ts +5 -0
  234. package/src/components/index.ts +11 -0
  235. package/src/constants.ts +19 -0
  236. package/src/context.ts +65 -0
  237. package/src/hooks/index.ts +90 -0
  238. package/src/hooks/useWindowDimensions/index.android.ts +33 -0
  239. package/src/hooks/useWindowDimensions/index.ts +1 -0
  240. package/src/index.ts +21 -0
  241. package/src/internal.ts +84 -0
  242. package/src/monkey-patch.android.ts +44 -0
  243. package/src/monkey-patch.ts +4 -0
  244. package/src/reanimated.native.ts +132 -0
  245. package/src/reanimated.ts +29 -0
  246. package/src/specs/KeyboardControllerViewNativeComponent.ts +70 -0
  247. package/src/specs/KeyboardGestureAreaNativeComponent.ts +15 -0
  248. package/src/specs/NativeKeyboardController.ts +19 -0
  249. package/src/specs/NativeStatusBarManagerCompat.ts +14 -0
  250. package/src/types.ts +211 -0
  251. package/src/utils.ts +1 -0
@@ -0,0 +1,84 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+ #ifndef KEYBOARDGESTUREAREACOMPONENTINSTANCE_H
29
+ #define KEYBOARDGESTUREAREACOMPONENTINSTANCE_H
30
+
31
+ #ifndef TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_KEYBOARDGESTUREAREACOMPONENTINSTANCE_H
32
+ #define TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_KEYBOARDGESTUREAREACOMPONENTINSTANCE_H
33
+
34
+ #include <iostream>
35
+ #include <deque>
36
+ #include "RNOH/CppComponentInstance.h"
37
+ #include "KeyboardGestureAreaComponentDescriptor.h"
38
+ #include "RNOH/arkui/StackNode.h"
39
+ #include "RNOH/arkui/ArkUINodeRegistry.h"
40
+ namespace rnoh {
41
+
42
+ class KeyboardGestureAreaComponentInstance
43
+ : public CppComponentInstance<facebook::react::KeyboardGestureAreaShadowNode>,
44
+ public TouchEventHandler {
45
+ public:
46
+ KeyboardGestureAreaComponentInstance(Context context);
47
+ ~KeyboardGestureAreaComponentInstance()
48
+ {
49
+ // Clean-up code here
50
+ std::cout << "KeyboardGestureAreaComponentInstance destroyed." << std::endl;
51
+ NativeNodeApi::getInstance()->unregisterNodeEvent(m_stackNode.getArkUINodeHandle(), NODE_TOUCH_EVENT);
52
+ ArkUINodeRegistry::getInstance().unregisterTouchHandler(&m_stackNode);
53
+ }
54
+ void onTouchEvent(ArkUI_UIInputEvent *e) override;
55
+ void onChildInserted(ComponentInstance::Shared const &childComponentInstance, std::size_t index) override;
56
+ void onChildRemoved(ComponentInstance::Shared const &childComponentInstance) override;
57
+ void onPropsChanged(SharedConcreteProps const &props) override;
58
+ void onCommandReceived(std::string const &commandName, folly::dynamic const &args) override;
59
+ ArkUINode &getLocalRootArkUINode() override;
60
+ protected:
61
+ private:
62
+ bool showOnSwipeUp;
63
+ bool enableSwipeToDismiss;
64
+ std::string interpolator;
65
+ double keyboardHeight;
66
+ size_t maxSize;
67
+ std::deque<folly::dynamic> buffer;
68
+ StackNode m_stackNode;
69
+ struct TouchPoint {
70
+ facebook::react::Float pointerId;
71
+ facebook::react::Float windowX;
72
+ facebook::react::Float windowY;
73
+ };
74
+ folly::dynamic convertNodeTouchPointToDynamic(ArkUI_UIInputEvent *e, int32_t index);
75
+ void swipeToUp();
76
+ void swipeToDismiss();
77
+ void executeInterpolator();
78
+ void handleTouchEvent(ArkUI_UIInputEvent *e);
79
+ };
80
+ } // namespace rnoh
81
+
82
+ #endif
83
+
84
+ #endif
@@ -0,0 +1,60 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+ #ifndef TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_KEYBOARDGESTUREAREAJSIBINDER_H
29
+ #define TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_KEYBOARDGESTUREAREAJSIBINDER_H
30
+
31
+ #pragma once
32
+ #include "RNOHCorePackage/ComponentBinders/ViewComponentJSIBinder.h"
33
+
34
+ namespace rnoh {
35
+ class KeyboardGestureAreaJSIBinder : public ViewComponentJSIBinder {
36
+ protected:
37
+ facebook::jsi::Object createNativeProps(facebook::jsi::Runtime &rt) override
38
+ {
39
+ auto object = ViewComponentJSIBinder::createNativeProps(rt);
40
+ object.setProperty(rt, "interpolator", "String");
41
+ object.setProperty(rt, "showOnSwipeUp", "bool");
42
+ object.setProperty(rt, "enableSwipeToDismiss", "bool");
43
+ return object;
44
+ }
45
+
46
+ facebook::jsi::Object createBubblingEventTypes(facebook::jsi::Runtime &rt) override
47
+ {
48
+ facebook::jsi::Object events(rt);
49
+ return events;
50
+ }
51
+
52
+ facebook::jsi::Object createDirectEventTypes(facebook::jsi::Runtime &rt) override
53
+ {
54
+ facebook::jsi::Object events(rt);
55
+ return events;
56
+ }
57
+ };
58
+ } // namespace rnoh
59
+
60
+ #endif
@@ -0,0 +1,46 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+
29
+ #include "RNKeyboardController.h"
30
+
31
+ namespace rnoh {
32
+ using namespace facebook;
33
+ KeyboardController::KeyboardController(const ArkTSTurboModule::Context ctx, const std::string name) : ArkTSTurboModule(ctx, name)
34
+ {
35
+ methodMap_ = {
36
+ ARK_METHOD_METADATA(getConstants, 0),
37
+ ARK_METHOD_METADATA(setInputMode, 1),
38
+ ARK_METHOD_METADATA(setDefaultMode, 0),
39
+ ARK_METHOD_METADATA(dismiss, 0),
40
+ ARK_METHOD_METADATA(setFocusTo, 1),
41
+ ARK_METHOD_METADATA(addListener, 1),
42
+ ARK_METHOD_METADATA(removeListeners, 1),
43
+ };
44
+ }
45
+
46
+ } // namespace rnoh
@@ -0,0 +1,48 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+ #ifndef TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_RNKEYBOARDCONTROLLER_H
29
+ #define TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_RNKEYBOARDCONTROLLER_H
30
+
31
+ #ifndef RNKEYBOARDCONTROLLER_H
32
+ #define RNKEYBOARDCONTROLLER_H
33
+ #pragma once
34
+
35
+ #include "RNOH/ArkTSTurboModule.h"
36
+
37
+ namespace rnoh {
38
+
39
+ class JSI_EXPORT KeyboardController : public ArkTSTurboModule {
40
+ public:
41
+ KeyboardController(const ArkTSTurboModule::Context ctx, const std::string name);
42
+ };
43
+
44
+ } // namespace rnoh
45
+
46
+ #endif
47
+
48
+ #endif
@@ -0,0 +1,64 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+ #include "RNKeyboardControllerPackage.h"
29
+ #include "KeyboardControllerViewJSIBinder.h"
30
+ #include "KeyboardGestureAreaJSIBinder.h"
31
+
32
+
33
+ using namespace facebook;
34
+ using namespace rnoh;
35
+
36
+ std::vector<facebook::react::ComponentDescriptorProvider>
37
+ RNKeyboardControllerPackage::createComponentDescriptorProviders() {
38
+ return {facebook::react::concreteComponentDescriptorProvider<
39
+ facebook::react::KeyboardControllerViewComponentDescriptor>(),
40
+ facebook::react::concreteComponentDescriptorProvider<
41
+ facebook::react::KeyboardGestureAreaComponentDescriptor>()};
42
+ }
43
+ ComponentJSIBinderByString RNKeyboardControllerPackage::createComponentJSIBinderByName() {
44
+ return {{"RNKeyboardControllerView", std::make_shared<KeyboardControllerViewJSIBinder>()},
45
+ {"RNKeyboardGestureArea", std::make_shared<KeyboardGestureAreaJSIBinder>()}};
46
+ }
47
+
48
+ std::unique_ptr<TurboModuleFactoryDelegate> RNKeyboardControllerPackage::createTurboModuleFactoryDelegate() {
49
+ return std::make_unique<KeyboardControllerTurboModuleFactoryDelegate>();
50
+ }
51
+
52
+ ComponentInstanceFactoryDelegate::Shared RNKeyboardControllerPackage::createComponentInstanceFactoryDelegate() {
53
+ return std::make_shared<KeyboardControllerComponentInstanceFactoryDelegate>();
54
+ };
55
+
56
+ ComponentInstance::Shared RNKeyboardControllerPackage::createComponentInstance(const ComponentInstance::Context &ctx) {
57
+ if (ctx.componentName == "RNKeyboardControllerView") {
58
+ return std::make_shared<KeyboardControllerViewComponentInstance>(ctx);
59
+ }
60
+ if (ctx.componentName == "RNKeyboardGestureArea") {
61
+ return std::make_shared<KeyboardGestureAreaComponentInstance>(ctx);
62
+ }
63
+ return nullptr;
64
+ };
@@ -0,0 +1,77 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+ #ifndef TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_RNKEYBOARDCONTROLLERPACKAGE_H
29
+ #define TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_RNKEYBOARDCONTROLLERPACKAGE_H
30
+
31
+ #ifndef RNKEYBOARDCONTROLLERPACKAGE_H
32
+ #define RNKEYBOARDCONTROLLERPACKAGE_H
33
+
34
+ #include "KeyboardGestureAreaComponentInstance.h"
35
+ #include "RNOH/Package.h"
36
+ #include "RNKeyboardController.h"
37
+ #include "RNStatusBarManagerCompat.h"
38
+ #include "KeyboardControllerViewComponentInstance.h"
39
+ namespace rnoh {
40
+ class KeyboardControllerComponentInstanceFactoryDelegate : public ComponentInstanceFactoryDelegate {
41
+ public:
42
+ ComponentInstance::Shared create(ComponentInstance::Context ctx) override {
43
+ if (ctx.componentName == "RNKeyboardControllerView") {
44
+ return std::make_shared<KeyboardControllerViewComponentInstance>(ctx);
45
+ }
46
+ if (ctx.componentName == "RNKeyboardGestureArea") {
47
+ return std::make_shared<KeyboardGestureAreaComponentInstance>(ctx);
48
+ }
49
+ return nullptr;
50
+ }
51
+ };
52
+ class KeyboardControllerTurboModuleFactoryDelegate : public TurboModuleFactoryDelegate {
53
+ public:
54
+ SharedTurboModule createTurboModule(Context ctx, const std::string &name) const override {
55
+ if (name == "KeyboardController") {
56
+ return std::make_shared<KeyboardController>(ctx, name);
57
+ }
58
+ if (name == "StatusBarManagerCompat") {
59
+ return std::make_shared<StatusBarManagerCompat>(ctx, name);
60
+ }
61
+ return nullptr;
62
+ };
63
+ };
64
+ class RNKeyboardControllerPackage : public Package{
65
+ public:
66
+ RNKeyboardControllerPackage(Package::Context ctx) : Package(ctx) {}
67
+ std::unique_ptr<TurboModuleFactoryDelegate> createTurboModuleFactoryDelegate() override;
68
+ std::vector<facebook::react::ComponentDescriptorProvider> createComponentDescriptorProviders() override;
69
+ ComponentJSIBinderByString createComponentJSIBinderByName() override;
70
+ ComponentInstance::Shared createComponentInstance(const ComponentInstance::Context &ctx) override;
71
+ ComponentInstanceFactoryDelegate::Shared createComponentInstanceFactoryDelegate() override;
72
+ };
73
+ } // namespace rnoh
74
+
75
+ #endif
76
+
77
+ #endif
@@ -0,0 +1,45 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+
29
+ #include "RNStatusBarManagerCompat.h"
30
+
31
+ namespace rnoh {
32
+ using namespace facebook;
33
+
34
+ StatusBarManagerCompat::StatusBarManagerCompat(const ArkTSTurboModule::Context ctx, const std::string name) : ArkTSTurboModule(ctx, name)
35
+ {
36
+ methodMap_ = {
37
+ ARK_METHOD_METADATA(getConstants, 0),
38
+ ARK_METHOD_METADATA(setHidden, 1),
39
+ ARK_METHOD_METADATA(setColor, 2),
40
+ ARK_METHOD_METADATA(setTranslucent, 1),
41
+ ARK_METHOD_METADATA(setStyle, 1),
42
+ };
43
+ }
44
+
45
+ } // namespace rnoh
@@ -0,0 +1,49 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2024 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+ #ifndef TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_RNSTATUSBARMANAGERCOMPAT_H
29
+ #define TESTER_HARMONY_KEYBOARD_CONTROLLER_SRC_MAIN_CPP_RNSTATUSBARMANAGERCOMPAT_H
30
+
31
+ #ifndef RNSTATUSBARMANAGERCOMPAT_H
32
+ #define RNSTATUSBARMANAGERCOMPAT_H
33
+
34
+ #pragma once
35
+
36
+ #include "RNOH/ArkTSTurboModule.h"
37
+
38
+ namespace rnoh {
39
+
40
+ class JSI_EXPORT StatusBarManagerCompat : public ArkTSTurboModule {
41
+ public:
42
+ StatusBarManagerCompat(const ArkTSTurboModule::Context ctx, const std::string name);
43
+ };
44
+
45
+ } // namespace rnoh
46
+
47
+ #endif
48
+
49
+ #endif
@@ -0,0 +1,186 @@
1
+ /*
2
+ * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3
+ */
4
+ /**
5
+ * MIT License
6
+ *
7
+ * Copyright (C) 2026 Huawei Device Co., Ltd.
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ * of this software and associated documentation files (the "Software"), to deal
11
+ * in the Software without restriction, including without limitation the rights
12
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ * copies of the Software, and to permit persons to whom the Software is
14
+ * furnished to do so, subject to the following conditions:
15
+ *
16
+ * The above copyright notice and this permission notice shall be included in all
17
+ * copies or substantial portions of the Software.
18
+ *
19
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ * SOFTWARE.
26
+ */
27
+
28
+ #include "ViewHierarchyNavigator.h"
29
+ #include <glog/logging.h>
30
+ #include <algorithm>
31
+
32
+ namespace rnoh {
33
+ TextInputComponentInstance::Shared ViewHierarchyNavigator::setFocusTo(
34
+ const std::string& direction, ComponentInstance::Shared currentFocus) {
35
+ if (!currentFocus) {
36
+ DLOG(INFO) << "ViewHierarchyNavigator::setFocusTo - currentFocus is null";
37
+ return nullptr;
38
+ }
39
+ DLOG(INFO) << "ViewHierarchyNavigator::setFocusTo direction=" << direction
40
+ << " currentFocus->getTag(): " << currentFocus->getTag();
41
+ auto textInput = findTextInputInDirection(currentFocus, direction);
42
+ if (textInput) {
43
+ DLOG(INFO) << "ViewHierarchyNavigator::setFocusTo - found target input";
44
+ } else {
45
+ DLOG(INFO) << "ViewHierarchyNavigator::setFocusTo - no target input found";
46
+ }
47
+ return textInput;
48
+ }
49
+
50
+ std::vector<TextInputComponentInstance::Shared> ViewHierarchyNavigator::getAllInputFields(
51
+ ComponentInstance::Shared rootComponent) {
52
+ std::vector<TextInputComponentInstance::Shared> textInputs;
53
+ if (!rootComponent) {
54
+ return textInputs;
55
+ }
56
+ // 递归查找所有输入框
57
+ std::function<void(ComponentInstance::Shared)> findTextInputs =
58
+ [&textInputs, &findTextInputs](ComponentInstance::Shared component) {
59
+ if (!component) return;
60
+ auto textInput = isValidTextInput(component);
61
+ if (textInput) {
62
+ textInputs.push_back(textInput);
63
+ } else {
64
+ // 递归查找子组件
65
+ const auto& children = component->getChildren();
66
+ for (const auto& child : children) {
67
+ findTextInputs(child);
68
+ }
69
+ }
70
+ };
71
+ findTextInputs(rootComponent);
72
+ return textInputs;
73
+ }
74
+
75
+ TextInputComponentInstance::Shared ViewHierarchyNavigator::findTextInputInDirection(
76
+ ComponentInstance::Shared currentFocus, const std::string& direction) {
77
+ if (!currentFocus) {
78
+ return nullptr;
79
+ }
80
+ DLOG(INFO) << "jjtest currentFocus.name" << currentFocus->getComponentName();
81
+ // 获取父组件
82
+ auto parentComponent = currentFocus->getParent().lock();
83
+ if (!parentComponent) {
84
+ DLOG(INFO) << "jjtest ViewHierarchyNavigator - no parent found";
85
+ return nullptr;
86
+ }
87
+ // 获取父组件的所有子组件
88
+ const auto& siblings = parentComponent->getChildren();
89
+ // 找到当前组件在父组件中的索引
90
+ int currentIndex = -1;
91
+ for (size_t i = 0; i < siblings.size(); ++i) {
92
+ if (siblings[i].get() == currentFocus.get()) {
93
+ currentIndex = static_cast<int>(i);
94
+ break;
95
+ }
96
+ }
97
+ if (currentIndex == -1) {
98
+ DLOG(INFO) << "ViewHierarchyNavigator - current focus not found in parent's children";
99
+ return nullptr;
100
+ }
101
+ DLOG(INFO) << "ViewHierarchyNavigator - currentIndex=" << currentIndex
102
+ << " siblings.size()=" << siblings.size();
103
+ // 根据方向确定遍历范围
104
+ if (direction == "next") {
105
+ // 向后遍历:从 currentIndex+1 到末尾
106
+ for (size_t i = currentIndex + 1; i < siblings.size(); ++i) {
107
+ auto result = findTextInputOrGoDeeper(siblings[i], direction);
108
+ if (result) {
109
+ return result;
110
+ }
111
+ }
112
+ } else {
113
+ // 向前遍历:从 currentIndex-1 到 0(倒序)
114
+ for (int i = currentIndex - 1; i >= 0; --i) {
115
+ auto result = findTextInputOrGoDeeper(siblings[i], direction);
116
+ if (result) {
117
+ return result;
118
+ }
119
+ }
120
+ }
121
+ // 如果同级没找到,递归到父级继续查找
122
+ DLOG(INFO) << "ViewHierarchyNavigator - searching in parent's parent";
123
+ return findTextInputInDirection(parentComponent, direction);
124
+ }
125
+
126
+ TextInputComponentInstance::Shared ViewHierarchyNavigator::findTextInputInHierarchy(
127
+ ComponentInstance::Shared component, const std::string& direction) {
128
+ if (!component) {
129
+ return nullptr;
130
+ }
131
+ const auto& children = component->getChildren();
132
+ if (direction == "next") {
133
+ // 正序遍历
134
+ for (const auto& child : children) {
135
+ auto result = findTextInputOrGoDeeper(child, direction);
136
+ if (result) {
137
+ return result;
138
+ }
139
+ }
140
+ } else {
141
+ // 倒序遍历
142
+ for (auto it = children.rbegin(); it != children.rend(); ++it) {
143
+ auto result = findTextInputOrGoDeeper(*it, direction);
144
+ if (result) {
145
+ return result;
146
+ }
147
+ }
148
+ }
149
+ return nullptr;
150
+ }
151
+
152
+ TextInputComponentInstance::Shared ViewHierarchyNavigator::findTextInputOrGoDeeper(
153
+ ComponentInstance::Shared child, const std::string& direction) {
154
+ if (!child) {
155
+ return nullptr;
156
+ }
157
+ // 首先检查当前组件是否是有效输入框
158
+ auto textInput = isValidTextInput(child);
159
+ if (textInput) {
160
+ return textInput;
161
+ }
162
+ // 如果不是输入框,递归查找其子组件
163
+ return findTextInputInHierarchy(child, direction);
164
+ }
165
+
166
+ TextInputComponentInstance::Shared ViewHierarchyNavigator::isValidTextInput(
167
+ ComponentInstance::Shared component) {
168
+ if (!component) {
169
+ return nullptr;
170
+ }
171
+ // 检查组件名称是否包含 TextInput 或 TextArea
172
+ const std::string& name = component->getComponentName();
173
+ if (name.find("TextInput") != std::string::npos ||
174
+ name.find("TextArea") != std::string::npos) {
175
+ // 尝试转换为 TextInputComponentInstance
176
+ auto textInput = std::dynamic_pointer_cast<TextInputComponentInstance>(component);
177
+ if (textInput) {
178
+ // TODO: 可以在这里添加 enabled 状态检查
179
+ // 类似于 iOS 的 textField.isEnabled 或 textView.isEditable
180
+ DLOG(INFO) << "ViewHierarchyNavigator - found valid TextInput: " << name;
181
+ return textInput;
182
+ }
183
+ }
184
+ return nullptr;
185
+ }
186
+ } // namespace rnoh