react-native-navigation的迁移库

RCCViewController.m 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  1. #import "RCCViewController.h"
  2. #import "RCCNavigationController.h"
  3. #import "RCCTabBarController.h"
  4. #import "RCCDrawerController.h"
  5. #import "RCCTheSideBarManagerViewController.h"
  6. #import <React/RCTRootView.h>
  7. #import "RCCManager.h"
  8. #import <React/RCTConvert.h>
  9. #import <React/RCTEventDispatcher.h>
  10. #import "RCCExternalViewControllerProtocol.h"
  11. #import "RCTHelpers.h"
  12. #import "RCCTitleViewHelper.h"
  13. #import "RCCCustomTitleView.h"
  14. NSString* const RCCViewControllerCancelReactTouchesNotification = @"RCCViewControllerCancelReactTouchesNotification";
  15. const NSInteger BLUR_STATUS_TAG = 78264801;
  16. const NSInteger BLUR_NAVBAR_TAG = 78264802;
  17. const NSInteger TRANSPARENT_NAVBAR_TAG = 78264803;
  18. @interface RCCViewController() <UIGestureRecognizerDelegate>
  19. @property (nonatomic) BOOL _hidesBottomBarWhenPushed;
  20. @property (nonatomic) BOOL _statusBarHideWithNavBar;
  21. @property (nonatomic) BOOL _statusBarHidden;
  22. @property (nonatomic) BOOL _statusBarTextColorSchemeLight;
  23. @property (nonatomic, strong) NSDictionary *originalNavBarImages;
  24. @property (nonatomic, strong) UIImageView *navBarHairlineImageView;
  25. @property (nonatomic, weak) id <UIGestureRecognizerDelegate> originalInteractivePopGestureDelegate;
  26. @end
  27. @implementation RCCViewController
  28. -(UIImageView *)navBarHairlineImageView {
  29. if (!_navBarHairlineImageView) {
  30. _navBarHairlineImageView = [self findHairlineImageViewUnder:self.navigationController.navigationBar];
  31. }
  32. return _navBarHairlineImageView;
  33. }
  34. + (UIViewController*)controllerWithLayout:(NSDictionary *)layout globalProps:(NSDictionary *)globalProps bridge:(RCTBridge *)bridge
  35. {
  36. UIViewController* controller = nil;
  37. if (!layout) return nil;
  38. // get props
  39. if (!layout[@"props"]) return nil;
  40. if (![layout[@"props"] isKindOfClass:[NSDictionary class]]) return nil;
  41. NSDictionary *props = layout[@"props"];
  42. // get children
  43. if (!layout[@"children"]) return nil;
  44. if (![layout[@"children"] isKindOfClass:[NSArray class]]) return nil;
  45. NSArray *children = layout[@"children"];
  46. // create according to type
  47. NSString *type = layout[@"type"];
  48. if (!type) return nil;
  49. // regular view controller
  50. if ([type isEqualToString:@"ViewControllerIOS"])
  51. {
  52. controller = [[RCCViewController alloc] initWithProps:props children:children globalProps:globalProps bridge:bridge];
  53. }
  54. // navigation controller
  55. if ([type isEqualToString:@"NavigationControllerIOS"])
  56. {
  57. controller = [[RCCNavigationController alloc] initWithProps:props children:children globalProps:globalProps bridge:bridge];
  58. }
  59. // tab bar controller
  60. if ([type isEqualToString:@"TabBarControllerIOS"])
  61. {
  62. controller = [[RCCTabBarController alloc] initWithProps:props children:children globalProps:globalProps bridge:bridge];
  63. }
  64. // side menu controller
  65. if ([type isEqualToString:@"DrawerControllerIOS"])
  66. {
  67. NSString *drawerType = props[@"type"];
  68. if ([drawerType isEqualToString:@"TheSideBar"]) {
  69. controller = [[RCCTheSideBarManagerViewController alloc] initWithProps:props children:children globalProps:globalProps bridge:bridge];
  70. }
  71. else {
  72. controller = [[RCCDrawerController alloc] initWithProps:props children:children globalProps:globalProps bridge:bridge];
  73. }
  74. }
  75. // register the controller if we have an id
  76. NSString *componentId = props[@"id"];
  77. if (controller && componentId)
  78. {
  79. [[RCCManager sharedInstance] registerController:controller componentId:componentId componentType:type];
  80. if([controller isKindOfClass:[RCCViewController class]])
  81. {
  82. ((RCCViewController*)controller).controllerId = componentId;
  83. }
  84. }
  85. // set background image at root level
  86. NSString *rootBackgroundImageName = props[@"style"][@"rootBackgroundImageName"];
  87. if (rootBackgroundImageName) {
  88. UIImage *image = [UIImage imageNamed: rootBackgroundImageName];
  89. UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
  90. [controller.view insertSubview:imageView atIndex:0];
  91. }
  92. return controller;
  93. }
  94. -(NSDictionary*)addCommandTypeAndTimestampIfExists:(NSDictionary*)globalProps passProps:(NSDictionary*)passProps {
  95. NSMutableDictionary *modifiedPassProps = [NSMutableDictionary dictionaryWithDictionary:passProps];
  96. NSString *commandType = globalProps[GLOBAL_SCREEN_ACTION_COMMAND_TYPE];
  97. if (commandType) {
  98. modifiedPassProps[GLOBAL_SCREEN_ACTION_COMMAND_TYPE] = commandType;
  99. }
  100. NSString *timestamp = globalProps[GLOBAL_SCREEN_ACTION_TIMESTAMP];
  101. if (timestamp) {
  102. modifiedPassProps[GLOBAL_SCREEN_ACTION_TIMESTAMP] = timestamp;
  103. }
  104. return modifiedPassProps;
  105. }
  106. - (instancetype)initWithProps:(NSDictionary *)props children:(NSArray *)children globalProps:(NSDictionary *)globalProps bridge:(RCTBridge *)bridge
  107. {
  108. NSString *component = props[@"component"];
  109. if (!component) return nil;
  110. NSDictionary *passProps = props[@"passProps"];
  111. NSDictionary *navigatorStyle = props[@"style"];
  112. NSMutableDictionary *mergedProps = [NSMutableDictionary dictionaryWithDictionary:globalProps];
  113. [mergedProps addEntriesFromDictionary:passProps];
  114. RCTRootView *reactView = [[RCTRootView alloc] initWithBridge:bridge moduleName:component initialProperties:mergedProps];
  115. if (!reactView) return nil;
  116. self = [super init];
  117. if (!self) return nil;
  118. [self commonInit:reactView navigatorStyle:navigatorStyle props:props];
  119. self.navigationController.interactivePopGestureRecognizer.delegate = self;
  120. return self;
  121. }
  122. - (instancetype)initWithComponent:(NSString *)component passProps:(NSDictionary *)passProps navigatorStyle:(NSDictionary*)navigatorStyle globalProps:(NSDictionary *)globalProps bridge:(RCTBridge *)bridge
  123. {
  124. NSMutableDictionary *mergedProps = [NSMutableDictionary dictionaryWithDictionary:globalProps];
  125. [mergedProps addEntriesFromDictionary:passProps];
  126. RCTRootView *reactView = [[RCTRootView alloc] initWithBridge:bridge moduleName:component initialProperties:mergedProps];
  127. if (!reactView) return nil;
  128. self = [super init];
  129. if (!self) return nil;
  130. NSDictionary *modifiedPassProps = [self addCommandTypeAndTimestampIfExists:globalProps passProps:passProps];
  131. [self commonInit:reactView navigatorStyle:navigatorStyle props:modifiedPassProps];
  132. return self;
  133. }
  134. - (void)commonInit:(RCTRootView*)reactView navigatorStyle:(NSDictionary*)navigatorStyle props:(NSDictionary*)props
  135. {
  136. self.view = reactView;
  137. self.edgesForExtendedLayout = UIRectEdgeNone; // default
  138. self.automaticallyAdjustsScrollViewInsets = NO; // default
  139. self.navigatorStyle = [NSMutableDictionary dictionaryWithDictionary:[[RCCManager sharedInstance] getAppStyle]];
  140. [self.navigatorStyle addEntriesFromDictionary:navigatorStyle];
  141. [self setStyleOnInit];
  142. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onRNReload) name:RCTJavaScriptWillStartLoadingNotification object:nil];
  143. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onCancelReactTouches) name:RCCViewControllerCancelReactTouchesNotification object:nil];
  144. self.commandType = props[GLOBAL_SCREEN_ACTION_COMMAND_TYPE];
  145. self.timestamp = props[GLOBAL_SCREEN_ACTION_TIMESTAMP];
  146. // In order to support 3rd party native ViewControllers, we support passing a class name as a prop mamed `ExternalNativeScreenClass`
  147. // In this case, we create an instance and add it as a child ViewController which preserves the VC lifecycle.
  148. // In case some props are necessary in the native ViewController, the ExternalNativeScreenProps can be used to pass them
  149. [self addExternalVCIfNecessary:props];
  150. }
  151. - (void)dealloc
  152. {
  153. [[NSNotificationCenter defaultCenter] removeObserver:self];
  154. self.view = nil;
  155. }
  156. -(void)onRNReload
  157. {
  158. [[NSNotificationCenter defaultCenter] removeObserver:self];
  159. self.view = nil;
  160. }
  161. -(void)onCancelReactTouches
  162. {
  163. if ([self.view isKindOfClass:[RCTRootView class]]){
  164. [(RCTRootView*)self.view cancelTouches];
  165. }
  166. }
  167. - (void)sendScreenChangedEvent:(NSString *)eventName
  168. {
  169. if ([self.view isKindOfClass:[RCTRootView class]]){
  170. RCTRootView *rootView = (RCTRootView *)self.view;
  171. if (rootView.appProperties && rootView.appProperties[@"navigatorEventID"]) {
  172. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:rootView.appProperties[@"navigatorEventID"] body:@
  173. {
  174. @"type": @"ScreenChangedEvent",
  175. @"id": eventName
  176. }];
  177. }
  178. }
  179. }
  180. - (void)sendGlobalScreenEvent:(NSString *)eventName endTimestampString:(NSString *)endTimestampStr shouldReset:(BOOL)shouldReset {
  181. if (!self.commandType) return;
  182. if ([self.view isKindOfClass:[RCTRootView class]]){
  183. NSString *screenName = [((RCTRootView*)self.view) moduleName];
  184. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:eventName body:@
  185. {
  186. @"commandType": self.commandType ? self.commandType : @"",
  187. @"screen": screenName ? screenName : @"",
  188. @"startTime": self.timestamp ? self.timestamp : @"",
  189. @"endTime": endTimestampStr ? endTimestampStr : @""
  190. }];
  191. if (shouldReset) {
  192. self.commandType = nil;
  193. self.timestamp = nil;
  194. }
  195. }
  196. }
  197. -(BOOL)isDisappearTriggeredFromPop:(NSString *)eventName {
  198. NSArray *navigationViewControllers = self.navigationController.viewControllers;
  199. if (navigationViewControllers.lastObject == self || [navigationViewControllers indexOfObject:self] == NSNotFound) {
  200. return YES;
  201. }
  202. return NO;
  203. }
  204. - (NSString *)getTimestampString {
  205. long long milliseconds = (long long)([[NSDate date] timeIntervalSince1970] * 1000.0);
  206. return [NSString stringWithFormat:@"%lld", milliseconds];
  207. }
  208. // This is walk around for React-Native bug.
  209. // https://github.com/wix/react-native-navigation/issues/1446
  210. //
  211. // Buttons in ScrollView after changing route/pushing/showing modal
  212. // while there is a momentum scroll are not clickable.
  213. // Back to normal after user start scroll with momentum
  214. - (void)_traverseAndCall:(UIView*)view
  215. {
  216. if([view isKindOfClass:[UIScrollView class]] && ([[(UIScrollView*)view delegate] respondsToSelector:@selector(scrollViewDidEndDecelerating:)]) ) {
  217. [[(UIScrollView*)view delegate] scrollViewDidEndDecelerating:(id)view];
  218. }
  219. [view.subviews enumerateObjectsUsingBlock:^(__kindof UIView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  220. [self _traverseAndCall:obj];
  221. }];
  222. }
  223. - (void)viewDidAppear:(BOOL)animated
  224. {
  225. [super viewDidAppear:animated];
  226. [self sendGlobalScreenEvent:@"didAppear" endTimestampString:[self getTimestampString] shouldReset:YES];
  227. [self sendScreenChangedEvent:@"didAppear"];
  228. }
  229. - (void)viewWillAppear:(BOOL)animated
  230. {
  231. [super viewWillAppear:animated];
  232. [self sendGlobalScreenEvent:@"willAppear" endTimestampString:[self getTimestampString] shouldReset:NO];
  233. [self sendScreenChangedEvent:@"willAppear"];
  234. [self setStyleOnAppear];
  235. }
  236. - (void)viewDidDisappear:(BOOL)animated
  237. {
  238. [self _traverseAndCall:self.view];
  239. [super viewDidDisappear:animated];
  240. [self sendGlobalScreenEvent:@"didDisappear" endTimestampString:[self getTimestampString] shouldReset:YES];
  241. [self sendScreenChangedEvent:@"didDisappear"];
  242. }
  243. - (void)viewWillDisappear:(BOOL)animated
  244. {
  245. [super viewWillDisappear:animated];
  246. [self sendGlobalScreenEvent:@"willDisappear" endTimestampString:[self getTimestampString] shouldReset:NO];
  247. [self sendScreenChangedEvent:@"willDisappear"];
  248. [self setStyleOnDisappear];
  249. }
  250. // most styles should be set here since when we pop a view controller that changed them
  251. // we want to reset the style to what we expect (so we need to reset on every willAppear)
  252. - (void)setStyleOnAppear
  253. {
  254. [self setStyleOnAppearForViewController:self appeared:false];
  255. }
  256. - (void)updateStyle
  257. {
  258. [self setStyleOnAppearForViewController:self appeared:true];
  259. }
  260. -(void)setStyleOnAppearForViewController:(UIViewController*)viewController appeared:(BOOL)appeared
  261. {
  262. NSString *screenBackgroundColor = self.navigatorStyle[@"screenBackgroundColor"];
  263. if (screenBackgroundColor) {
  264. UIColor *color = screenBackgroundColor != (id)[NSNull null] ? [RCTConvert UIColor:screenBackgroundColor] : nil;
  265. viewController.view.backgroundColor = color;
  266. }
  267. NSString *screenBackgroundImageName = self.navigatorStyle[@"screenBackgroundImageName"];
  268. if (screenBackgroundImageName) {
  269. UIImage *image = [UIImage imageNamed: screenBackgroundImageName];
  270. viewController.view.layer.contents = (__bridge id _Nullable)(image.CGImage);
  271. }
  272. NSString *navBarBackgroundColor = self.navigatorStyle[@"navBarBackgroundColor"];
  273. if (navBarBackgroundColor) {
  274. UIColor *color = navBarBackgroundColor != (id)[NSNull null] ? [RCTConvert UIColor:navBarBackgroundColor] : nil;
  275. viewController.navigationController.navigationBar.barTintColor = color;
  276. } else {
  277. viewController.navigationController.navigationBar.barTintColor = nil;
  278. }
  279. NSMutableDictionary *titleTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarText" baseFont:[UIFont boldSystemFontOfSize:17]];
  280. [self.navigationController.navigationBar setTitleTextAttributes:titleTextAttributes];
  281. if (self.navigationItem.titleView && [self.navigationItem.titleView isKindOfClass:[RCCTitleView class]]) {
  282. RCCTitleView *titleView = (RCCTitleView *)self.navigationItem.titleView;
  283. RCCTitleViewHelper *helper = [[RCCTitleViewHelper alloc] init:viewController navigationController:viewController.navigationController title:titleView.titleLabel.text subtitle:titleView.subtitleLabel.text titleImageData:nil isSetSubtitle:NO];
  284. [helper setup:self.navigatorStyle];
  285. }
  286. NSMutableDictionary *navButtonTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarButton"];
  287. NSMutableDictionary *leftNavButtonTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarLeftButton"];
  288. NSMutableDictionary *rightNavButtonTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarRightButton"];
  289. if (
  290. navButtonTextAttributes.allKeys.count > 0 ||
  291. leftNavButtonTextAttributes.allKeys.count > 0 ||
  292. rightNavButtonTextAttributes.allKeys.count > 0
  293. ) {
  294. for (UIBarButtonItem *item in viewController.navigationItem.leftBarButtonItems) {
  295. [item setTitleTextAttributes:navButtonTextAttributes forState:UIControlStateNormal];
  296. if (leftNavButtonTextAttributes.allKeys.count > 0) {
  297. [item setTitleTextAttributes:leftNavButtonTextAttributes forState:UIControlStateNormal];
  298. }
  299. }
  300. for (UIBarButtonItem *item in viewController.navigationItem.rightBarButtonItems) {
  301. [item setTitleTextAttributes:navButtonTextAttributes forState:UIControlStateNormal];
  302. if (rightNavButtonTextAttributes.allKeys.count > 0) {
  303. [item setTitleTextAttributes:rightNavButtonTextAttributes forState:UIControlStateNormal];
  304. }
  305. }
  306. // At the moment, this seems to be the only thing that gets the back button correctly
  307. [navButtonTextAttributes removeObjectForKey:NSForegroundColorAttributeName];
  308. [[UIBarButtonItem appearance] setTitleTextAttributes:navButtonTextAttributes forState:UIControlStateNormal];
  309. }
  310. NSString *navBarButtonColor = self.navigatorStyle[@"navBarButtonColor"];
  311. if (navBarButtonColor) {
  312. UIColor *color = navBarButtonColor != (id)[NSNull null] ? [RCTConvert UIColor:navBarButtonColor] : nil;
  313. viewController.navigationController.navigationBar.tintColor = color;
  314. } else
  315. {
  316. viewController.navigationController.navigationBar.tintColor = nil;
  317. }
  318. BOOL viewControllerBasedStatusBar = false;
  319. NSObject *viewControllerBasedStatusBarAppearance = [[NSBundle mainBundle] infoDictionary][@"UIViewControllerBasedStatusBarAppearance"];
  320. if (viewControllerBasedStatusBarAppearance && [viewControllerBasedStatusBarAppearance isKindOfClass:[NSNumber class]]) {
  321. viewControllerBasedStatusBar = [(NSNumber *)viewControllerBasedStatusBarAppearance boolValue];
  322. }
  323. NSString *statusBarTextColorSchemeSingleScreen = self.navigatorStyle[@"statusBarTextColorSchemeSingleScreen"];
  324. NSString *statusBarTextColorScheme = self.navigatorStyle[@"statusBarTextColorScheme"];
  325. NSString *finalColorScheme = statusBarTextColorSchemeSingleScreen ? : statusBarTextColorScheme;
  326. if (finalColorScheme && [finalColorScheme isEqualToString:@"light"]) {
  327. if (!statusBarTextColorSchemeSingleScreen) {
  328. viewController.navigationController.navigationBar.barStyle = UIBarStyleBlack;
  329. }
  330. self._statusBarTextColorSchemeLight = true;
  331. if (!viewControllerBasedStatusBarAppearance) {
  332. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  333. }
  334. [viewController setNeedsStatusBarAppearanceUpdate];
  335. } else {
  336. if (!statusBarTextColorSchemeSingleScreen) {
  337. viewController.navigationController.navigationBar.barStyle = UIBarStyleDefault;
  338. }
  339. self._statusBarTextColorSchemeLight = false;
  340. if (!viewControllerBasedStatusBarAppearance) {
  341. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  342. }
  343. [viewController setNeedsStatusBarAppearanceUpdate];
  344. }
  345. NSNumber *navBarHidden = self.navigatorStyle[@"navBarHidden"];
  346. BOOL navBarHiddenBool = navBarHidden ? [navBarHidden boolValue] : NO;
  347. if (viewController.navigationController.navigationBarHidden != navBarHiddenBool) {
  348. [viewController.navigationController setNavigationBarHidden:navBarHiddenBool animated:YES];
  349. }
  350. NSNumber *navBarHideOnScroll = self.navigatorStyle[@"navBarHideOnScroll"];
  351. BOOL navBarHideOnScrollBool = navBarHideOnScroll ? [navBarHideOnScroll boolValue] : NO;
  352. if (navBarHideOnScrollBool) {
  353. viewController.navigationController.hidesBarsOnSwipe = YES;
  354. } else {
  355. viewController.navigationController.hidesBarsOnSwipe = NO;
  356. }
  357. NSNumber *statusBarBlur = self.navigatorStyle[@"statusBarBlur"];
  358. BOOL statusBarBlurBool = statusBarBlur ? [statusBarBlur boolValue] : NO;
  359. if (statusBarBlurBool && ![viewController.view viewWithTag:BLUR_STATUS_TAG]) {
  360. UIVisualEffectView *blur = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
  361. blur.frame = [[UIApplication sharedApplication] statusBarFrame];
  362. blur.tag = BLUR_STATUS_TAG;
  363. [viewController.view insertSubview:blur atIndex:0];
  364. }
  365. NSNumber *navBarBlur = self.navigatorStyle[@"navBarBlur"];
  366. BOOL navBarBlurBool = navBarBlur ? [navBarBlur boolValue] : NO;
  367. if (navBarBlurBool) {
  368. if (![viewController.navigationController.navigationBar viewWithTag:BLUR_NAVBAR_TAG]) {
  369. [self storeOriginalNavBarImages];
  370. [viewController.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
  371. viewController.navigationController.navigationBar.shadowImage = [UIImage new];
  372. UIVisualEffectView *blur = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
  373. CGRect statusBarFrame = [[UIApplication sharedApplication] statusBarFrame];
  374. blur.frame = CGRectMake(0, -1 * statusBarFrame.size.height, viewController.navigationController.navigationBar.frame.size.width, viewController.navigationController.navigationBar.frame.size.height + statusBarFrame.size.height);
  375. blur.userInteractionEnabled = NO;
  376. blur.tag = BLUR_NAVBAR_TAG;
  377. [viewController.navigationController.navigationBar insertSubview:blur atIndex:0];
  378. [viewController.navigationController.navigationBar sendSubviewToBack:blur];
  379. }
  380. } else {
  381. UIView *blur = [viewController.navigationController.navigationBar viewWithTag:BLUR_NAVBAR_TAG];
  382. if (blur) {
  383. [blur removeFromSuperview];
  384. [viewController.navigationController.navigationBar setBackgroundImage:self.originalNavBarImages[@"bgImage"] forBarMetrics:UIBarMetricsDefault];
  385. viewController.navigationController.navigationBar.shadowImage = self.originalNavBarImages[@"shadowImage"];
  386. self.originalNavBarImages = nil;
  387. }
  388. }
  389. NSNumber *navBarTransparent = self.navigatorStyle[@"navBarTransparent"];
  390. BOOL navBarTransparentBool = navBarTransparent ? [navBarTransparent boolValue] : NO;
  391. void (^action)() = ^ {
  392. if (navBarTransparentBool)
  393. {
  394. if (![viewController.navigationController.navigationBar viewWithTag:TRANSPARENT_NAVBAR_TAG])
  395. {
  396. [self storeOriginalNavBarImages];
  397. [viewController.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
  398. viewController.navigationController.navigationBar.shadowImage = [UIImage new];
  399. UIView *transparentView = [[UIView alloc] initWithFrame:CGRectZero];
  400. transparentView.tag = TRANSPARENT_NAVBAR_TAG;
  401. [viewController.navigationController.navigationBar insertSubview:transparentView atIndex:0];
  402. }
  403. }
  404. else
  405. {
  406. UIView *transparentView = [viewController.navigationController.navigationBar viewWithTag:TRANSPARENT_NAVBAR_TAG];
  407. if (transparentView)
  408. {
  409. [transparentView removeFromSuperview];
  410. [viewController.navigationController.navigationBar setBackgroundImage:self.originalNavBarImages[@"bgImage"] forBarMetrics:UIBarMetricsDefault];
  411. viewController.navigationController.navigationBar.shadowImage = self.originalNavBarImages[@"shadowImage"];
  412. self.originalNavBarImages = nil;
  413. }
  414. }
  415. };
  416. if (!self.transitionCoordinator || self.transitionCoordinator.initiallyInteractive || !navBarTransparentBool || appeared) {
  417. action();
  418. } else {
  419. UIView* backgroundView = [self.navigationController.navigationBar valueForKey:@"backgroundView"];
  420. CGFloat originalAlpha = backgroundView.alpha;
  421. backgroundView.alpha = navBarTransparentBool ? 0.0 : 1.0;
  422. [self.transitionCoordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> _Nonnull context) {
  423. action();
  424. backgroundView.alpha = originalAlpha;
  425. }];
  426. }
  427. NSNumber *autoAdjustsScrollViewInsets = self.navigatorStyle[@"autoAdjustScrollViewInsets"];
  428. viewController.automaticallyAdjustsScrollViewInsets = autoAdjustsScrollViewInsets ? [autoAdjustsScrollViewInsets boolValue] : false;
  429. NSNumber *navBarTranslucent = self.navigatorStyle[@"navBarTranslucent"];
  430. BOOL navBarTranslucentBool = navBarTranslucent ? [navBarTranslucent boolValue] : NO;
  431. if (navBarTranslucentBool || navBarBlurBool) {
  432. viewController.navigationController.navigationBar.translucent = YES;
  433. } else {
  434. viewController.navigationController.navigationBar.translucent = NO;
  435. }
  436. NSNumber *extendedLayoutIncludesOpaqueBars = self.navigatorStyle[@"extendedLayoutIncludesOpaqueBars"];
  437. BOOL extendedLayoutIncludesOpaqueBarsBool = extendedLayoutIncludesOpaqueBars ? [extendedLayoutIncludesOpaqueBars boolValue] : NO;
  438. viewController.extendedLayoutIncludesOpaqueBars = extendedLayoutIncludesOpaqueBarsBool;
  439. NSNumber *drawUnderNavBar = self.navigatorStyle[@"drawUnderNavBar"];
  440. BOOL drawUnderNavBarBool = drawUnderNavBar ? [drawUnderNavBar boolValue] : NO;
  441. if (drawUnderNavBarBool) {
  442. viewController.edgesForExtendedLayout |= UIRectEdgeTop;
  443. }
  444. else {
  445. viewController.edgesForExtendedLayout &= ~UIRectEdgeTop;
  446. }
  447. NSNumber *drawUnderTabBar = self.navigatorStyle[@"drawUnderTabBar"];
  448. BOOL drawUnderTabBarBool = drawUnderTabBar ? [drawUnderTabBar boolValue] : NO;
  449. if (drawUnderTabBarBool) {
  450. viewController.edgesForExtendedLayout |= UIRectEdgeBottom;
  451. } else {
  452. viewController.edgesForExtendedLayout &= ~UIRectEdgeBottom;
  453. }
  454. NSNumber *removeNavBarBorder = self.navigatorStyle[@"navBarNoBorder"];
  455. BOOL removeNavBarBorderBool = removeNavBarBorder ? [removeNavBarBorder boolValue] : NO;
  456. if (removeNavBarBorderBool) {
  457. self.navBarHairlineImageView.hidden = YES;
  458. } else {
  459. self.navBarHairlineImageView.hidden = NO;
  460. }
  461. //Bug fix: in case there is a interactivePopGestureRecognizer, it prevents react-native from getting touch events on the left screen area that the gesture handles
  462. //overriding the delegate of the gesture prevents this from happening while keeping the gesture intact (another option was to disable it completely by demand)
  463. if(self.navigationController.viewControllers.count > 1){
  464. if (self.navigationController != nil && self.navigationController.interactivePopGestureRecognizer != nil)
  465. {
  466. id <UIGestureRecognizerDelegate> interactivePopGestureRecognizer = self.navigationController.interactivePopGestureRecognizer.delegate;
  467. if (interactivePopGestureRecognizer != nil && interactivePopGestureRecognizer != self)
  468. {
  469. self.originalInteractivePopGestureDelegate = interactivePopGestureRecognizer;
  470. self.navigationController.interactivePopGestureRecognizer.delegate = self;
  471. }
  472. }
  473. }
  474. NSString *navBarCustomView = self.navigatorStyle[@"navBarCustomView"];
  475. if (navBarCustomView && ![self.navigationItem.titleView isKindOfClass:[RCCCustomTitleView class]]) {
  476. if ([self.view isKindOfClass:[RCTRootView class]]) {
  477. RCTBridge *bridge = ((RCTRootView*)self.view).bridge;
  478. NSDictionary *initialProps = self.navigatorStyle[@"navBarCustomViewInitialProps"];
  479. RCTRootView *reactView = [[RCTRootView alloc] initWithBridge:bridge moduleName:navBarCustomView initialProperties:initialProps];
  480. RCCCustomTitleView *titleView = [[RCCCustomTitleView alloc] initWithFrame:self.navigationController.navigationBar.bounds subView:reactView alignment:self.navigatorStyle[@"navBarComponentAlignment"]];
  481. titleView.backgroundColor = [UIColor clearColor];
  482. reactView.backgroundColor = [UIColor clearColor];
  483. self.navigationItem.titleView = titleView;
  484. self.navigationItem.titleView.backgroundColor = [UIColor clearColor];
  485. self.navigationItem.titleView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
  486. self.navigationItem.titleView.clipsToBounds = YES;
  487. }
  488. }
  489. }
  490. -(void)storeOriginalNavBarImages {
  491. NSMutableDictionary *originalNavBarImages = [@{} mutableCopy];
  492. UIImage *bgImage = [self.navigationController.navigationBar backgroundImageForBarMetrics:UIBarMetricsDefault];
  493. if (bgImage != nil) {
  494. originalNavBarImages[@"bgImage"] = bgImage;
  495. }
  496. UIImage *shadowImage = self.navigationController.navigationBar.shadowImage;
  497. if (shadowImage != nil) {
  498. originalNavBarImages[@"shadowImage"] = shadowImage;
  499. }
  500. self.originalNavBarImages = originalNavBarImages;
  501. }
  502. -(void)setStyleOnDisappear {
  503. self.navBarHairlineImageView.hidden = NO;
  504. if (self.navigationController != nil && self.navigationController.interactivePopGestureRecognizer != nil && self.originalInteractivePopGestureDelegate != nil)
  505. {
  506. self.navigationController.interactivePopGestureRecognizer.delegate = self.originalInteractivePopGestureDelegate;
  507. self.originalInteractivePopGestureDelegate = nil;
  508. }
  509. }
  510. // only styles that can't be set on willAppear should be set here
  511. - (void)setStyleOnInit
  512. {
  513. NSNumber *tabBarHidden = self.navigatorStyle[@"tabBarHidden"];
  514. BOOL tabBarHiddenBool = tabBarHidden ? [tabBarHidden boolValue] : NO;
  515. if (tabBarHiddenBool) {
  516. self._hidesBottomBarWhenPushed = YES;
  517. } else {
  518. self._hidesBottomBarWhenPushed = NO;
  519. }
  520. NSNumber *statusBarHideWithNavBar = self.navigatorStyle[@"statusBarHideWithNavBar"];
  521. BOOL statusBarHideWithNavBarBool = statusBarHideWithNavBar ? [statusBarHideWithNavBar boolValue] : NO;
  522. if (statusBarHideWithNavBarBool) {
  523. self._statusBarHideWithNavBar = YES;
  524. } else {
  525. self._statusBarHideWithNavBar = NO;
  526. }
  527. NSNumber *statusBarHidden = self.navigatorStyle[@"statusBarHidden"];
  528. BOOL statusBarHiddenBool = statusBarHidden ? [statusBarHidden boolValue] : NO;
  529. if (statusBarHiddenBool) {
  530. self._statusBarHidden = YES;
  531. } else {
  532. self._statusBarHidden = NO;
  533. }
  534. }
  535. - (BOOL)hidesBottomBarWhenPushed
  536. {
  537. if (!self._hidesBottomBarWhenPushed) return NO;
  538. return (self.navigationController.topViewController == self);
  539. }
  540. - (BOOL)prefersStatusBarHidden
  541. {
  542. if (self._statusBarHidden) {
  543. return YES;
  544. }
  545. if (self._statusBarHideWithNavBar) {
  546. return self.navigationController.isNavigationBarHidden;
  547. } else {
  548. return NO;
  549. }
  550. }
  551. - (void)setNavBarVisibilityChange:(BOOL)animated {
  552. [self.navigationController setNavigationBarHidden:[self.navigatorStyle[@"navBarHidden"] boolValue] animated:animated];
  553. }
  554. - (UIStatusBarStyle)preferredStatusBarStyle
  555. {
  556. if (self._statusBarTextColorSchemeLight){
  557. return UIStatusBarStyleLightContent;
  558. } else {
  559. return UIStatusBarStyleDefault;
  560. }
  561. }
  562. - (UIImageView *)findHairlineImageViewUnder:(UIView *)view {
  563. if ([view isKindOfClass:UIImageView.class] && view.bounds.size.height <= 1.0) {
  564. return (UIImageView *)view;
  565. }
  566. for (UIView *subview in view.subviews) {
  567. UIImageView *imageView = [self findHairlineImageViewUnder:subview];
  568. if (imageView) {
  569. return imageView;
  570. }
  571. }
  572. return nil;
  573. }
  574. -(void)addExternalVCIfNecessary:(NSDictionary*)props
  575. {
  576. NSString *externalScreenClass = props[@"externalNativeScreenClass"];
  577. if (externalScreenClass != nil)
  578. {
  579. Class class = NSClassFromString(externalScreenClass);
  580. if (class != NULL)
  581. {
  582. id obj = [[class alloc] init];
  583. if (obj != nil && [obj isKindOfClass:[UIViewController class]] && [obj conformsToProtocol:@protocol(RCCExternalViewControllerProtocol)])
  584. {
  585. ((id <RCCExternalViewControllerProtocol>)obj).controllerDelegate = self;
  586. [obj setProps:props[@"externalNativeScreenProps"]];
  587. UIViewController *viewController = (UIViewController*)obj;
  588. [self addChildViewController:viewController];
  589. viewController.view.frame = self.view.bounds;
  590. [self.view addSubview:viewController.view];
  591. [viewController didMoveToParentViewController:self];
  592. }
  593. else
  594. {
  595. NSLog(@"addExternalVCIfNecessary: could not create instance. Make sure that your class is a UIViewController whihc confirms to RCCExternalViewControllerProtocol");
  596. }
  597. }
  598. else
  599. {
  600. NSLog(@"addExternalVCIfNecessary: could not create class from string. Check that the proper class name wass passed in ExternalNativeScreenClass");
  601. }
  602. }
  603. }
  604. #pragma mark - NewRelic
  605. - (NSString*) customNewRelicInteractionName
  606. {
  607. NSString *interactionName = nil;
  608. if (self.view != nil && [self.view isKindOfClass:[RCTRootView class]])
  609. {
  610. NSString *moduleName = ((RCTRootView*)self.view).moduleName;
  611. if(moduleName != nil)
  612. {
  613. interactionName = [NSString stringWithFormat:@"RCCViewController: %@", moduleName];
  614. }
  615. }
  616. if (interactionName == nil)
  617. {
  618. interactionName = [NSString stringWithFormat:@"RCCViewController with title: %@", self.title];
  619. }
  620. return interactionName;
  621. }
  622. #pragma mark - UIGestureRecognizerDelegate
  623. -(BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
  624. NSNumber *disabledBackGesture = self.navigatorStyle[@"disabledBackGesture"];
  625. BOOL disabledBackGestureBool = disabledBackGesture ? [disabledBackGesture boolValue] : NO;
  626. return !disabledBackGestureBool;
  627. }
  628. -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer{
  629. NSNumber *disabledSimultaneousGesture = self.navigatorStyle[@"disabledSimultaneousGesture"];
  630. BOOL disabledSimultaneousGestureBool = disabledSimultaneousGesture ? [disabledSimultaneousGesture boolValue] : YES; // make default value of disabledSimultaneousGesture is true
  631. return !disabledSimultaneousGestureBool;
  632. }
  633. @end