소스 검색

feat(events): Add isTopFrame to shouldStartLoadForRequest (#1537)

* Add isTopFrame to shouldStartLoadForRequest on iOS

onLoadingStart is not raised for inner frames, but onShouldStartLoadWithRequest still is. This keeps that behavior but adds isTopFrame to onShouldStartLoadWithRequest so that apps can perform their own filtering if desired.

* Update docs

Co-authored-by: Jamon Holmgren <jamonholmgren@gmail.com>
Caleb Clarke 3 년 전
부모
커밋
6a9116f2d1
No account linked to committer's email address

+ 2
- 0
android/src/main/java/com/reactnativecommunity/webview/events/TopShouldStartLoadWithRequestEvent.kt 파일 보기

@@ -14,6 +14,8 @@ class TopShouldStartLoadWithRequestEvent(viewId: Int, private val mData: Writabl
14 14
 
15 15
   init {
16 16
     mData.putString("navigationType", "other")
17
+    // Android does not raise shouldOverrideUrlLoading for inner frames
18
+    mData.putBoolean("isTopFrame", true)
17 19
   }
18 20
 
19 21
   override fun getEventName(): String = EVENT_NAME

+ 3
- 2
apple/RNCWebView.m 파일 보기

@@ -937,13 +937,15 @@ static NSDictionary* customCertificatesForHost;
937 937
 
938 938
   WKNavigationType navigationType = navigationAction.navigationType;
939 939
   NSURLRequest *request = navigationAction.request;
940
+  BOOL isTopFrame = [request.URL isEqual:request.mainDocumentURL];
940 941
 
941 942
   if (_onShouldStartLoadWithRequest) {
942 943
     NSMutableDictionary<NSString *, id> *event = [self baseEvent];
943 944
     [event addEntriesFromDictionary: @{
944 945
       @"url": (request.URL).absoluteString,
945 946
       @"mainDocumentURL": (request.mainDocumentURL).absoluteString,
946
-      @"navigationType": navigationTypes[@(navigationType)]
947
+      @"navigationType": navigationTypes[@(navigationType)],
948
+      @"isTopFrame": @(isTopFrame)
947 949
     }];
948 950
     if (![self.delegate webView:self
949 951
       shouldStartLoadForRequest:event
@@ -955,7 +957,6 @@ static NSDictionary* customCertificatesForHost;
955 957
 
956 958
   if (_onLoadingStart) {
957 959
     // We have this check to filter out iframe requests and whatnot
958
-    BOOL isTopFrame = [request.URL isEqual:request.mainDocumentURL];
959 960
     if (isTopFrame) {
960 961
       NSMutableDictionary<NSString *, id> *event = [self baseEvent];
961 962
       [event addEntriesFromDictionary: @{

+ 1
- 0
docs/Reference.md 파일 보기

@@ -682,6 +682,7 @@ canGoForward
682 682
 lockIdentifier
683 683
 mainDocumentURL (iOS only)
684 684
 navigationType
685
+isTopFrame
685 686
 ```
686 687
 
687 688
 ---

+ 2
- 2
src/WebViewShared.tsx 파일 보기

@@ -2,8 +2,8 @@ import escapeStringRegexp from 'escape-string-regexp';
2 2
 import React from 'react';
3 3
 import { Linking, View, ActivityIndicator, Text } from 'react-native';
4 4
 import {
5
-  WebViewNavigationEvent,
6 5
   OnShouldStartLoadWithRequest,
6
+  ShouldStartLoadRequestEvent,
7 7
 } from './WebViewTypes';
8 8
 import styles from './WebView.styles';
9 9
 
@@ -39,7 +39,7 @@ const createOnShouldStartLoadWithRequest = (
39 39
   originWhitelist: readonly string[],
40 40
   onShouldStartLoadWithRequest?: OnShouldStartLoadWithRequest,
41 41
 ) => {
42
-  return ({ nativeEvent }: WebViewNavigationEvent) => {
42
+  return ({ nativeEvent }: ShouldStartLoadRequestEvent) => {
43 43
     let shouldStart = true;
44 44
     const { url, lockIdentifier } = nativeEvent;
45 45
 

+ 9
- 3
src/WebViewTypes.ts 파일 보기

@@ -113,6 +113,10 @@ export interface WebViewNavigation extends WebViewNativeEvent {
113 113
   mainDocumentURL?: string;
114 114
 }
115 115
 
116
+export interface ShouldStartLoadRequest extends WebViewNavigation {
117
+  isTopFrame: boolean;
118
+}
119
+
116 120
 export interface FileDownload {
117 121
   downloadUrl: string;
118 122
 }
@@ -149,6 +153,8 @@ export type WebViewProgressEvent = NativeSyntheticEvent<
149 153
 
150 154
 export type WebViewNavigationEvent = NativeSyntheticEvent<WebViewNavigation>;
151 155
 
156
+export type ShouldStartLoadRequestEvent = NativeSyntheticEvent<ShouldStartLoadRequest>;
157
+
152 158
 export type FileDownloadEvent = NativeSyntheticEvent<FileDownload>;
153 159
 
154 160
 export type WebViewMessageEvent = NativeSyntheticEvent<WebViewMessage>;
@@ -238,7 +244,7 @@ export interface WebViewNativeConfig {
238 244
 }
239 245
 
240 246
 export type OnShouldStartLoadWithRequest = (
241
-  event: WebViewNavigation,
247
+  event: ShouldStartLoadRequest,
242 248
 ) => boolean;
243 249
 
244 250
 export interface CommonNativeWebViewProps extends ViewProps {
@@ -258,7 +264,7 @@ export interface CommonNativeWebViewProps extends ViewProps {
258 264
   onLoadingStart: (event: WebViewNavigationEvent) => void;
259 265
   onHttpError: (event: WebViewHttpErrorEvent) => void;
260 266
   onMessage: (event: WebViewMessageEvent) => void;
261
-  onShouldStartLoadWithRequest: (event: WebViewNavigationEvent) => void;
267
+  onShouldStartLoadWithRequest: (event: ShouldStartLoadRequestEvent) => void;
262 268
   showsHorizontalScrollIndicator?: boolean;
263 269
   showsVerticalScrollIndicator?: boolean;
264 270
   // TODO: find a better way to type this.
@@ -266,7 +272,7 @@ export interface CommonNativeWebViewProps extends ViewProps {
266 272
   source: any;
267 273
   userAgent?: string;
268 274
   /**
269
-   * Append to the existing user-agent. Overriden if `userAgent` is set.
275
+   * Append to the existing user-agent. Overridden if `userAgent` is set.
270 276
    */
271 277
   applicationNameForUserAgent?: string;
272 278
 }