@react-native-ohos/react-native-keyboard-controller 1.16.6-rc.2 → 1.17.0-beta.2

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 (174) hide show
  1. package/LICENSE +21 -21
  2. package/README.OpenSource +10 -10
  3. package/README.md +19 -19
  4. package/harmony/keyboard_controller/BuildProfile.ets +16 -16
  5. package/harmony/keyboard_controller/Index.ets +28 -7
  6. package/harmony/keyboard_controller/build-profile.json5 +31 -31
  7. package/harmony/keyboard_controller/hvigorfile.ts +6 -6
  8. package/harmony/keyboard_controller/obfuscation-rules.txt +17 -17
  9. package/harmony/keyboard_controller/oh-package-lock.json5 +19 -0
  10. package/harmony/keyboard_controller/oh-package.json5 +10 -10
  11. package/harmony/keyboard_controller/src/main/cpp/CMakeLists.txt +7 -7
  12. package/harmony/keyboard_controller/src/main/cpp/EventEmitters.cpp +95 -95
  13. package/harmony/keyboard_controller/src/main/cpp/EventEmitters.h +111 -90
  14. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentDescriptor.h +94 -73
  15. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentInstance.cpp +287 -171
  16. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewComponentInstance.h +103 -76
  17. package/harmony/keyboard_controller/src/main/cpp/KeyboardControllerViewJSIBinder.h +65 -44
  18. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentDescriptor.h +79 -58
  19. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentInstance.cpp +107 -86
  20. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaComponentInstance.h +83 -62
  21. package/harmony/keyboard_controller/src/main/cpp/KeyboardGestureAreaJSIBinder.h +60 -39
  22. package/harmony/keyboard_controller/src/main/cpp/RNKeyboardController.cpp +46 -25
  23. package/harmony/keyboard_controller/src/main/cpp/RNKeyboardController.h +48 -27
  24. package/harmony/keyboard_controller/src/main/cpp/RNStatusBarManagerCompat.cpp +45 -24
  25. package/harmony/keyboard_controller/src/main/cpp/RNStatusBarManagerCompat.h +49 -28
  26. package/harmony/keyboard_controller/src/main/cpp/ViewHierarchyNavigator.cpp +186 -0
  27. package/harmony/keyboard_controller/src/main/cpp/ViewHierarchyNavigator.h +112 -0
  28. package/harmony/keyboard_controller/src/main/cpp/keyboardControllerPackage.cpp +64 -43
  29. package/harmony/keyboard_controller/src/main/cpp/keyboardControllerPackage.h +77 -56
  30. package/harmony/keyboard_controller/src/main/ets/Logger.ts +66 -45
  31. package/harmony/keyboard_controller/src/main/ets/RNKeyboardControllerPackage.ts +66 -45
  32. package/harmony/keyboard_controller/src/main/ets/RNKeyboardControllerTurboModule.ts +273 -238
  33. package/harmony/keyboard_controller/src/main/ets/RNStatusBarManagerCompatTurboModule.ts +119 -98
  34. package/harmony/keyboard_controller/src/main/ets/Type.ts +62 -41
  35. package/harmony/keyboard_controller/src/main/module.json5 +11 -11
  36. package/harmony/keyboard_controller/src/main/resources/base/element/string.json +8 -8
  37. package/harmony/keyboard_controller/src/main/resources/en_US/element/string.json +8 -8
  38. package/harmony/keyboard_controller/src/main/resources/zh_CN/element/string.json +8 -8
  39. package/harmony/keyboard_controller/ts.ts +29 -8
  40. package/harmony/keyboard_controller.har +0 -0
  41. package/lib/commonjs/animated.js.map +1 -1
  42. package/lib/commonjs/bindings.js +3 -3
  43. package/lib/commonjs/bindings.js.map +1 -1
  44. package/lib/commonjs/bindings.native.js +3 -3
  45. package/lib/commonjs/bindings.native.js.map +1 -1
  46. package/lib/commonjs/components/KeyboardAvoidingView/hooks.js.map +1 -1
  47. package/lib/commonjs/components/KeyboardAvoidingView/index.js +3 -3
  48. package/lib/commonjs/components/KeyboardAvoidingView/index.js.map +1 -1
  49. package/lib/commonjs/components/KeyboardAwareScrollView/index.js +39 -39
  50. package/lib/commonjs/components/KeyboardAwareScrollView/index.js.map +1 -1
  51. package/lib/commonjs/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js +3 -3
  52. package/lib/commonjs/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js.map +1 -1
  53. package/lib/commonjs/components/KeyboardAwareScrollView/utils.js.map +1 -1
  54. package/lib/commonjs/components/KeyboardStickyView/index.js.map +1 -1
  55. package/lib/commonjs/components/KeyboardToolbar/Arrow.js.map +1 -1
  56. package/lib/commonjs/components/KeyboardToolbar/Button.js.map +1 -1
  57. package/lib/commonjs/components/KeyboardToolbar/colors.js.map +1 -1
  58. package/lib/commonjs/components/KeyboardToolbar/colors.native.js.map +1 -1
  59. package/lib/commonjs/components/KeyboardToolbar/index.js +3 -3
  60. package/lib/commonjs/components/KeyboardToolbar/index.js.map +1 -1
  61. package/lib/commonjs/components/KeyboardToolbar/types.js.map +1 -1
  62. package/lib/commonjs/components/hooks/useColorScheme.js +1 -1
  63. package/lib/commonjs/components/hooks/useColorScheme.js.map +1 -1
  64. package/lib/commonjs/components/index.js.map +1 -1
  65. package/lib/commonjs/constants.js.map +1 -1
  66. package/lib/commonjs/context.js.map +1 -1
  67. package/lib/commonjs/hooks/index.js.map +1 -1
  68. package/lib/commonjs/hooks/useWindowDimensions/index.android.js.map +1 -1
  69. package/lib/commonjs/hooks/useWindowDimensions/index.js.map +1 -1
  70. package/lib/commonjs/index.js.map +1 -1
  71. package/lib/commonjs/internal.js +18 -18
  72. package/lib/commonjs/internal.js.map +1 -1
  73. package/lib/commonjs/module.js.map +1 -1
  74. package/lib/commonjs/monkey-patch.android.js +4 -4
  75. package/lib/commonjs/monkey-patch.android.js.map +1 -1
  76. package/lib/commonjs/monkey-patch.js.map +1 -1
  77. package/lib/commonjs/reanimated.js.map +1 -1
  78. package/lib/commonjs/reanimated.native.js.map +1 -1
  79. package/lib/commonjs/specs/KeyboardControllerViewNativeComponent.js.map +1 -1
  80. package/lib/commonjs/specs/KeyboardGestureAreaNativeComponent.js.map +1 -1
  81. package/lib/commonjs/specs/NativeKeyboardController.js.map +1 -1
  82. package/lib/commonjs/specs/NativeStatusBarManagerCompat.js.map +1 -1
  83. package/lib/commonjs/specs/OverKeyboardViewNativeComponent.js.map +1 -1
  84. package/lib/commonjs/types.js.map +1 -1
  85. package/lib/commonjs/utils.js.map +1 -1
  86. package/lib/commonjs/views/OverKeyboardView/index.js.map +1 -1
  87. package/lib/commonjs/views/index.js.map +1 -1
  88. package/lib/module/animated.js.map +1 -1
  89. package/lib/module/bindings.js +3 -3
  90. package/lib/module/bindings.js.map +1 -1
  91. package/lib/module/bindings.native.js +3 -3
  92. package/lib/module/bindings.native.js.map +1 -1
  93. package/lib/module/components/KeyboardAvoidingView/hooks.js.map +1 -1
  94. package/lib/module/components/KeyboardAvoidingView/index.js +3 -3
  95. package/lib/module/components/KeyboardAvoidingView/index.js.map +1 -1
  96. package/lib/module/components/KeyboardAwareScrollView/index.js +39 -39
  97. package/lib/module/components/KeyboardAwareScrollView/index.js.map +1 -1
  98. package/lib/module/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js +3 -3
  99. package/lib/module/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.js.map +1 -1
  100. package/lib/module/components/KeyboardAwareScrollView/utils.js.map +1 -1
  101. package/lib/module/components/KeyboardStickyView/index.js.map +1 -1
  102. package/lib/module/components/KeyboardToolbar/Arrow.js.map +1 -1
  103. package/lib/module/components/KeyboardToolbar/Button.js.map +1 -1
  104. package/lib/module/components/KeyboardToolbar/colors.js.map +1 -1
  105. package/lib/module/components/KeyboardToolbar/colors.native.js.map +1 -1
  106. package/lib/module/components/KeyboardToolbar/index.js +3 -3
  107. package/lib/module/components/KeyboardToolbar/index.js.map +1 -1
  108. package/lib/module/components/KeyboardToolbar/types.js.map +1 -1
  109. package/lib/module/components/hooks/useColorScheme.js +1 -1
  110. package/lib/module/components/hooks/useColorScheme.js.map +1 -1
  111. package/lib/module/components/index.js.map +1 -1
  112. package/lib/module/constants.js.map +1 -1
  113. package/lib/module/context.js.map +1 -1
  114. package/lib/module/hooks/index.js.map +1 -1
  115. package/lib/module/hooks/useWindowDimensions/index.android.js.map +1 -1
  116. package/lib/module/hooks/useWindowDimensions/index.js.map +1 -1
  117. package/lib/module/index.js.map +1 -1
  118. package/lib/module/internal.js +18 -18
  119. package/lib/module/internal.js.map +1 -1
  120. package/lib/module/module.js.map +1 -1
  121. package/lib/module/monkey-patch.android.js +4 -4
  122. package/lib/module/monkey-patch.android.js.map +1 -1
  123. package/lib/module/monkey-patch.js.map +1 -1
  124. package/lib/module/reanimated.js.map +1 -1
  125. package/lib/module/reanimated.native.js.map +1 -1
  126. package/lib/module/specs/KeyboardControllerViewNativeComponent.js.map +1 -1
  127. package/lib/module/specs/KeyboardGestureAreaNativeComponent.js.map +1 -1
  128. package/lib/module/specs/NativeKeyboardController.js.map +1 -1
  129. package/lib/module/specs/NativeStatusBarManagerCompat.js.map +1 -1
  130. package/lib/module/specs/OverKeyboardViewNativeComponent.js.map +1 -1
  131. package/lib/module/types.js.map +1 -1
  132. package/lib/module/utils.js.map +1 -1
  133. package/lib/module/views/OverKeyboardView/index.js.map +1 -1
  134. package/lib/module/views/index.js.map +1 -1
  135. package/package.json +174 -173
  136. package/src/animated.tsx +255 -255
  137. package/src/bindings.native.ts +62 -62
  138. package/src/bindings.ts +42 -42
  139. package/src/components/KeyboardAvoidingView/hooks.ts +123 -123
  140. package/src/components/KeyboardAvoidingView/index.tsx +188 -188
  141. package/src/components/KeyboardAwareScrollView/index.tsx +389 -389
  142. package/src/components/KeyboardAwareScrollView/useSmoothKeyboardHandler.ts +133 -133
  143. package/src/components/KeyboardAwareScrollView/utils.ts +41 -41
  144. package/src/components/KeyboardStickyView/index.tsx +66 -66
  145. package/src/components/KeyboardToolbar/Arrow.tsx +80 -80
  146. package/src/components/KeyboardToolbar/Button.tsx +98 -98
  147. package/src/components/KeyboardToolbar/colors.native.ts +37 -37
  148. package/src/components/KeyboardToolbar/colors.ts +16 -16
  149. package/src/components/KeyboardToolbar/index.tsx +223 -223
  150. package/src/components/KeyboardToolbar/types.ts +40 -40
  151. package/src/components/hooks/useColorScheme.ts +6 -5
  152. package/src/components/index.ts +11 -11
  153. package/src/constants.ts +19 -19
  154. package/src/context.ts +68 -68
  155. package/src/hooks/index.ts +90 -90
  156. package/src/hooks/useWindowDimensions/index.android.ts +38 -38
  157. package/src/hooks/useWindowDimensions/index.ts +1 -1
  158. package/src/index.ts +23 -23
  159. package/src/internal.ts +84 -84
  160. package/src/module.ts +52 -52
  161. package/src/monkey-patch.android.ts +44 -44
  162. package/src/monkey-patch.ts +4 -4
  163. package/src/reanimated.native.ts +132 -132
  164. package/src/reanimated.ts +29 -29
  165. package/src/specs/KeyboardControllerViewNativeComponent.ts +71 -71
  166. package/src/specs/KeyboardGestureAreaNativeComponent.ts +20 -20
  167. package/src/specs/NativeKeyboardController.ts +19 -19
  168. package/src/specs/NativeStatusBarManagerCompat.ts +14 -14
  169. package/src/specs/OverKeyboardViewNativeComponent.ts +12 -12
  170. package/src/types.ts +243 -243
  171. package/src/utils.ts +1 -1
  172. package/src/views/OverKeyboardView/index.tsx +43 -43
  173. package/src/views/index.ts +1 -1
  174. package/react-native-keyboard-controller.podspec +0 -61
@@ -1,45 +1,66 @@
1
- /*
2
- * Copyright (c) 2024 Huawei Device Co., Ltd. All rights reserved
3
- * Use of this source code is governed by a MIT license that can be
4
- * found in the LICENSE file.
5
- */
6
-
7
- import {RNPackage,TurboModulesFactory} from '@rnoh/react-native-openharmony/ts';
8
- import type { TurboModule, TurboModuleContext, } from '@rnoh/react-native-openharmony/ts';
9
- import {RNKeyboardControllerTurboModule} from './RNKeyboardControllerTurboModule';
10
- import {RNStatusBarManagerCompatTurboModule} from './RNStatusBarManagerCompatTurboModule';
11
-
12
- class RNKeyboardControllerTurboModuleFactory extends TurboModulesFactory {
13
- createTurboModule(name: string): TurboModule | null {
14
- if (this.hasTurboModule(name)) {
15
- return new RNKeyboardControllerTurboModule(this.ctx);
16
- }
17
- return null;
18
- }
19
- hasTurboModule(name: string): boolean {
20
- return name === 'KeyboardController';
21
- }
22
-
23
- }
24
- class RNStatusBarManagerCompatTurboModuleFactory extends TurboModulesFactory {
25
- createTurboModule(name: string): TurboModule | null {
26
- if(this.hasTurboModule(name)){
27
- return new RNStatusBarManagerCompatTurboModule(this.ctx);
28
- }
29
- return null;
30
- }
31
- hasTurboModule(name: string): boolean {
32
- return name === 'StatusBarManagerCompat';
33
- }
34
- }
35
-
36
- export class RNKeyboardControllerPackage extends RNPackage {
37
- createTurboModulesFactory(ctx: TurboModuleContext): TurboModulesFactory {
38
- return new RNKeyboardControllerTurboModuleFactory(ctx);
39
- }
40
- }
41
- export class RNStatusBarManagerCompatPackage extends RNPackage {
42
- createTurboModulesFactory(ctx: TurboModuleContext): TurboModulesFactory {
43
- return new RNStatusBarManagerCompatTurboModuleFactory(ctx);
44
- }
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
+ import {RNPackage,TurboModulesFactory} from '@rnoh/react-native-openharmony/ts';
29
+ import type { TurboModule, TurboModuleContext, } from '@rnoh/react-native-openharmony/ts';
30
+ import {RNKeyboardControllerTurboModule} from './RNKeyboardControllerTurboModule';
31
+ import {RNStatusBarManagerCompatTurboModule} from './RNStatusBarManagerCompatTurboModule';
32
+
33
+ class RNKeyboardControllerTurboModuleFactory extends TurboModulesFactory {
34
+ createTurboModule(name: string): TurboModule | null {
35
+ if (this.hasTurboModule(name)) {
36
+ return new RNKeyboardControllerTurboModule(this.ctx);
37
+ }
38
+ return null;
39
+ }
40
+ hasTurboModule(name: string): boolean {
41
+ return name === 'KeyboardController';
42
+ }
43
+
44
+ }
45
+ class RNStatusBarManagerCompatTurboModuleFactory extends TurboModulesFactory {
46
+ createTurboModule(name: string): TurboModule | null {
47
+ if(this.hasTurboModule(name)){
48
+ return new RNStatusBarManagerCompatTurboModule(this.ctx);
49
+ }
50
+ return null;
51
+ }
52
+ hasTurboModule(name: string): boolean {
53
+ return name === 'StatusBarManagerCompat';
54
+ }
55
+ }
56
+
57
+ export class RNKeyboardControllerPackage extends RNPackage {
58
+ createTurboModulesFactory(ctx: TurboModuleContext): TurboModulesFactory {
59
+ return new RNKeyboardControllerTurboModuleFactory(ctx);
60
+ }
61
+ }
62
+ export class RNStatusBarManagerCompatPackage extends RNPackage {
63
+ createTurboModulesFactory(ctx: TurboModuleContext): TurboModulesFactory {
64
+ return new RNStatusBarManagerCompatTurboModuleFactory(ctx);
65
+ }
66
+ }
@@ -1,238 +1,273 @@
1
- /*
2
- * Copyright (c) 2024 Huawei Device Co., Ltd. All rights reserved
3
- * Use of this source code is governed by a MIT license that can be
4
- * found in the LICENSE file.
5
- */
6
-
7
- import { TurboModule } from "@rnoh/react-native-openharmony/ts";
8
- import common from '@ohos.app.ability.common';
9
- import window from '@ohos.window';
10
- import inputMethod from '@ohos.inputMethod';
11
- import Logger from './Logger';
12
- import { KeyboardControllerEventName, KeyboardStatusType } from './Type';
13
- import { BusinessError } from '@kit.BasicServicesKit';
14
- import { JSON } from '@kit.ArkTS';
15
- import { ConfigurationConstant } from '@kit.AbilityKit';
16
-
17
- declare function px2vp(px: number): number;
18
-
19
- interface RNKeyboardControllerSpec {
20
- getConstants(): {};
21
-
22
- setInputMode(mode: number): void;
23
-
24
- setDefaultMode(): void;
25
-
26
- dismiss(keepFocus: boolean): void;
27
-
28
- setFocusTo(direction: string): void;
29
-
30
- addListener(eventName: string, listener: (event) => void,): void;
31
-
32
- removeListeners(count: number): void;
33
- }
34
-
35
- export class RNKeyboardControllerTurboModule extends TurboModule implements RNKeyboardControllerSpec {
36
- private context: common.UIAbilityContext;
37
- private keyboardHeight: number;
38
- private keyboardStatus: KeyboardStatusType;
39
- private eventListeners: KeyboardControllerEventName[];
40
- private currentWindow:window.Window;
41
- private enabled:boolean;
42
- constructor(ctx) {
43
- super(ctx);
44
- this.context = this.ctx.uiAbilityContext;
45
- this.eventListeners = this.supportListeners();
46
- }
47
-
48
- readonly getConstants: () => {};
49
-
50
- // set mode
51
- setInputMode(mode: number): void {
52
- Logger.info('harmonyOS not support setInputMode')
53
- }
54
-
55
- setDefaultMode(): void {
56
- Logger.info('harmonyOS not support setDefaultMode')
57
- }
58
-
59
- /**
60
- * @description 键盘隐藏
61
- * */
62
- dismiss(keepFocus: boolean): void {
63
- let inputMethodController = inputMethod.getController();
64
- inputMethodController.stopInputSession()
65
-
66
- }
67
- /**
68
- * @description 键盘隐藏
69
- * */
70
- private show(): void {
71
- let inputMethodController = inputMethod.getController();
72
- inputMethodController.showSoftKeyboard()
73
-
74
- }
75
-
76
- setFocusTo(direction: string): void {
77
- this.ctx.rnInstance.postMessageToCpp('setFocusTo', direction);
78
- }
79
-
80
- /**
81
- * @description 添加监听键盘事件
82
- */
83
- addListener(eventName: KeyboardControllerEventName) {
84
- let supportEvents = this.supportListeners()
85
- let bo = supportEvents.includes(eventName)
86
- if (bo && !this.eventListeners.includes(eventName)) {
87
- this.eventListeners.push(eventName)
88
- }
89
- }
90
-
91
- /**
92
- * @description 删除监听事件
93
- * */
94
- removeListeners(count: number): void {
95
- let num = this.eventListeners.length;
96
- if (num>0) {
97
- this.eventListeners = [];
98
- }
99
- }
100
-
101
- private supportListeners() {
102
- return [
103
- KeyboardControllerEventName.KEYBOARD_WILL_SHOW,
104
- KeyboardControllerEventName.KEYBOARD_DID_SHOW,
105
- KeyboardControllerEventName.KEYBOARD_WILL_HIDE,
106
- KeyboardControllerEventName.KEYBOARD_DID_HIDE,
107
- KeyboardControllerEventName.FOCUS_DID_SET
108
- ];
109
- }
110
-
111
- private async setWindowSystemBarEnable(statusBarTranslucent: boolean, navigationBarTranslucent: boolean) {
112
-
113
- let windowInstance: window.Window | undefined = undefined;
114
- windowInstance = await window.getLastWindow(this.context);
115
- let systemBarProperty = windowInstance.getWindowSystemBarProperties();
116
- let newSystemBarProperty: window.SystemBarProperties = {
117
- ...systemBarProperty,
118
- statusBarColor: statusBarTranslucent ? "#00000000" : systemBarProperty.statusBarColor,
119
- navigationBarColor: navigationBarTranslucent ? "#00000000" : systemBarProperty.navigationBarColor
120
- };
121
- try {
122
- let promise = windowInstance.setWindowSystemBarProperties(newSystemBarProperty);
123
- promise.then(() => {
124
- Logger.info('Succeeded in setting the system bar properties.');
125
- }).catch((err: BusinessError) => {
126
- Logger.error(`Failed to set the system bar properties. Cause code: ${err.code}, message: ${err.message}`);
127
- });
128
- } catch (exception) {
129
- Logger.error(`Failed to set the system bar properties. Cause code: ${exception.code}, message: ${exception.message}`);
130
- }
131
- }
132
-
133
- private keyboardControllerEventHandle(keyboardStatus: number, height: number) {
134
- Logger.info('###turboModule keyboardControllerEventHandle', String(keyboardStatus) + ',' + String(height));
135
- if(!this.enabled){
136
- return
137
- }
138
-
139
- if (this.keyboardStatus == KeyboardStatusType.HIDE) {
140
- // 键盘隐藏
141
- Logger.info('###turboModule keyboardControllerEventHandle');
142
- this.eventListeners.includes(KeyboardControllerEventName.KEYBOARD_DID_HIDE) &&
143
- this.ctx.rnInstance.emitDeviceEvent(KeyboardControllerEventName.KEYBOARD_DID_HIDE, {
144
- duration: 0,
145
- timestamp: new Date().getTime(),
146
- target: 0,
147
- height: height,
148
- tag:0,
149
- appearance:this.getKeyboardAppearance()
150
- });
151
- }
152
- if (this.keyboardStatus == KeyboardStatusType.SHOW) {
153
- // 键盘显示
154
- Logger.info('###turboModule keyboardControllerEventHandle');
155
- this.eventListeners.includes(KeyboardControllerEventName.KEYBOARD_DID_SHOW) &&
156
- this.ctx.rnInstance.emitDeviceEvent(KeyboardControllerEventName.KEYBOARD_DID_SHOW, {
157
- duration: 0,
158
- timestamp: new Date().getTime(),
159
- target: 0,
160
- height:height,
161
- tag:0,
162
- appearance:this.getKeyboardAppearance()
163
- });
164
- }
165
- }
166
-
167
- private async startKeyboardObserver(open:boolean) {
168
- Logger.info("###turboModule startKeyboardObserver",String(open));
169
- this.enabled=open;
170
- this.currentWindow = await window.getLastWindow(this.context);
171
- if (!this.currentWindow) {
172
- throw ('windowInstance is null')
173
- return
174
- }
175
- if(!open){
176
- try {
177
- Logger.info("###turboModule Close KeyboardObserver");
178
- this.currentWindow.off('keyboardHeightChange', (data) => {
179
- this.keyboardStatus = KeyboardStatusType.HIDE;
180
- this.keyboardHeight = 0;
181
- Logger.info('### close keyboardHeightChange observer');
182
- });
183
- } catch (exception) {
184
- Logger.error('### Failed to close the listener for keyboard height changes. Cause: ' + JSON.stringify(exception));
185
- }
186
- }else{
187
- try {
188
- this.currentWindow.on('keyboardHeightChange', (data) => {
189
- const keyboardAvoidArea = this.currentWindow?.getWindowAvoidArea(window.AvoidAreaType.TYPE_KEYBOARD).bottomRect;
190
- let height = Math.ceil(px2vp(keyboardAvoidArea.height))
191
- if(open){
192
- if(this.keyboardHeight == height ){
193
- return
194
- }
195
- if (height > 0) {
196
- this.keyboardStatus = KeyboardStatusType.SHOW;
197
- } else {
198
- this.keyboardStatus = KeyboardStatusType.HIDE;
199
- }
200
- this.keyboardHeight = height;
201
- this.keyboardControllerEventHandle(this.keyboardStatus, height);
202
- this.ctx.rnInstance.postMessageToCpp('keyboardHeightChange', height);
203
- }
204
-
205
- });
206
- } catch (exception) {
207
- Logger.error('Failed to enable the listener for keyboard height changes. Cause: ' + JSON.stringify(exception));
208
- }
209
- }
210
-
211
- }
212
-
213
- private getKeyboardAppearance(): String {
214
- const colorMode = this.context.config.colorMode;
215
- if (colorMode == ConfigurationConstant.ColorMode.COLOR_MODE_DARK) {
216
- return "dark";
217
- }
218
- else if (colorMode == ConfigurationConstant.ColorMode.COLOR_MODE_LIGHT) {
219
- return "light";
220
- }
221
- return "default";
222
- }
223
-
224
- private async setWindowLayoutFullScreen(preserveEdgeToEdge:boolean){
225
- let windowInstance: window.Window | undefined = undefined;
226
- windowInstance = await window.getLastWindow(this.context);
227
- try {
228
- let promise = windowInstance.setWindowLayoutFullScreen(preserveEdgeToEdge);
229
- promise.then(() => {
230
- Logger.info('Succeeded in setWindowLayoutFullScreen .' + preserveEdgeToEdge);
231
- }).catch((err: BusinessError) => {
232
- Logger.error(`Failed to setWindowLayoutFullScreen. Cause code: ${err.code}, message: ${err.message}`);
233
- });
234
- } catch (exception) {
235
- Logger.error(`Failed to setWindowLayoutFullScreen. Cause code: ${exception.code}, message: ${exception.message}`);
236
- }
237
- }
238
- }
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
+ import { TurboModule } from "@rnoh/react-native-openharmony/ts";
29
+ import common from '@ohos.app.ability.common';
30
+ import window from '@ohos.window';
31
+ import inputMethod from '@ohos.inputMethod';
32
+ import Logger from './Logger';
33
+ import { KeyboardControllerEventName, KeyboardStatusType } from './Type';
34
+ import { BusinessError } from '@kit.BasicServicesKit';
35
+ import { JSON } from '@kit.ArkTS';
36
+ import { ConfigurationConstant } from '@kit.AbilityKit';
37
+
38
+ declare function px2vp(px: number): number;
39
+
40
+ interface RNKeyboardControllerSpec {
41
+ getConstants(): {};
42
+
43
+ setInputMode(mode: number): void;
44
+
45
+ setDefaultMode(): void;
46
+
47
+ dismiss(keepFocus: boolean): void;
48
+
49
+ setFocusTo(direction: string): void;
50
+
51
+ addListener(eventName: string, listener: (event) => void,): void;
52
+
53
+ removeListeners(count: number): void;
54
+ }
55
+
56
+ export class RNKeyboardControllerTurboModule extends TurboModule implements RNKeyboardControllerSpec {
57
+ private context: common.UIAbilityContext;
58
+ private keyboardHeight: number;
59
+ private keyboardStatus: KeyboardStatusType;
60
+ private eventListeners: KeyboardControllerEventName[];
61
+ private currentWindow:window.Window;
62
+ private enabled:boolean;
63
+ private cleanUpCallbacks: (() => void)[] = [];
64
+ constructor(ctx) {
65
+ super(ctx);
66
+ this.context = this.ctx.uiAbilityContext;
67
+ this.eventListeners = this.supportListeners();
68
+
69
+ // 订阅 C++ 层发来的 focusDidSet 消息
70
+ this.cleanUpCallbacks.push(
71
+ this.ctx.rnInstance.cppEventEmitter.subscribe("focusDidSet", (payload: { current: number, count: number }) => {
72
+ Logger.info('###turboModule received focusDidSet from cpp', String(payload.current) + ',' + String(payload.count));
73
+ if (this.eventListeners.includes(KeyboardControllerEventName.FOCUS_DID_SET)) {
74
+ this.ctx.rnInstance.emitDeviceEvent(KeyboardControllerEventName.FOCUS_DID_SET, {
75
+ current: payload.current,
76
+ count: payload.count
77
+ });
78
+ }
79
+ })
80
+ );
81
+ }
82
+
83
+ readonly getConstants: () => {};
84
+
85
+ // set mode
86
+ setInputMode(mode: number): void {
87
+ Logger.info('harmonyOS not support setInputMode')
88
+ }
89
+
90
+ setDefaultMode(): void {
91
+ Logger.info('harmonyOS not support setDefaultMode')
92
+ }
93
+
94
+ /**
95
+ * @description 键盘隐藏
96
+ * */
97
+ dismiss(keepFocus: boolean): void {
98
+ let inputMethodController = inputMethod.getController();
99
+ inputMethodController.stopInputSession()
100
+
101
+ }
102
+ /**
103
+ * @description 键盘隐藏
104
+ * */
105
+ private show(): void {
106
+ let inputMethodController = inputMethod.getController();
107
+ inputMethodController.showSoftKeyboard()
108
+
109
+ }
110
+
111
+ setFocusTo(direction: string): void {
112
+ this.ctx.rnInstance.postMessageToCpp('setFocusTo', direction);
113
+ }
114
+
115
+ /**
116
+ * @description 添加监听键盘事件
117
+ */
118
+ addListener(eventName: KeyboardControllerEventName) {
119
+ let supportEvents = this.supportListeners()
120
+ let bo = supportEvents.includes(eventName)
121
+ if (bo && !this.eventListeners.includes(eventName)) {
122
+ this.eventListeners.push(eventName)
123
+ }
124
+ }
125
+
126
+ /**
127
+ * @description 删除监听事件
128
+ * */
129
+ removeListeners(count: number): void {
130
+ let num = this.eventListeners.length;
131
+ if (num>0) {
132
+ this.eventListeners = [];
133
+ }
134
+ }
135
+
136
+ private supportListeners() {
137
+ return [
138
+ KeyboardControllerEventName.KEYBOARD_WILL_SHOW,
139
+ KeyboardControllerEventName.KEYBOARD_DID_SHOW,
140
+ KeyboardControllerEventName.KEYBOARD_WILL_HIDE,
141
+ KeyboardControllerEventName.KEYBOARD_DID_HIDE,
142
+ KeyboardControllerEventName.FOCUS_DID_SET
143
+ ];
144
+ }
145
+
146
+ private async setWindowSystemBarEnable(statusBarTranslucent: boolean, navigationBarTranslucent: boolean) {
147
+
148
+ let windowInstance: window.Window | undefined = undefined;
149
+ windowInstance = await window.getLastWindow(this.context);
150
+ let systemBarProperty = windowInstance.getWindowSystemBarProperties();
151
+ let newSystemBarProperty: window.SystemBarProperties = {
152
+ ...systemBarProperty,
153
+ statusBarColor: statusBarTranslucent ? "#00000000" : systemBarProperty.statusBarColor,
154
+ navigationBarColor: navigationBarTranslucent ? "#00000000" : systemBarProperty.navigationBarColor
155
+ };
156
+ try {
157
+ let promise = windowInstance.setWindowSystemBarProperties(newSystemBarProperty);
158
+ promise.then(() => {
159
+ Logger.info('Succeeded in setting the system bar properties.');
160
+ }).catch((err: BusinessError) => {
161
+ Logger.error(`Failed to set the system bar properties. Cause code: ${err.code}, message: ${err.message}`);
162
+ });
163
+ } catch (exception) {
164
+ Logger.error(`Failed to set the system bar properties. Cause code: ${exception.code}, message: ${exception.message}`);
165
+ }
166
+ }
167
+
168
+ private keyboardControllerEventHandle(keyboardStatus: number, height: number) {
169
+ Logger.info('###turboModule keyboardControllerEventHandle', String(keyboardStatus) + ',' + String(height));
170
+ if(!this.enabled){
171
+ return
172
+ }
173
+
174
+ if (this.keyboardStatus == KeyboardStatusType.HIDE) {
175
+ // 键盘隐藏
176
+ Logger.info('###turboModule keyboardControllerEventHandle');
177
+ this.eventListeners.includes(KeyboardControllerEventName.KEYBOARD_DID_HIDE) &&
178
+ this.ctx.rnInstance.emitDeviceEvent(KeyboardControllerEventName.KEYBOARD_DID_HIDE, {
179
+ duration: 0,
180
+ timestamp: new Date().getTime(),
181
+ target: 0,
182
+ height: height,
183
+ tag:0,
184
+ appearance:this.getKeyboardAppearance()
185
+ });
186
+ }
187
+ if (this.keyboardStatus == KeyboardStatusType.SHOW) {
188
+ // 键盘显示
189
+ Logger.info('###turboModule keyboardControllerEventHandle');
190
+ this.eventListeners.includes(KeyboardControllerEventName.KEYBOARD_DID_SHOW) &&
191
+ this.ctx.rnInstance.emitDeviceEvent(KeyboardControllerEventName.KEYBOARD_DID_SHOW, {
192
+ duration: 0,
193
+ timestamp: new Date().getTime(),
194
+ target: 0,
195
+ height:height,
196
+ tag:0,
197
+ appearance:this.getKeyboardAppearance()
198
+ });
199
+ }
200
+ }
201
+
202
+ private async startKeyboardObserver(open:boolean) {
203
+ Logger.info("###turboModule startKeyboardObserver",String(open));
204
+ this.enabled=open;
205
+ this.currentWindow = await window.getLastWindow(this.context);
206
+ if (!this.currentWindow) {
207
+ throw ('windowInstance is null')
208
+ return
209
+ }
210
+ if(!open){
211
+ try {
212
+ Logger.info("###turboModule Close KeyboardObserver");
213
+ this.currentWindow.off('keyboardHeightChange', (data) => {
214
+ this.keyboardStatus = KeyboardStatusType.HIDE;
215
+ this.keyboardHeight = 0;
216
+ Logger.info('### close keyboardHeightChange observer');
217
+ });
218
+ } catch (exception) {
219
+ Logger.error('### Failed to close the listener for keyboard height changes. Cause: ' + JSON.stringify(exception));
220
+ }
221
+ }else{
222
+ try {
223
+ this.currentWindow.on('keyboardHeightChange', (data) => {
224
+ const keyboardAvoidArea = this.currentWindow?.getWindowAvoidArea(window.AvoidAreaType.TYPE_KEYBOARD).bottomRect;
225
+ let height = Math.ceil(px2vp(keyboardAvoidArea.height))
226
+ if(open){
227
+ if(this.keyboardHeight == height ){
228
+ return
229
+ }
230
+ if (height > 0) {
231
+ this.keyboardStatus = KeyboardStatusType.SHOW;
232
+ } else {
233
+ this.keyboardStatus = KeyboardStatusType.HIDE;
234
+ }
235
+ this.keyboardHeight = height;
236
+ this.keyboardControllerEventHandle(this.keyboardStatus, height);
237
+ this.ctx.rnInstance.postMessageToCpp('keyboardHeightChange', height);
238
+ }
239
+
240
+ });
241
+ } catch (exception) {
242
+ Logger.error('Failed to enable the listener for keyboard height changes. Cause: ' + JSON.stringify(exception));
243
+ }
244
+ }
245
+
246
+ }
247
+
248
+ private getKeyboardAppearance(): String {
249
+ const colorMode = this.context.config.colorMode;
250
+ if (colorMode == ConfigurationConstant.ColorMode.COLOR_MODE_DARK) {
251
+ return "dark";
252
+ }
253
+ else if (colorMode == ConfigurationConstant.ColorMode.COLOR_MODE_LIGHT) {
254
+ return "light";
255
+ }
256
+ return "default";
257
+ }
258
+
259
+ private async setWindowLayoutFullScreen(preserveEdgeToEdge:boolean){
260
+ let windowInstance: window.Window | undefined = undefined;
261
+ windowInstance = await window.getLastWindow(this.context);
262
+ try {
263
+ let promise = windowInstance.setWindowLayoutFullScreen(preserveEdgeToEdge);
264
+ promise.then(() => {
265
+ Logger.info('Succeeded in setWindowLayoutFullScreen .' + preserveEdgeToEdge);
266
+ }).catch((err: BusinessError) => {
267
+ Logger.error(`Failed to setWindowLayoutFullScreen. Cause code: ${err.code}, message: ${err.message}`);
268
+ });
269
+ } catch (exception) {
270
+ Logger.error(`Failed to setWindowLayoutFullScreen. Cause code: ${exception.code}, message: ${exception.message}`);
271
+ }
272
+ }
273
+ }