@react-native-ohos/react-native-webview 13.15.1-rc.1 → 13.15.1-rc.3
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 +20 -20
- package/README.OpenSource +10 -10
- package/README.md +12 -12
- package/harmony/rn_webview/OAT.xml +44 -44
- package/harmony/rn_webview/build-profile.json5 +28 -28
- package/harmony/rn_webview/index.ets +12 -12
- package/harmony/rn_webview/oh-package.json5 +13 -13
- package/harmony/rn_webview/src/main/cpp/CMakeLists.txt +9 -9
- package/harmony/rn_webview/src/main/cpp/WebViewPackage.h +16 -16
- package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/BaseReactNativeWebviewPackage.h +95 -95
- package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/components/RNCWebViewJSIBinder.h +119 -119
- package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebView.cpp +18 -18
- package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebView.h +16 -16
- package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebViewModule.cpp +17 -17
- package/harmony/rn_webview/src/main/cpp/generated/RNOH/generated/turbo_modules/RNCWebViewModule.h +16 -16
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/ComponentDescriptors.h +24 -24
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/EventEmitters.cpp +241 -241
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/EventEmitters.h +263 -263
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/Props.cpp +103 -103
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/Props.h +509 -509
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/ShadowNodes.cpp +17 -17
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/ShadowNodes.h +32 -32
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/States.cpp +16 -16
- package/harmony/rn_webview/src/main/cpp/generated/react/renderer/components/react_native_webview/States.h +28 -28
- package/harmony/rn_webview/src/main/ets/CutomReference.ts +29 -29
- package/harmony/rn_webview/src/main/ets/Logger.ts +43 -43
- package/harmony/rn_webview/src/main/ets/Magic.ets +184 -184
- package/harmony/rn_webview/src/main/ets/RNCWebView.ets +570 -570
- package/harmony/rn_webview/src/main/ets/RNCWebViewPackage.ets +37 -37
- package/harmony/rn_webview/src/main/ets/ShouldRequestUrl.ts +47 -47
- package/harmony/rn_webview/src/main/ets/WebViewBaseOperate.ets +457 -443
- package/harmony/rn_webview/src/main/ets/WebViewTurboModule.ets +57 -57
- package/harmony/rn_webview/src/main/ets/generated/components/RNCWebView.ts +524 -524
- package/harmony/rn_webview/src/main/ets/generated/components/ts.ts +5 -5
- package/harmony/rn_webview/src/main/ets/generated/index.ets +5 -5
- package/harmony/rn_webview/src/main/ets/generated/ts.ts +6 -6
- package/harmony/rn_webview/src/main/ets/generated/turboModules/RNCWebView.ts +18 -18
- package/harmony/rn_webview/src/main/ets/generated/turboModules/RNCWebViewModule.ts +16 -16
- package/harmony/rn_webview/src/main/ets/generated/turboModules/ts.ts +6 -6
- package/harmony/rn_webview/src/main/module.json5 +10 -10
- package/harmony/rn_webview/src/main/resources/base/element/string.json +39 -39
- package/harmony/rn_webview/src/main/resources/en_US/element/string.json +39 -39
- package/harmony/rn_webview/src/main/resources/zh_CN/element/string.json +39 -39
- package/harmony/rn_webview/src/test/List.test.ets +4 -4
- package/harmony/rn_webview/src/test/LocalUnit.test.ets +32 -32
- package/harmony/rn_webview/ts.ets +8 -8
- package/harmony/rn_webview.har +0 -0
- package/package.json +99 -99
- package/src/NativeRNCWebView.ts +21 -21
- package/src/NativeRNCWebViewModule.ts +19 -19
- package/src/RNCWebViewNativeComponent.ts +354 -354
- package/src/WebView.harmony.tsx +342 -342
- package/src/WebView.tsx +10 -10
- package/src/codegenUtils.ts +10 -10
- package/src/index.ts +10 -10
- package/harmony/rn_webview/BuildProfile.ets +0 -17
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
-
*
|
|
5
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
-
* once the code is regenerated.
|
|
7
|
-
*
|
|
8
|
-
* @generated by codegen project: GenerateShadowNodeCpp.js
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
#include "ShadowNodes.h"
|
|
12
|
-
|
|
13
|
-
namespace facebook::react {
|
|
14
|
-
|
|
15
|
-
extern const char RNCWebViewComponentName[] = "RNCWebView";
|
|
16
|
-
|
|
17
|
-
} // namespace facebook::react
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
+
*
|
|
5
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
+
* once the code is regenerated.
|
|
7
|
+
*
|
|
8
|
+
* @generated by codegen project: GenerateShadowNodeCpp.js
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#include "ShadowNodes.h"
|
|
12
|
+
|
|
13
|
+
namespace facebook::react {
|
|
14
|
+
|
|
15
|
+
extern const char RNCWebViewComponentName[] = "RNCWebView";
|
|
16
|
+
|
|
17
|
+
} // namespace facebook::react
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
-
*
|
|
5
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
-
* once the code is regenerated.
|
|
7
|
-
*
|
|
8
|
-
* @generated by codegen project: GenerateShadowNodeH.js
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
#pragma once
|
|
12
|
-
|
|
13
|
-
#include "EventEmitters.h"
|
|
14
|
-
#include "Props.h"
|
|
15
|
-
#include "States.h"
|
|
16
|
-
#include <react/renderer/components/view/ConcreteViewShadowNode.h>
|
|
17
|
-
#include <jsi/jsi.h>
|
|
18
|
-
|
|
19
|
-
namespace facebook::react {
|
|
20
|
-
|
|
21
|
-
JSI_EXPORT extern const char RNCWebViewComponentName[];
|
|
22
|
-
|
|
23
|
-
/*
|
|
24
|
-
* `ShadowNode` for <RNCWebView> component.
|
|
25
|
-
*/
|
|
26
|
-
using RNCWebViewShadowNode = ConcreteViewShadowNode<
|
|
27
|
-
RNCWebViewComponentName,
|
|
28
|
-
RNCWebViewProps,
|
|
29
|
-
RNCWebViewEventEmitter,
|
|
30
|
-
RNCWebViewState>;
|
|
31
|
-
|
|
32
|
-
} // namespace facebook::react
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
+
*
|
|
5
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
+
* once the code is regenerated.
|
|
7
|
+
*
|
|
8
|
+
* @generated by codegen project: GenerateShadowNodeH.js
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#pragma once
|
|
12
|
+
|
|
13
|
+
#include "EventEmitters.h"
|
|
14
|
+
#include "Props.h"
|
|
15
|
+
#include "States.h"
|
|
16
|
+
#include <react/renderer/components/view/ConcreteViewShadowNode.h>
|
|
17
|
+
#include <jsi/jsi.h>
|
|
18
|
+
|
|
19
|
+
namespace facebook::react {
|
|
20
|
+
|
|
21
|
+
JSI_EXPORT extern const char RNCWebViewComponentName[];
|
|
22
|
+
|
|
23
|
+
/*
|
|
24
|
+
* `ShadowNode` for <RNCWebView> component.
|
|
25
|
+
*/
|
|
26
|
+
using RNCWebViewShadowNode = ConcreteViewShadowNode<
|
|
27
|
+
RNCWebViewComponentName,
|
|
28
|
+
RNCWebViewProps,
|
|
29
|
+
RNCWebViewEventEmitter,
|
|
30
|
+
RNCWebViewState>;
|
|
31
|
+
|
|
32
|
+
} // namespace facebook::react
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
-
*
|
|
5
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
-
* once the code is regenerated.
|
|
7
|
-
*
|
|
8
|
-
* @generated by codegen project: GenerateStateCpp.js
|
|
9
|
-
*/
|
|
10
|
-
#include "States.h"
|
|
11
|
-
|
|
12
|
-
namespace facebook::react {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
} // namespace facebook::react
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
+
*
|
|
5
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
+
* once the code is regenerated.
|
|
7
|
+
*
|
|
8
|
+
* @generated by codegen project: GenerateStateCpp.js
|
|
9
|
+
*/
|
|
10
|
+
#include "States.h"
|
|
11
|
+
|
|
12
|
+
namespace facebook::react {
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
} // namespace facebook::react
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
-
*
|
|
4
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
-
* once the code is regenerated.
|
|
6
|
-
*
|
|
7
|
-
* @generated by codegen project: GenerateStateH.js
|
|
8
|
-
*/
|
|
9
|
-
#pragma once
|
|
10
|
-
|
|
11
|
-
#ifdef ANDROID
|
|
12
|
-
#include <folly/dynamic.h>
|
|
13
|
-
#endif
|
|
14
|
-
|
|
15
|
-
namespace facebook::react {
|
|
16
|
-
|
|
17
|
-
class RNCWebViewState {
|
|
18
|
-
public:
|
|
19
|
-
RNCWebViewState() = default;
|
|
20
|
-
|
|
21
|
-
#ifdef ANDROID
|
|
22
|
-
RNCWebViewState(RNCWebViewState const &previousState, folly::dynamic data){};
|
|
23
|
-
folly::dynamic getDynamic() const {
|
|
24
|
-
return {};
|
|
25
|
-
};
|
|
26
|
-
#endif
|
|
27
|
-
};
|
|
28
|
-
|
|
1
|
+
/**
|
|
2
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
+
*
|
|
4
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
+
* once the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @generated by codegen project: GenerateStateH.js
|
|
8
|
+
*/
|
|
9
|
+
#pragma once
|
|
10
|
+
|
|
11
|
+
#ifdef ANDROID
|
|
12
|
+
#include <folly/dynamic.h>
|
|
13
|
+
#endif
|
|
14
|
+
|
|
15
|
+
namespace facebook::react {
|
|
16
|
+
|
|
17
|
+
class RNCWebViewState {
|
|
18
|
+
public:
|
|
19
|
+
RNCWebViewState() = default;
|
|
20
|
+
|
|
21
|
+
#ifdef ANDROID
|
|
22
|
+
RNCWebViewState(RNCWebViewState const &previousState, folly::dynamic data){};
|
|
23
|
+
folly::dynamic getDynamic() const {
|
|
24
|
+
return {};
|
|
25
|
+
};
|
|
26
|
+
#endif
|
|
27
|
+
};
|
|
28
|
+
|
|
29
29
|
} // namespace facebook::react
|
|
@@ -1,30 +1,30 @@
|
|
|
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
|
-
export class CustomReference {
|
|
6
|
-
private atomicValue: number;
|
|
7
|
-
private callBack!: Function;
|
|
8
|
-
constructor(init: number) {
|
|
9
|
-
this.atomicValue = init
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
getValue() {
|
|
13
|
-
return this.atomicValue
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
setCallBack(callBack: Function) {
|
|
17
|
-
this.callBack = callBack
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
getCallBack() {
|
|
21
|
-
return this.callBack
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
setValue(newValue: number) {
|
|
25
|
-
this.atomicValue = newValue
|
|
26
|
-
if (this.callBack) {
|
|
27
|
-
this.callBack()
|
|
28
|
-
}
|
|
29
|
-
}
|
|
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
|
+
export class CustomReference {
|
|
6
|
+
private atomicValue: number;
|
|
7
|
+
private callBack!: Function;
|
|
8
|
+
constructor(init: number) {
|
|
9
|
+
this.atomicValue = init
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
getValue() {
|
|
13
|
+
return this.atomicValue
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
setCallBack(callBack: Function) {
|
|
17
|
+
this.callBack = callBack
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
getCallBack() {
|
|
21
|
+
return this.callBack
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
setValue(newValue: number) {
|
|
25
|
+
this.atomicValue = newValue
|
|
26
|
+
if (this.callBack) {
|
|
27
|
+
this.callBack()
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
30
|
}
|
|
@@ -1,44 +1,44 @@
|
|
|
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 hilog from '@ohos.hilog';
|
|
6
|
-
|
|
7
|
-
class Logger {
|
|
8
|
-
private domain: number;
|
|
9
|
-
private prefix: string;
|
|
10
|
-
private format: string = '%{public}s, %{public}s';
|
|
11
|
-
private isDebug: boolean;
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* constructor.
|
|
15
|
-
*
|
|
16
|
-
* @param Prefix Identifies the log tag.
|
|
17
|
-
* @param domain Domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFFF.
|
|
18
|
-
*/
|
|
19
|
-
constructor(prefix: string = 'MyApp', domain: number = 0xFF00, isDebug = false) {
|
|
20
|
-
this.prefix = prefix;
|
|
21
|
-
this.domain = domain;
|
|
22
|
-
this.isDebug = isDebug;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
debug(...args: string[]): void {
|
|
26
|
-
if (this.isDebug) {
|
|
27
|
-
hilog.debug(this.domain, this.prefix, this.format, args);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
info(...args: string[]): void {
|
|
32
|
-
hilog.info(this.domain, this.prefix, this.format, args);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
warn(...args: string[]): void {
|
|
36
|
-
hilog.warn(this.domain, this.prefix, this.format, args);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
error(...args: string[]): void {
|
|
40
|
-
hilog.error(this.domain, this.prefix, this.format, args);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
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 hilog from '@ohos.hilog';
|
|
6
|
+
|
|
7
|
+
class Logger {
|
|
8
|
+
private domain: number;
|
|
9
|
+
private prefix: string;
|
|
10
|
+
private format: string = '%{public}s, %{public}s';
|
|
11
|
+
private isDebug: boolean;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* constructor.
|
|
15
|
+
*
|
|
16
|
+
* @param Prefix Identifies the log tag.
|
|
17
|
+
* @param domain Domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFFF.
|
|
18
|
+
*/
|
|
19
|
+
constructor(prefix: string = 'MyApp', domain: number = 0xFF00, isDebug = false) {
|
|
20
|
+
this.prefix = prefix;
|
|
21
|
+
this.domain = domain;
|
|
22
|
+
this.isDebug = isDebug;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
debug(...args: string[]): void {
|
|
26
|
+
if (this.isDebug) {
|
|
27
|
+
hilog.debug(this.domain, this.prefix, this.format, args);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
info(...args: string[]): void {
|
|
32
|
+
hilog.info(this.domain, this.prefix, this.format, args);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
warn(...args: string[]): void {
|
|
36
|
+
hilog.warn(this.domain, this.prefix, this.format, args);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
error(...args: string[]): void {
|
|
40
|
+
hilog.error(this.domain, this.prefix, this.format, args);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
44
|
export default new Logger('WebView', 0xFF00, false)
|