@react-native-ohos/react-native-webview 13.16.2-beta.2 → 13.16.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 (80) hide show
  1. package/CHANGELOG.md +128 -0
  2. package/LICENSE +20 -20
  3. package/README.OpenSource +10 -10
  4. package/README.md +469 -13
  5. package/harmony/rn_webview/.gitignore +6 -0
  6. package/harmony/rn_webview/BuildProfile.ets +17 -0
  7. package/harmony/rn_webview/OAT.xml +44 -44
  8. package/harmony/rn_webview/build-profile.json5 +28 -28
  9. package/harmony/rn_webview/index.ets +12 -12
  10. package/harmony/rn_webview/oh-package-lock.json5 +29 -0
  11. package/harmony/rn_webview/oh-package.json5 +13 -13
  12. package/harmony/rn_webview/src/main/cpp/CMakeLists.txt +9 -9
  13. package/harmony/rn_webview/src/main/cpp/WebViewPackage.h +16 -16
  14. package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/BaseReactNativeWebviewPackage.h +96 -96
  15. package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/components/RNCWebViewJSIBinder.h +121 -120
  16. package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebView.cpp +18 -18
  17. package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebView.h +16 -16
  18. package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebViewModule.cpp +17 -17
  19. package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebViewModule.h +16 -16
  20. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/ComponentDescriptors.h +24 -24
  21. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/EventEmitters.cpp +258 -258
  22. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/EventEmitters.h +277 -277
  23. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/Props.cpp +104 -103
  24. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/Props.h +510 -509
  25. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/ShadowNodes.cpp +17 -17
  26. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/ShadowNodes.h +32 -32
  27. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/States.cpp +16 -16
  28. package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/States.h +28 -28
  29. package/harmony/rn_webview/src/main/ets/Logger.ts +43 -43
  30. package/harmony/rn_webview/src/main/ets/Magic.ets +201 -198
  31. package/harmony/rn_webview/src/main/ets/RNCWebView.ets +1019 -818
  32. package/harmony/rn_webview/src/main/ets/RNCWebViewPackage.ets +37 -37
  33. package/harmony/rn_webview/src/main/ets/WebViewBaseOperate.ets +528 -514
  34. package/harmony/rn_webview/src/main/ets/WebViewTurboModule.ets +67 -63
  35. package/harmony/rn_webview/src/main/ets/generated/components/RNCWebView.ts +529 -525
  36. package/harmony/rn_webview/src/main/ets/generated/components/ts.ts +5 -5
  37. package/harmony/rn_webview/src/main/ets/generated/index.ets +5 -5
  38. package/harmony/rn_webview/src/main/ets/generated/ts.ts +6 -6
  39. package/harmony/rn_webview/src/main/ets/generated/turboModules/RNCWebView.ts +18 -18
  40. package/harmony/rn_webview/src/main/ets/generated/turboModules/RNCWebViewModule.ts +16 -16
  41. package/harmony/rn_webview/src/main/ets/generated/turboModules/ts.ts +6 -6
  42. package/harmony/rn_webview/src/main/module.json5 +10 -10
  43. package/harmony/rn_webview/src/main/resources/base/element/string.json +39 -39
  44. package/harmony/rn_webview/src/main/resources/en_US/element/string.json +39 -39
  45. package/harmony/rn_webview/src/main/resources/zh_CN/element/string.json +39 -39
  46. package/harmony/rn_webview/src/test/List.test.ets +4 -4
  47. package/harmony/rn_webview/src/test/LocalUnit.test.ets +32 -32
  48. package/harmony/rn_webview/ts.ets +8 -8
  49. package/harmony/rn_webview.har +0 -0
  50. package/lib/NativeRNCWebView.d.ts +10 -0
  51. package/lib/NativeRNCWebView.d.ts.map +1 -0
  52. package/lib/NativeRNCWebView.js +1 -0
  53. package/lib/NativeRNCWebViewModule.d.ts +9 -0
  54. package/lib/NativeRNCWebViewModule.d.ts.map +1 -0
  55. package/lib/NativeRNCWebViewModule.js +1 -0
  56. package/lib/RNCWebViewNativeComponent.d.ts +250 -0
  57. package/lib/RNCWebViewNativeComponent.d.ts.map +1 -0
  58. package/lib/RNCWebViewNativeComponent.js +1 -0
  59. package/lib/WebView.d.ts +4 -0
  60. package/lib/WebView.d.ts.map +1 -0
  61. package/lib/WebView.harmony.d.ts +16 -0
  62. package/lib/WebView.harmony.d.ts.map +1 -0
  63. package/lib/WebView.harmony.js +1 -0
  64. package/lib/WebView.js +1 -0
  65. package/lib/codegenUtils.d.ts +3 -0
  66. package/lib/codegenUtils.d.ts.map +1 -0
  67. package/lib/codegenUtils.js +0 -0
  68. package/lib/index.d.ts +4 -0
  69. package/lib/index.d.ts.map +1 -0
  70. package/lib/index.js +1 -0
  71. package/package.json +101 -101
  72. package/src/NativeRNCWebView.ts +21 -21
  73. package/src/NativeRNCWebViewModule.ts +19 -19
  74. package/src/RNCWebViewNativeComponent.ts +356 -355
  75. package/src/WebView.harmony.tsx +348 -346
  76. package/src/WebView.tsx +10 -10
  77. package/src/codegenUtils.ts +10 -10
  78. package/src/index.ts +10 -10
  79. package/harmony/rn_webview/src/main/ets/CutomReference.ts +0 -30
  80. package/harmony/rn_webview/src/main/ets/ShouldRequestUrl.ts +0 -48
@@ -1,63 +1,67 @@
1
- // Copyright (c) 2025 Huawei Device Co., Ltd. All rights reserved
2
- // Use of this source code is governed by a Apache-2.0 license that can be
3
- // found in the LICENSE file.
4
-
5
- import { TM } from './generated/ts';
6
- import { AnyThreadTurboModule } from '@rnoh/react-native-openharmony/ts';
7
- import Logger from './Logger';
8
-
9
- const TAG = "WebViewTurboModule"
10
-
11
- export class WebViewTurboModule extends AnyThreadTurboModule implements TM.RNCWebViewModule.Spec {
12
- private shouldStartParamsMap : Map<number,ShouldStartParams> = new Map();
13
-
14
- isFileUploadSupported(): Promise<boolean> {
15
- return Promise.resolve(true)
16
- }
17
-
18
- shouldStartLoadWithLockIdentifier(shouldStart: boolean, lockIdentifier: number): void {
19
- Logger.debug("shouldStartLoadWithLockIdentifier:" + shouldStart + " lockIdentifier:" + lockIdentifier)
20
- let shouldStartParams = this.shouldStartParamsMap.get(lockIdentifier)
21
- Logger.debug("shouldStartLoadWithLockIdentifier setShouldStartParams:" + JSON.stringify(shouldStartParams))
22
- if (shouldStartParams) {
23
- shouldStartParams.shouldStart = shouldStart
24
- shouldStartParams.lockState = shouldStart ? ShouldOverrideCallbackState.ALLOW_LOADING : ShouldOverrideCallbackState.SHOULD_OVERRIDE;
25
- }
26
- this.shouldStartParamsMap.set(lockIdentifier,shouldStartParams || new ShouldStartParams())
27
- }
28
-
29
-
30
- setShouldStartParams(params: ShouldStartParams){
31
- Logger.debug("setShouldStartParams:" + JSON.stringify(params))
32
- this.shouldStartParamsMap.set(params.lockIdentifier,params)
33
- }
34
- }
35
-
36
- // 锁状态
37
- export enum ShouldOverrideCallbackState {
38
- /**
39
- * 等待返回状态
40
- */
41
- UNDECIDED,
42
- /**
43
- * 阻止加载
44
- */
45
- SHOULD_OVERRIDE,
46
- /**
47
- * 允许加载
48
- */
49
- ALLOW_LOADING,
50
-
51
- /**
52
- * 允许加载
53
- */
54
- DEFAULT,
55
- }
56
-
57
- @Sendable
58
- export class ShouldStartParams {
59
- shouldStart: boolean = true
60
- lockIdentifier: number = -1
61
- // 对应ShouldOverrideCallbackState
62
- lockState: number = ShouldOverrideCallbackState.DEFAULT
63
- }
1
+ // Copyright (c) 2025 Huawei Device Co., Ltd. All rights reserved
2
+ // Use of this source code is governed by a Apache-2.0 license that can be
3
+ // found in the LICENSE file.
4
+
5
+ import { TM } from './generated/ts';
6
+ import { AnyThreadTurboModule } from '@rnoh/react-native-openharmony/ts';
7
+ import Logger from './Logger';
8
+
9
+ const TAG = "WebViewTurboModule"
10
+
11
+ export class WebViewTurboModule extends AnyThreadTurboModule implements TM.RNCWebViewModule.Spec {
12
+ private shouldStartParamsMap : Map<number,ShouldStartParams> = new Map();
13
+
14
+ isFileUploadSupported(): Promise<boolean> {
15
+ return Promise.resolve(true)
16
+ }
17
+
18
+ shouldStartLoadWithLockIdentifier(shouldStart: boolean, lockIdentifier: number): void {
19
+ Logger.debug("shouldStartLoadWithLockIdentifier:" + shouldStart + " lockIdentifier:" + lockIdentifier)
20
+ let shouldStartParams = this.shouldStartParamsMap.get(lockIdentifier)
21
+ Logger.debug("shouldStartLoadWithLockIdentifier setShouldStartParams:" + JSON.stringify(shouldStartParams))
22
+ if (shouldStartParams) {
23
+ shouldStartParams.shouldStart = shouldStart
24
+ shouldStartParams.lockState = shouldStart ? ShouldOverrideCallbackState.ALLOW_LOADING : ShouldOverrideCallbackState.SHOULD_OVERRIDE;
25
+ this.shouldStartParamsMap.delete(lockIdentifier)
26
+ }
27
+ }
28
+
29
+
30
+ setShouldStartParams(params: ShouldStartParams){
31
+ Logger.debug("setShouldStartParams:" + JSON.stringify(params))
32
+ this.shouldStartParamsMap.set(params.lockIdentifier,params)
33
+ }
34
+
35
+ __onDestroy__(): void {
36
+ this.shouldStartParamsMap.clear()
37
+ }
38
+ }
39
+
40
+ // 锁状态
41
+ export enum ShouldOverrideCallbackState {
42
+ /**
43
+ * 等待返回状态
44
+ */
45
+ UNDECIDED,
46
+ /**
47
+ * 阻止加载
48
+ */
49
+ SHOULD_OVERRIDE,
50
+ /**
51
+ * 允许加载
52
+ */
53
+ ALLOW_LOADING,
54
+
55
+ /**
56
+ * 允许加载
57
+ */
58
+ DEFAULT,
59
+ }
60
+
61
+ @Sendable
62
+ export class ShouldStartParams {
63
+ shouldStart: boolean = true
64
+ lockIdentifier: number = -1
65
+ // 对应ShouldOverrideCallbackState
66
+ lockState: number = ShouldOverrideCallbackState.DEFAULT
67
+ }