react-native-webview.git

RNCWKWebView.m 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  1. /**
  2. * Copyright (c) 2015-present, Facebook, Inc.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #import "RNCWKWebView.h"
  8. #import <React/RCTConvert.h>
  9. #import <React/RCTAutoInsetsProtocol.h>
  10. #import "RNCWKProcessPoolManager.h"
  11. #import <UIKit/UIKit.h>
  12. #import "objc/runtime.h"
  13. static NSTimer *keyboardTimer;
  14. static NSString *const MessageHandlerName = @"ReactNativeWebView";
  15. static NSURLCredential* clientAuthenticationCredential;
  16. // runtime trick to remove WKWebView keyboard default toolbar
  17. // see: http://stackoverflow.com/questions/19033292/ios-7-uiwebview-keyboard-issue/19042279#19042279
  18. @interface _SwizzleHelperWK : NSObject @end
  19. @implementation _SwizzleHelperWK
  20. -(id)inputAccessoryView
  21. {
  22. return nil;
  23. }
  24. @end
  25. @interface RNCWKWebView () <WKUIDelegate, WKNavigationDelegate, WKScriptMessageHandler, UIScrollViewDelegate, RCTAutoInsetsProtocol>
  26. @property (nonatomic, copy) RCTDirectEventBlock onLoadingStart;
  27. @property (nonatomic, copy) RCTDirectEventBlock onLoadingFinish;
  28. @property (nonatomic, copy) RCTDirectEventBlock onLoadingError;
  29. @property (nonatomic, copy) RCTDirectEventBlock onLoadingProgress;
  30. @property (nonatomic, copy) RCTDirectEventBlock onShouldStartLoadWithRequest;
  31. @property (nonatomic, copy) RCTDirectEventBlock onMessage;
  32. @property (nonatomic, copy) RCTDirectEventBlock onScroll;
  33. @property (nonatomic, copy) WKWebView *webView;
  34. @end
  35. @implementation RNCWKWebView
  36. {
  37. UIColor * _savedBackgroundColor;
  38. BOOL _savedHideKeyboardAccessoryView;
  39. BOOL _savedKeyboardDisplayRequiresUserAction;
  40. // Workaround for StatusBar appearance bug for iOS 12
  41. // https://github.com/react-native-community/react-native-webview/issues/62
  42. BOOL _isFullScreenVideoOpen;
  43. UIStatusBarStyle _savedStatusBarStyle;
  44. BOOL _savedStatusBarHidden;
  45. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  46. UIScrollViewContentInsetAdjustmentBehavior _savedContentInsetAdjustmentBehavior;
  47. #endif
  48. }
  49. - (instancetype)initWithFrame:(CGRect)frame
  50. {
  51. if ((self = [super initWithFrame:frame])) {
  52. super.backgroundColor = [UIColor clearColor];
  53. _bounces = YES;
  54. _scrollEnabled = YES;
  55. _showsHorizontalScrollIndicator = YES;
  56. _showsVerticalScrollIndicator = YES;
  57. _directionalLockEnabled = YES;
  58. _automaticallyAdjustContentInsets = YES;
  59. _contentInset = UIEdgeInsetsZero;
  60. _savedKeyboardDisplayRequiresUserAction = YES;
  61. _savedStatusBarStyle = RCTSharedApplication().statusBarStyle;
  62. _savedStatusBarHidden = RCTSharedApplication().statusBarHidden;
  63. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  64. _savedContentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  65. #endif
  66. }
  67. if (@available(iOS 12.0, *)) {
  68. // Workaround for a keyboard dismissal bug present in iOS 12
  69. // https://openradar.appspot.com/radar?id=5018321736957952
  70. [[NSNotificationCenter defaultCenter]
  71. addObserver:self
  72. selector:@selector(keyboardWillHide)
  73. name:UIKeyboardWillHideNotification object:nil];
  74. [[NSNotificationCenter defaultCenter]
  75. addObserver:self
  76. selector:@selector(keyboardWillShow)
  77. name:UIKeyboardWillShowNotification object:nil];
  78. // Workaround for StatusBar appearance bug for iOS 12
  79. // https://github.com/react-native-community/react-native-webview/issues/62
  80. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(toggleFullScreenVideoStatusBars) name:@"_MRMediaRemotePlayerSupportedCommandsDidChangeNotification" object:nil];
  81. }
  82. return self;
  83. }
  84. - (void)dealloc
  85. {
  86. [[NSNotificationCenter defaultCenter] removeObserver:self];
  87. }
  88. /**
  89. * See https://stackoverflow.com/questions/25713069/why-is-wkwebview-not-opening-links-with-target-blank/25853806#25853806 for details.
  90. */
  91. - (WKWebView *)webView:(WKWebView *)webView createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration forNavigationAction:(WKNavigationAction *)navigationAction windowFeatures:(WKWindowFeatures *)windowFeatures
  92. {
  93. if (!navigationAction.targetFrame.isMainFrame) {
  94. [webView loadRequest:navigationAction.request];
  95. }
  96. return nil;
  97. }
  98. - (void)didMoveToWindow
  99. {
  100. if (self.window != nil && _webView == nil) {
  101. WKWebViewConfiguration *wkWebViewConfig = [WKWebViewConfiguration new];
  102. if (_incognito) {
  103. wkWebViewConfig.websiteDataStore = [WKWebsiteDataStore nonPersistentDataStore];
  104. } else if (_cacheEnabled) {
  105. wkWebViewConfig.websiteDataStore = [WKWebsiteDataStore defaultDataStore];
  106. }
  107. if(self.useSharedProcessPool) {
  108. wkWebViewConfig.processPool = [[RNCWKProcessPoolManager sharedManager] sharedProcessPool];
  109. }
  110. wkWebViewConfig.userContentController = [WKUserContentController new];
  111. if (_messagingEnabled) {
  112. [wkWebViewConfig.userContentController addScriptMessageHandler:self name:MessageHandlerName];
  113. NSString *source = [NSString stringWithFormat:
  114. @"window.%@ = {"
  115. " postMessage: function (data) {"
  116. " window.webkit.messageHandlers.%@.postMessage(String(data));"
  117. " }"
  118. "};", MessageHandlerName, MessageHandlerName
  119. ];
  120. WKUserScript *script = [[WKUserScript alloc] initWithSource:source injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES];
  121. [wkWebViewConfig.userContentController addUserScript:script];
  122. }
  123. wkWebViewConfig.allowsInlineMediaPlayback = _allowsInlineMediaPlayback;
  124. #if WEBKIT_IOS_10_APIS_AVAILABLE
  125. wkWebViewConfig.mediaTypesRequiringUserActionForPlayback = _mediaPlaybackRequiresUserAction
  126. ? WKAudiovisualMediaTypeAll
  127. : WKAudiovisualMediaTypeNone;
  128. wkWebViewConfig.dataDetectorTypes = _dataDetectorTypes;
  129. #else
  130. wkWebViewConfig.mediaPlaybackRequiresUserAction = _mediaPlaybackRequiresUserAction;
  131. #endif
  132. if (_applicationNameForUserAgent) {
  133. wkWebViewConfig.applicationNameForUserAgent = [NSString stringWithFormat:@"%@ %@", wkWebViewConfig.applicationNameForUserAgent, _applicationNameForUserAgent];
  134. }
  135. if(_sharedCookiesEnabled) {
  136. // More info to sending cookies with WKWebView
  137. // https://stackoverflow.com/questions/26573137/can-i-set-the-cookies-to-be-used-by-a-wkwebview/26577303#26577303
  138. if (@available(iOS 11.0, *)) {
  139. // Set Cookies in iOS 11 and above, initialize websiteDataStore before setting cookies
  140. // See also https://forums.developer.apple.com/thread/97194
  141. // check if websiteDataStore has not been initialized before
  142. if(!_incognito && !_cacheEnabled) {
  143. wkWebViewConfig.websiteDataStore = [WKWebsiteDataStore nonPersistentDataStore];
  144. }
  145. for (NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
  146. [wkWebViewConfig.websiteDataStore.httpCookieStore setCookie:cookie completionHandler:nil];
  147. }
  148. } else {
  149. NSMutableString *script = [NSMutableString string];
  150. // Clear all existing cookies in a direct called function. This ensures that no
  151. // javascript error will break the web content javascript.
  152. // We keep this code here, if someone requires that Cookies are also removed within the
  153. // the WebView and want to extends the current sharedCookiesEnabled option with an
  154. // additional property.
  155. // Generates JS: document.cookie = "key=; Expires=Thu, 01 Jan 1970 00:00:01 GMT;"
  156. // for each cookie which is already available in the WebView context.
  157. /*
  158. [script appendString:@"(function () {\n"];
  159. [script appendString:@" var cookies = document.cookie.split('; ');\n"];
  160. [script appendString:@" for (var i = 0; i < cookies.length; i++) {\n"];
  161. [script appendString:@" if (cookies[i].indexOf('=') !== -1) {\n"];
  162. [script appendString:@" document.cookie = cookies[i].split('=')[0] + '=; Expires=Thu, 01 Jan 1970 00:00:01 GMT';\n"];
  163. [script appendString:@" }\n"];
  164. [script appendString:@" }\n"];
  165. [script appendString:@"})();\n\n"];
  166. */
  167. // Set cookies in a direct called function. This ensures that no
  168. // javascript error will break the web content javascript.
  169. // Generates JS: document.cookie = "key=value; Path=/; Expires=Thu, 01 Jan 20xx 00:00:01 GMT;"
  170. // for each cookie which is available in the application context.
  171. [script appendString:@"(function () {\n"];
  172. for (NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
  173. [script appendFormat:@"document.cookie = %@ + '=' + %@",
  174. RCTJSONStringify(cookie.name, NULL),
  175. RCTJSONStringify(cookie.value, NULL)];
  176. if (cookie.path) {
  177. [script appendFormat:@" + '; Path=' + %@", RCTJSONStringify(cookie.path, NULL)];
  178. }
  179. if (cookie.expiresDate) {
  180. [script appendFormat:@" + '; Expires=' + new Date(%f).toUTCString()",
  181. cookie.expiresDate.timeIntervalSince1970 * 1000
  182. ];
  183. }
  184. [script appendString:@";\n"];
  185. }
  186. [script appendString:@"})();\n"];
  187. WKUserScript* cookieInScript = [[WKUserScript alloc] initWithSource:script
  188. injectionTime:WKUserScriptInjectionTimeAtDocumentStart
  189. forMainFrameOnly:YES];
  190. [wkWebViewConfig.userContentController addUserScript:cookieInScript];
  191. }
  192. }
  193. _webView = [[WKWebView alloc] initWithFrame:self.bounds configuration: wkWebViewConfig];
  194. _webView.scrollView.delegate = self;
  195. _webView.UIDelegate = self;
  196. _webView.navigationDelegate = self;
  197. _webView.scrollView.scrollEnabled = _scrollEnabled;
  198. _webView.scrollView.pagingEnabled = _pagingEnabled;
  199. _webView.scrollView.bounces = _bounces;
  200. _webView.scrollView.showsHorizontalScrollIndicator = _showsHorizontalScrollIndicator;
  201. _webView.scrollView.showsVerticalScrollIndicator = _showsVerticalScrollIndicator;
  202. _webView.scrollView.directionalLockEnabled = _directionalLockEnabled;
  203. _webView.allowsLinkPreview = _allowsLinkPreview;
  204. [_webView addObserver:self forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionOld | NSKeyValueObservingOptionNew context:nil];
  205. _webView.allowsBackForwardNavigationGestures = _allowsBackForwardNavigationGestures;
  206. if (_userAgent) {
  207. _webView.customUserAgent = _userAgent;
  208. }
  209. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  210. if ([_webView.scrollView respondsToSelector:@selector(setContentInsetAdjustmentBehavior:)]) {
  211. _webView.scrollView.contentInsetAdjustmentBehavior = _savedContentInsetAdjustmentBehavior;
  212. }
  213. #endif
  214. [self addSubview:_webView];
  215. [self setHideKeyboardAccessoryView: _savedHideKeyboardAccessoryView];
  216. [self setKeyboardDisplayRequiresUserAction: _savedKeyboardDisplayRequiresUserAction];
  217. [self visitSource];
  218. }
  219. }
  220. // Update webview property when the component prop changes.
  221. - (void)setAllowsBackForwardNavigationGestures:(BOOL)allowsBackForwardNavigationGestures {
  222. _allowsBackForwardNavigationGestures = allowsBackForwardNavigationGestures;
  223. _webView.allowsBackForwardNavigationGestures = _allowsBackForwardNavigationGestures;
  224. }
  225. - (void)removeFromSuperview
  226. {
  227. if (_webView) {
  228. [_webView.configuration.userContentController removeScriptMessageHandlerForName:MessageHandlerName];
  229. [_webView removeObserver:self forKeyPath:@"estimatedProgress"];
  230. [_webView removeFromSuperview];
  231. _webView.scrollView.delegate = nil;
  232. _webView = nil;
  233. }
  234. [super removeFromSuperview];
  235. }
  236. -(void)toggleFullScreenVideoStatusBars
  237. {
  238. #pragma clang diagnostic ignored "-Wdeprecated-declarations"
  239. if (!_isFullScreenVideoOpen) {
  240. _isFullScreenVideoOpen = YES;
  241. RCTUnsafeExecuteOnMainQueueSync(^{
  242. [RCTSharedApplication() setStatusBarStyle:UIStatusBarStyleLightContent animated:YES];
  243. });
  244. } else {
  245. _isFullScreenVideoOpen = NO;
  246. RCTUnsafeExecuteOnMainQueueSync(^{
  247. [RCTSharedApplication() setStatusBarHidden:_savedStatusBarHidden animated:YES];
  248. [RCTSharedApplication() setStatusBarStyle:_savedStatusBarStyle animated:YES];
  249. });
  250. }
  251. #pragma clang diagnostic pop
  252. }
  253. -(void)keyboardWillHide
  254. {
  255. keyboardTimer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(keyboardDisplacementFix) userInfo:nil repeats:false];
  256. [[NSRunLoop mainRunLoop] addTimer:keyboardTimer forMode:NSRunLoopCommonModes];
  257. }
  258. -(void)keyboardWillShow
  259. {
  260. if (keyboardTimer != nil) {
  261. [keyboardTimer invalidate];
  262. }
  263. }
  264. -(void)keyboardDisplacementFix
  265. {
  266. // Additional viewport checks to prevent unintentional scrolls
  267. UIScrollView *scrollView = self.webView.scrollView;
  268. double maxContentOffset = scrollView.contentSize.height - scrollView.frame.size.height;
  269. if (maxContentOffset < 0) {
  270. maxContentOffset = 0;
  271. }
  272. if (scrollView.contentOffset.y > maxContentOffset) {
  273. // https://stackoverflow.com/a/9637807/824966
  274. [UIView animateWithDuration:.25 animations:^{
  275. scrollView.contentOffset = CGPointMake(0, maxContentOffset);
  276. }];
  277. }
  278. }
  279. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context{
  280. if ([keyPath isEqual:@"estimatedProgress"] && object == self.webView) {
  281. if(_onLoadingProgress){
  282. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  283. [event addEntriesFromDictionary:@{@"progress":[NSNumber numberWithDouble:self.webView.estimatedProgress]}];
  284. _onLoadingProgress(event);
  285. }
  286. }else{
  287. [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
  288. }
  289. }
  290. - (void)setBackgroundColor:(UIColor *)backgroundColor
  291. {
  292. _savedBackgroundColor = backgroundColor;
  293. if (_webView == nil) {
  294. return;
  295. }
  296. CGFloat alpha = CGColorGetAlpha(backgroundColor.CGColor);
  297. self.opaque = _webView.opaque = (alpha == 1.0);
  298. _webView.scrollView.backgroundColor = backgroundColor;
  299. _webView.backgroundColor = backgroundColor;
  300. }
  301. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  302. - (void)setContentInsetAdjustmentBehavior:(UIScrollViewContentInsetAdjustmentBehavior)behavior
  303. {
  304. _savedContentInsetAdjustmentBehavior = behavior;
  305. if (_webView == nil) {
  306. return;
  307. }
  308. if ([_webView.scrollView respondsToSelector:@selector(setContentInsetAdjustmentBehavior:)]) {
  309. CGPoint contentOffset = _webView.scrollView.contentOffset;
  310. _webView.scrollView.contentInsetAdjustmentBehavior = behavior;
  311. _webView.scrollView.contentOffset = contentOffset;
  312. }
  313. }
  314. #endif
  315. /**
  316. * This method is called whenever JavaScript running within the web view calls:
  317. * - window.webkit.messageHandlers[MessageHandlerName].postMessage
  318. */
  319. - (void)userContentController:(WKUserContentController *)userContentController
  320. didReceiveScriptMessage:(WKScriptMessage *)message
  321. {
  322. if (_onMessage != nil) {
  323. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  324. [event addEntriesFromDictionary: @{@"data": message.body}];
  325. _onMessage(event);
  326. }
  327. }
  328. - (void)setSource:(NSDictionary *)source
  329. {
  330. if (![_source isEqualToDictionary:source]) {
  331. _source = [source copy];
  332. if (_webView != nil) {
  333. [self visitSource];
  334. }
  335. }
  336. }
  337. - (void)setAllowingReadAccessToURL:(NSString *)allowingReadAccessToURL
  338. {
  339. if (![_allowingReadAccessToURL isEqualToString:allowingReadAccessToURL]) {
  340. _allowingReadAccessToURL = [allowingReadAccessToURL copy];
  341. if (_webView != nil) {
  342. [self visitSource];
  343. }
  344. }
  345. }
  346. - (void)setContentInset:(UIEdgeInsets)contentInset
  347. {
  348. _contentInset = contentInset;
  349. [RCTView autoAdjustInsetsForView:self
  350. withScrollView:_webView.scrollView
  351. updateOffset:NO];
  352. }
  353. - (void)refreshContentInset
  354. {
  355. [RCTView autoAdjustInsetsForView:self
  356. withScrollView:_webView.scrollView
  357. updateOffset:YES];
  358. }
  359. - (void)visitSource
  360. {
  361. // Check for a static html source first
  362. NSString *html = [RCTConvert NSString:_source[@"html"]];
  363. if (html) {
  364. NSURL *baseURL = [RCTConvert NSURL:_source[@"baseUrl"]];
  365. if (!baseURL) {
  366. baseURL = [NSURL URLWithString:@"about:blank"];
  367. }
  368. [_webView loadHTMLString:html baseURL:baseURL];
  369. return;
  370. }
  371. NSURLRequest *request = [self requestForSource:_source];
  372. // Because of the way React works, as pages redirect, we actually end up
  373. // passing the redirect urls back here, so we ignore them if trying to load
  374. // the same url. We'll expose a call to 'reload' to allow a user to load
  375. // the existing page.
  376. if ([request.URL isEqual:_webView.URL]) {
  377. return;
  378. }
  379. if (!request.URL) {
  380. // Clear the webview
  381. [_webView loadHTMLString:@"" baseURL:nil];
  382. return;
  383. }
  384. if (request.URL.host) {
  385. [_webView loadRequest:request];
  386. }
  387. else {
  388. NSURL* readAccessUrl = _allowingReadAccessToURL ? [NSURL URLWithString:_allowingReadAccessToURL] : request.URL;
  389. [_webView loadFileURL:request.URL allowingReadAccessToURL:readAccessUrl];
  390. }
  391. }
  392. -(void)setKeyboardDisplayRequiresUserAction:(BOOL)keyboardDisplayRequiresUserAction
  393. {
  394. if (_webView == nil) {
  395. _savedKeyboardDisplayRequiresUserAction = keyboardDisplayRequiresUserAction;
  396. return;
  397. }
  398. if (_savedKeyboardDisplayRequiresUserAction == true) {
  399. return;
  400. }
  401. UIView* subview;
  402. for (UIView* view in _webView.scrollView.subviews) {
  403. if([[view.class description] hasPrefix:@"WK"])
  404. subview = view;
  405. }
  406. if(subview == nil) return;
  407. Class class = subview.class;
  408. NSOperatingSystemVersion iOS_11_3_0 = (NSOperatingSystemVersion){11, 3, 0};
  409. NSOperatingSystemVersion iOS_12_2_0 = (NSOperatingSystemVersion){12, 2, 0};
  410. NSOperatingSystemVersion iOS_13_0_0 = (NSOperatingSystemVersion){13, 0, 0};
  411. Method method;
  412. IMP override;
  413. if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion: iOS_13_0_0]) {
  414. // iOS 13.0.0 - Future
  415. SEL selector = sel_getUid("_elementDidFocus:userIsInteracting:blurPreviousNode:activityStateChanges:userObject:");
  416. method = class_getInstanceMethod(class, selector);
  417. IMP original = method_getImplementation(method);
  418. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, BOOL arg3, id arg4) {
  419. ((void (*)(id, SEL, void*, BOOL, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3, arg4);
  420. });
  421. }
  422. else if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion: iOS_12_2_0]) {
  423. // iOS 12.2.0 - iOS 13.0.0
  424. SEL selector = sel_getUid("_elementDidFocus:userIsInteracting:blurPreviousNode:changingActivityState:userObject:");
  425. method = class_getInstanceMethod(class, selector);
  426. IMP original = method_getImplementation(method);
  427. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, BOOL arg3, id arg4) {
  428. ((void (*)(id, SEL, void*, BOOL, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3, arg4);
  429. });
  430. }
  431. else if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion: iOS_11_3_0]) {
  432. // iOS 11.3.0 - 12.2.0
  433. SEL selector = sel_getUid("_startAssistingNode:userIsInteracting:blurPreviousNode:changingActivityState:userObject:");
  434. method = class_getInstanceMethod(class, selector);
  435. IMP original = method_getImplementation(method);
  436. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, BOOL arg3, id arg4) {
  437. ((void (*)(id, SEL, void*, BOOL, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3, arg4);
  438. });
  439. } else {
  440. // iOS 9.0 - 11.3.0
  441. SEL selector = sel_getUid("_startAssistingNode:userIsInteracting:blurPreviousNode:userObject:");
  442. method = class_getInstanceMethod(class, selector);
  443. IMP original = method_getImplementation(method);
  444. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, id arg3) {
  445. ((void (*)(id, SEL, void*, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3);
  446. });
  447. }
  448. method_setImplementation(method, override);
  449. }
  450. -(void)setHideKeyboardAccessoryView:(BOOL)hideKeyboardAccessoryView
  451. {
  452. if (_webView == nil) {
  453. _savedHideKeyboardAccessoryView = hideKeyboardAccessoryView;
  454. return;
  455. }
  456. if (_savedHideKeyboardAccessoryView == false) {
  457. return;
  458. }
  459. UIView* subview;
  460. for (UIView* view in _webView.scrollView.subviews) {
  461. if([[view.class description] hasPrefix:@"WK"])
  462. subview = view;
  463. }
  464. if(subview == nil) return;
  465. NSString* name = [NSString stringWithFormat:@"%@_SwizzleHelperWK", subview.class.superclass];
  466. Class newClass = NSClassFromString(name);
  467. if(newClass == nil)
  468. {
  469. newClass = objc_allocateClassPair(subview.class, [name cStringUsingEncoding:NSASCIIStringEncoding], 0);
  470. if(!newClass) return;
  471. Method method = class_getInstanceMethod([_SwizzleHelperWK class], @selector(inputAccessoryView));
  472. class_addMethod(newClass, @selector(inputAccessoryView), method_getImplementation(method), method_getTypeEncoding(method));
  473. objc_registerClassPair(newClass);
  474. }
  475. object_setClass(subview, newClass);
  476. }
  477. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  478. {
  479. scrollView.decelerationRate = _decelerationRate;
  480. }
  481. - (void)setScrollEnabled:(BOOL)scrollEnabled
  482. {
  483. _scrollEnabled = scrollEnabled;
  484. _webView.scrollView.scrollEnabled = scrollEnabled;
  485. }
  486. - (void)scrollViewDidScroll:(UIScrollView *)scrollView
  487. {
  488. // Don't allow scrolling the scrollView.
  489. if (!_scrollEnabled) {
  490. scrollView.bounds = _webView.bounds;
  491. }
  492. else if (_onScroll != nil) {
  493. NSDictionary *event = @{
  494. @"contentOffset": @{
  495. @"x": @(scrollView.contentOffset.x),
  496. @"y": @(scrollView.contentOffset.y)
  497. },
  498. @"contentInset": @{
  499. @"top": @(scrollView.contentInset.top),
  500. @"left": @(scrollView.contentInset.left),
  501. @"bottom": @(scrollView.contentInset.bottom),
  502. @"right": @(scrollView.contentInset.right)
  503. },
  504. @"contentSize": @{
  505. @"width": @(scrollView.contentSize.width),
  506. @"height": @(scrollView.contentSize.height)
  507. },
  508. @"layoutMeasurement": @{
  509. @"width": @(scrollView.frame.size.width),
  510. @"height": @(scrollView.frame.size.height)
  511. },
  512. @"zoomScale": @(scrollView.zoomScale ?: 1),
  513. };
  514. _onScroll(event);
  515. }
  516. }
  517. - (void)setDirectionalLockEnabled:(BOOL)directionalLockEnabled
  518. {
  519. _directionalLockEnabled = directionalLockEnabled;
  520. _webView.scrollView.directionalLockEnabled = directionalLockEnabled;
  521. }
  522. - (void)setShowsHorizontalScrollIndicator:(BOOL)showsHorizontalScrollIndicator
  523. {
  524. _showsHorizontalScrollIndicator = showsHorizontalScrollIndicator;
  525. _webView.scrollView.showsHorizontalScrollIndicator = showsHorizontalScrollIndicator;
  526. }
  527. - (void)setShowsVerticalScrollIndicator:(BOOL)showsVerticalScrollIndicator
  528. {
  529. _showsVerticalScrollIndicator = showsVerticalScrollIndicator;
  530. _webView.scrollView.showsVerticalScrollIndicator = showsVerticalScrollIndicator;
  531. }
  532. - (void)postMessage:(NSString *)message
  533. {
  534. NSDictionary *eventInitDict = @{@"data": message};
  535. NSString *source = [NSString
  536. stringWithFormat:@"window.dispatchEvent(new MessageEvent('message', %@));",
  537. RCTJSONStringify(eventInitDict, NULL)
  538. ];
  539. [self injectJavaScript: source];
  540. }
  541. - (void)layoutSubviews
  542. {
  543. [super layoutSubviews];
  544. // Ensure webview takes the position and dimensions of RNCWKWebView
  545. _webView.frame = self.bounds;
  546. _webView.scrollView.contentInset = _contentInset;
  547. }
  548. - (NSMutableDictionary<NSString *, id> *)baseEvent
  549. {
  550. NSDictionary *event = @{
  551. @"url": _webView.URL.absoluteString ?: @"",
  552. @"title": _webView.title ?: @"",
  553. @"loading" : @(_webView.loading),
  554. @"canGoBack": @(_webView.canGoBack),
  555. @"canGoForward" : @(_webView.canGoForward)
  556. };
  557. return [[NSMutableDictionary alloc] initWithDictionary: event];
  558. }
  559. + (void)setClientAuthenticationCredential:(nullable NSURLCredential*)credential {
  560. clientAuthenticationCredential = credential;
  561. }
  562. - (void) webView:(WKWebView *)webView
  563. didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
  564. completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential * _Nullable))completionHandler
  565. {
  566. if (!clientAuthenticationCredential) {
  567. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  568. return;
  569. }
  570. if ([[challenge protectionSpace] authenticationMethod] == NSURLAuthenticationMethodClientCertificate) {
  571. completionHandler(NSURLSessionAuthChallengeUseCredential, clientAuthenticationCredential);
  572. } else {
  573. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  574. }
  575. }
  576. #pragma mark - WKNavigationDelegate methods
  577. /**
  578. * alert
  579. */
  580. - (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler
  581. {
  582. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:message preferredStyle:UIAlertControllerStyleAlert];
  583. [alert addAction:[UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  584. completionHandler();
  585. }]];
  586. [[self topViewController] presentViewController:alert animated:YES completion:NULL];
  587. }
  588. /**
  589. * confirm
  590. */
  591. - (void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL))completionHandler{
  592. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:message preferredStyle:UIAlertControllerStyleAlert];
  593. [alert addAction:[UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  594. completionHandler(YES);
  595. }]];
  596. [alert addAction:[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  597. completionHandler(NO);
  598. }]];
  599. [[self topViewController] presentViewController:alert animated:YES completion:NULL];
  600. }
  601. /**
  602. * prompt
  603. */
  604. - (void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)defaultText initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSString *))completionHandler{
  605. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:prompt preferredStyle:UIAlertControllerStyleAlert];
  606. [alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  607. textField.text = defaultText;
  608. }];
  609. UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  610. completionHandler([[alert.textFields lastObject] text]);
  611. }];
  612. [alert addAction:okAction];
  613. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  614. completionHandler(nil);
  615. }];
  616. [alert addAction:cancelAction];
  617. alert.preferredAction = okAction;
  618. [[self topViewController] presentViewController:alert animated:YES completion:NULL];
  619. }
  620. /**
  621. * topViewController
  622. */
  623. -(UIViewController *)topViewController{
  624.    UIViewController *controller = [self topViewControllerWithRootViewController:[self getCurrentWindow].rootViewController];
  625.    return controller;
  626. }
  627. /**
  628. * topViewControllerWithRootViewController
  629. */
  630. -(UIViewController *)topViewControllerWithRootViewController:(UIViewController *)viewController{
  631. if (viewController==nil) return nil;
  632. if (viewController.presentedViewController!=nil) {
  633. return [self topViewControllerWithRootViewController:viewController.presentedViewController];
  634. } else if ([viewController isKindOfClass:[UITabBarController class]]){
  635. return [self topViewControllerWithRootViewController:[(UITabBarController *)viewController selectedViewController]];
  636. } else if ([viewController isKindOfClass:[UINavigationController class]]){
  637. return [self topViewControllerWithRootViewController:[(UINavigationController *)viewController visibleViewController]];
  638. } else {
  639. return viewController;
  640. }
  641. }
  642. /**
  643. * getCurrentWindow
  644. */
  645. -(UIWindow *)getCurrentWindow{
  646. UIWindow *window = [UIApplication sharedApplication].keyWindow;
  647. if (window.windowLevel!=UIWindowLevelNormal) {
  648. for (UIWindow *wid in [UIApplication sharedApplication].windows) {
  649. if (window.windowLevel==UIWindowLevelNormal) {
  650. window = wid;
  651. break;
  652. }
  653. }
  654. }
  655. return window;
  656. }
  657. /**
  658. * Decides whether to allow or cancel a navigation.
  659. * @see https://fburl.com/42r9fxob
  660. */
  661. - (void) webView:(WKWebView *)webView
  662. decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction
  663. decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler
  664. {
  665. static NSDictionary<NSNumber *, NSString *> *navigationTypes;
  666. static dispatch_once_t onceToken;
  667. dispatch_once(&onceToken, ^{
  668. navigationTypes = @{
  669. @(WKNavigationTypeLinkActivated): @"click",
  670. @(WKNavigationTypeFormSubmitted): @"formsubmit",
  671. @(WKNavigationTypeBackForward): @"backforward",
  672. @(WKNavigationTypeReload): @"reload",
  673. @(WKNavigationTypeFormResubmitted): @"formresubmit",
  674. @(WKNavigationTypeOther): @"other",
  675. };
  676. });
  677. WKNavigationType navigationType = navigationAction.navigationType;
  678. NSURLRequest *request = navigationAction.request;
  679. if (_onShouldStartLoadWithRequest) {
  680. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  681. [event addEntriesFromDictionary: @{
  682. @"url": (request.URL).absoluteString,
  683. @"mainDocumentURL": (request.mainDocumentURL).absoluteString,
  684. @"navigationType": navigationTypes[@(navigationType)]
  685. }];
  686. if (![self.delegate webView:self
  687. shouldStartLoadForRequest:event
  688. withCallback:_onShouldStartLoadWithRequest]) {
  689. decisionHandler(WKNavigationResponsePolicyCancel);
  690. return;
  691. }
  692. }
  693. if (_onLoadingStart) {
  694. // We have this check to filter out iframe requests and whatnot
  695. BOOL isTopFrame = [request.URL isEqual:request.mainDocumentURL];
  696. if (isTopFrame) {
  697. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  698. [event addEntriesFromDictionary: @{
  699. @"url": (request.URL).absoluteString,
  700. @"navigationType": navigationTypes[@(navigationType)]
  701. }];
  702. _onLoadingStart(event);
  703. }
  704. }
  705. // Allow all navigation by default
  706. decisionHandler(WKNavigationResponsePolicyAllow);
  707. }
  708. /**
  709. * Called when an error occurs while the web view is loading content.
  710. * @see https://fburl.com/km6vqenw
  711. */
  712. - (void) webView:(WKWebView *)webView
  713. didFailProvisionalNavigation:(WKNavigation *)navigation
  714. withError:(NSError *)error
  715. {
  716. if (_onLoadingError) {
  717. if ([error.domain isEqualToString:NSURLErrorDomain] && error.code == NSURLErrorCancelled) {
  718. // NSURLErrorCancelled is reported when a page has a redirect OR if you load
  719. // a new URL in the WebView before the previous one came back. We can just
  720. // ignore these since they aren't real errors.
  721. // http://stackoverflow.com/questions/1024748/how-do-i-fix-nsurlerrordomain-error-999-in-iphone-3-0-os
  722. return;
  723. }
  724. if ([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102) {
  725. // Error code 102 "Frame load interrupted" is raised by the WKWebView
  726. // when the URL is from an http redirect. This is a common pattern when
  727. // implementing OAuth with a WebView.
  728. return;
  729. }
  730. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  731. [event addEntriesFromDictionary:@{
  732. @"didFailProvisionalNavigation": @YES,
  733. @"domain": error.domain,
  734. @"code": @(error.code),
  735. @"description": error.localizedDescription,
  736. }];
  737. _onLoadingError(event);
  738. }
  739. [self setBackgroundColor: _savedBackgroundColor];
  740. }
  741. - (void)evaluateJS:(NSString *)js
  742. thenCall: (void (^)(NSString*)) callback
  743. {
  744. [self.webView evaluateJavaScript: js completionHandler: ^(id result, NSError *error) {
  745. if (callback != nil) {
  746. callback([NSString stringWithFormat:@"%@", result]);
  747. }
  748. if (error != nil) {
  749. RCTLogWarn([NSString stringWithFormat:@"Error evaluating injectedJavaScript: This is possibly due to an unsupported return type. Try adding true to the end of your injectedJavaScript string. %@", error]);
  750. }
  751. }];
  752. }
  753. /**
  754. * Called when the navigation is complete.
  755. * @see https://fburl.com/rtys6jlb
  756. */
  757. - (void) webView:(WKWebView *)webView
  758. didFinishNavigation:(WKNavigation *)navigation
  759. {
  760. if (_injectedJavaScript) {
  761. [self evaluateJS: _injectedJavaScript thenCall: ^(NSString *jsEvaluationValue) {
  762. NSMutableDictionary *event = [self baseEvent];
  763. event[@"jsEvaluationValue"] = jsEvaluationValue;
  764. if (self.onLoadingFinish) {
  765. self.onLoadingFinish(event);
  766. }
  767. }];
  768. } else if (_onLoadingFinish) {
  769. _onLoadingFinish([self baseEvent]);
  770. }
  771. [self setBackgroundColor: _savedBackgroundColor];
  772. }
  773. - (void)injectJavaScript:(NSString *)script
  774. {
  775. [self evaluateJS: script thenCall: nil];
  776. }
  777. - (void)goForward
  778. {
  779. [_webView goForward];
  780. }
  781. - (void)goBack
  782. {
  783. [_webView goBack];
  784. }
  785. - (void)reload
  786. {
  787. /**
  788. * When the initial load fails due to network connectivity issues,
  789. * [_webView reload] doesn't reload the webpage. Therefore, we must
  790. * manually call [_webView loadRequest:request].
  791. */
  792. NSURLRequest *request = [self requestForSource:self.source];
  793. if (request.URL && !_webView.URL.absoluteString.length) {
  794. [_webView loadRequest:request];
  795. } else {
  796. [_webView reload];
  797. }
  798. }
  799. - (void)stopLoading
  800. {
  801. [_webView stopLoading];
  802. }
  803. - (void)setBounces:(BOOL)bounces
  804. {
  805. _bounces = bounces;
  806. _webView.scrollView.bounces = bounces;
  807. }
  808. - (NSURLRequest *)requestForSource:(id)json {
  809. NSURLRequest *request = [RCTConvert NSURLRequest:self.source];
  810. // If sharedCookiesEnabled we automatically add all application cookies to the
  811. // http request. This is automatically done on iOS 11+ in the WebView constructor.
  812. // Se we need to manually add these shared cookies here only for iOS versions < 11.
  813. if (_sharedCookiesEnabled) {
  814. if (@available(iOS 11.0, *)) {
  815. // see WKWebView initialization for added cookies
  816. } else {
  817. NSArray *cookies = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookiesForURL:request.URL];
  818. NSDictionary<NSString *, NSString *> *cookieHeader = [NSHTTPCookie requestHeaderFieldsWithCookies:cookies];
  819. NSMutableURLRequest *mutableRequest = [request mutableCopy];
  820. [mutableRequest setAllHTTPHeaderFields:cookieHeader];
  821. return mutableRequest;
  822. }
  823. }
  824. return request;
  825. }
  826. @end