-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRCTCustomWebView.m
More file actions
31 lines (23 loc) · 803 Bytes
/
RCTCustomWebView.m
File metadata and controls
31 lines (23 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// RCTCustomWebView.m
#import "RCTCustomWebView.h"
#import "RCTWebView+Custom.h"
@interface RCTCustomWebView ()
@property (nonatomic, copy) RCTDirectEventBlock onNavigationCompleted;
@end
@implementation RCTCustomWebView { }
- (BOOL)webView:(__unused UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType
{
BOOL allowed = [super webView:webView shouldStartLoadWithRequest:request navigationType:navigationType];
if (allowed) {
NSString* url = request.URL.absoluteString;
if (url && [url isEqualToString:_finalUrl]) {
if (_onNavigationCompleted) {
NSMutableDictionary<NSString *, id> *event = [self baseEvent];
_onNavigationCompleted(event);
}
}
}
return allowed;
}
@end