Skip to content

Commit fc696e7

Browse files
committed
feat: userAgent property
1 parent 3a9ea58 commit fc696e7

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

src/webview/index.android.ts

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
allowsInlineMediaPlaybackProperty,
1010
builtInZoomControlsProperty,
1111
cacheModeProperty,
12+
customUserAgentProperty,
1213
databaseStorageProperty,
1314
debugModeProperty,
1415
displayZoomControlsProperty,
@@ -1030,4 +1031,8 @@ export class AWebView extends WebViewExtBase {
10301031
[allowsInlineMediaPlaybackProperty.setNative](enabled: boolean) {
10311032
// not supported
10321033
}
1034+
1035+
[customUserAgentProperty.setNative](value) {
1036+
this.nativeViewProtected.getSettings().setUserAgentString(value);
1037+
}
10331038
}

src/webview/index.common.ts

+4
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ export const useWideViewPortProperty = new Property<WebViewExtBase, boolean>({
116116
defaultValue: true,
117117
valueConverter: booleanConverter
118118
});
119+
export const customUserAgentProperty = new Property<WebViewExtBase, string>({
120+
name: 'userAgent'
121+
});
119122

120123
export type ViewPortValue = boolean | ViewPortProperties;
121124
export const viewPortProperty = new Property<WebViewExtBase, ViewPortValue>({
@@ -1517,6 +1520,7 @@ export interface WebViewExtBase {
15171520
once(event: EventNames.RequestPermissions, callback: (args: WebConsoleEventData) => void, thisArg?: any);
15181521
}
15191522

1523+
customUserAgentProperty.register(WebViewExtBase);
15201524
autoInjectJSBridgeProperty.register(WebViewExtBase);
15211525
builtInZoomControlsProperty.register(WebViewExtBase);
15221526
cacheModeProperty.register(WebViewExtBase);

src/webview/index.ios.ts

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
WebViewTraceCategory,
88
allowsInlineMediaPlaybackProperty,
99
autoInjectJSBridgeProperty,
10+
customUserAgentProperty,
1011
debugModeProperty,
1112
limitsNavigationsToAppBoundDomainsProperty,
1213
mediaPlaybackRequiresUserActionProperty,
@@ -449,6 +450,9 @@ export class AWebView extends WebViewExtBase {
449450
[scrollBarIndicatorVisibleProperty.setNative](value: boolean) {
450451
this.updateScrollBarVisibility(value);
451452
}
453+
[customUserAgentProperty.setNative](value) {
454+
this.nativeViewProtected.customUserAgent = value;
455+
}
452456
protected updateScrollBarVisibility(value) {
453457
if (!this.nativeViewProtected) {
454458
return;

0 commit comments

Comments
 (0)