react-native-navigation的迁移库

RCCViewController.m 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  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:navigatorStyle];
  140. [self setStyleOnInit];
  141. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onRNReload) name:RCTJavaScriptWillStartLoadingNotification object:nil];
  142. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onCancelReactTouches) name:RCCViewControllerCancelReactTouchesNotification object:nil];
  143. self.commandType = props[GLOBAL_SCREEN_ACTION_COMMAND_TYPE];
  144. self.timestamp = props[GLOBAL_SCREEN_ACTION_TIMESTAMP];
  145. // In order to support 3rd party native ViewControllers, we support passing a class name as a prop mamed `ExternalNativeScreenClass`
  146. // In this case, we create an instance and add it as a child ViewController which preserves the VC lifecycle.
  147. // In case some props are necessary in the native ViewController, the ExternalNativeScreenProps can be used to pass them
  148. [self addExternalVCIfNecessary:props];
  149. }
  150. - (void)dealloc
  151. {
  152. [[NSNotificationCenter defaultCenter] removeObserver:self];
  153. self.view = nil;
  154. }
  155. -(void)onRNReload
  156. {
  157. [[NSNotificationCenter defaultCenter] removeObserver:self];
  158. self.view = nil;
  159. }
  160. -(void)onCancelReactTouches
  161. {
  162. if ([self.view isKindOfClass:[RCTRootView class]]){
  163. [(RCTRootView*)self.view cancelTouches];
  164. }
  165. }
  166. - (void)sendScreenChangedEvent:(NSString *)eventName
  167. {
  168. if ([self.view isKindOfClass:[RCTRootView class]]){
  169. RCTRootView *rootView = (RCTRootView *)self.view;
  170. if (rootView.appProperties && rootView.appProperties[@"navigatorEventID"]) {
  171. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:rootView.appProperties[@"navigatorEventID"] body:@
  172. {
  173. @"type": @"ScreenChangedEvent",
  174. @"id": eventName
  175. }];
  176. }
  177. }
  178. }
  179. - (void)sendGlobalScreenEvent:(NSString *)eventName endTimestampString:(NSString *)endTimestampStr shouldReset:(BOOL)shouldReset {
  180. if (!self.commandType) return;
  181. if ([self.view isKindOfClass:[RCTRootView class]]){
  182. NSString *screenName = [((RCTRootView*)self.view) moduleName];
  183. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:eventName body:@
  184. {
  185. @"commandType": self.commandType ? self.commandType : @"",
  186. @"screen": screenName ? screenName : @"",
  187. @"startTime": self.timestamp ? self.timestamp : @"",
  188. @"endTime": endTimestampStr ? endTimestampStr : @""
  189. }];
  190. if (shouldReset) {
  191. self.commandType = nil;
  192. self.timestamp = nil;
  193. }
  194. }
  195. }
  196. -(BOOL)isDisappearTriggeredFromPop:(NSString *)eventName {
  197. NSArray *navigationViewControllers = self.navigationController.viewControllers;
  198. if (navigationViewControllers.lastObject == self || [navigationViewControllers indexOfObject:self] == NSNotFound) {
  199. return YES;
  200. }
  201. return NO;
  202. }
  203. - (NSString *)getTimestampString {
  204. long long milliseconds = (long long)([[NSDate date] timeIntervalSince1970] * 1000.0);
  205. return [NSString stringWithFormat:@"%lld", milliseconds];
  206. }
  207. // This is walk around for React-Native bug.
  208. // https://github.com/wix/react-native-navigation/issues/1446
  209. //
  210. // Buttons in ScrollView after changing route/pushing/showing modal
  211. // while there is a momentum scroll are not clickable.
  212. // Back to normal after user start scroll with momentum
  213. - (void)_traverseAndCall:(UIView*)view
  214. {
  215. if([view isKindOfClass:[UIScrollView class]] && ([[(UIScrollView*)view delegate] respondsToSelector:@selector(scrollViewDidEndDecelerating:)]) ) {
  216. [[(UIScrollView*)view delegate] scrollViewDidEndDecelerating:(id)view];
  217. }
  218. [view.subviews enumerateObjectsUsingBlock:^(__kindof UIView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  219. [self _traverseAndCall:obj];
  220. }];
  221. }
  222. - (void)viewDidAppear:(BOOL)animated
  223. {
  224. [super viewDidAppear:animated];
  225. [self sendGlobalScreenEvent:@"didAppear" endTimestampString:[self getTimestampString] shouldReset:YES];
  226. [self sendScreenChangedEvent:@"didAppear"];
  227. }
  228. - (void)viewWillAppear:(BOOL)animated
  229. {
  230. [super viewWillAppear:animated];
  231. [self sendGlobalScreenEvent:@"willAppear" endTimestampString:[self getTimestampString] shouldReset:NO];
  232. [self sendScreenChangedEvent:@"willAppear"];
  233. [self setStyleOnAppear];
  234. }
  235. - (void)viewDidDisappear:(BOOL)animated
  236. {
  237. [self _traverseAndCall:self.view];
  238. [super viewDidDisappear:animated];
  239. [self sendGlobalScreenEvent:@"didDisappear" endTimestampString:[self getTimestampString] shouldReset:YES];
  240. [self sendScreenChangedEvent:@"didDisappear"];
  241. }
  242. - (void)viewWillDisappear:(BOOL)animated
  243. {
  244. [super viewWillDisappear:animated];
  245. [self sendGlobalScreenEvent:@"willDisappear" endTimestampString:[self getTimestampString] shouldReset:NO];
  246. [self sendScreenChangedEvent:@"willDisappear"];
  247. [self setStyleOnDisappear];
  248. }
  249. // most styles should be set here since when we pop a view controller that changed them
  250. // we want to reset the style to what we expect (so we need to reset on every willAppear)
  251. - (void)setStyleOnAppear
  252. {
  253. [self setStyleOnAppearForViewController:self appeared:false];
  254. }
  255. - (void)updateStyle
  256. {
  257. [self setStyleOnAppearForViewController:self appeared:true];
  258. }
  259. -(void)setStyleOnAppearForViewController:(UIViewController*)viewController appeared:(BOOL)appeared
  260. {
  261. NSString *screenBackgroundColor = self.navigatorStyle[@"screenBackgroundColor"];
  262. if (screenBackgroundColor) {
  263. UIColor *color = screenBackgroundColor != (id)[NSNull null] ? [RCTConvert UIColor:screenBackgroundColor] : nil;
  264. viewController.view.backgroundColor = color;
  265. }
  266. NSString *screenBackgroundImageName = self.navigatorStyle[@"screenBackgroundImageName"];
  267. if (screenBackgroundImageName) {
  268. UIImage *image = [UIImage imageNamed: screenBackgroundImageName];
  269. viewController.view.layer.contents = (__bridge id _Nullable)(image.CGImage);
  270. }
  271. NSString *navBarBackgroundColor = self.navigatorStyle[@"navBarBackgroundColor"];
  272. if (navBarBackgroundColor) {
  273. UIColor *color = navBarBackgroundColor != (id)[NSNull null] ? [RCTConvert UIColor:navBarBackgroundColor] : nil;
  274. viewController.navigationController.navigationBar.barTintColor = color;
  275. } else {
  276. viewController.navigationController.navigationBar.barTintColor = nil;
  277. }
  278. NSMutableDictionary *titleTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarText" baseFont:[UIFont boldSystemFontOfSize:17]];
  279. [self.navigationController.navigationBar setTitleTextAttributes:titleTextAttributes];
  280. if (self.navigationItem.titleView && [self.navigationItem.titleView isKindOfClass:[RCCTitleView class]]) {
  281. RCCTitleView *titleView = (RCCTitleView *)self.navigationItem.titleView;
  282. RCCTitleViewHelper *helper = [[RCCTitleViewHelper alloc] init:viewController navigationController:viewController.navigationController title:titleView.titleLabel.text subtitle:titleView.subtitleLabel.text titleImageData:nil isSetSubtitle:NO];
  283. [helper setup:self.navigatorStyle];
  284. }
  285. NSMutableDictionary *navButtonTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarButton"];
  286. NSMutableDictionary *leftNavButtonTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarLeftButton"];
  287. NSMutableDictionary *rightNavButtonTextAttributes = [RCTHelpers textAttributesFromDictionary:self.navigatorStyle withPrefix:@"navBarRightButton"];
  288. if (
  289. navButtonTextAttributes.allKeys.count > 0 ||
  290. leftNavButtonTextAttributes.allKeys.count > 0 ||
  291. rightNavButtonTextAttributes.allKeys.count > 0
  292. ) {
  293. for (UIBarButtonItem *item in viewController.navigationItem.leftBarButtonItems) {
  294. [item setTitleTextAttributes:navButtonTextAttributes forState:UIControlStateNormal];
  295. if (leftNavButtonTextAttributes.allKeys.count > 0) {
  296. [item setTitleTextAttributes:leftNavButtonTextAttributes forState:UIControlStateNormal];
  297. }
  298. }
  299. for (UIBarButtonItem *item in viewController.navigationItem.rightBarButtonItems) {
  300. [item setTitleTextAttributes:navButtonTextAttributes forState:UIControlStateNormal];
  301. if (rightNavButtonTextAttributes.allKeys.count > 0) {
  302. [item setTitleTextAttributes:rightNavButtonTextAttributes forState:UIControlStateNormal];
  303. }
  304. }
  305. // At the moment, this seems to be the only thing that gets the back button correctly
  306. [navButtonTextAttributes removeObjectForKey:NSForegroundColorAttributeName];
  307. [[UIBarButtonItem appearance] setTitleTextAttributes:navButtonTextAttributes forState:UIControlStateNormal];
  308. }
  309. NSString *navBarButtonColor = self.navigatorStyle[@"navBarButtonColor"];
  310. if (navBarButtonColor) {
  311. UIColor *color = navBarButtonColor != (id)[NSNull null] ? [RCTConvert UIColor:navBarButtonColor] : nil;
  312. viewController.navigationController.navigationBar.tintColor = color;
  313. } else
  314. {
  315. viewController.navigationController.navigationBar.tintColor = nil;
  316. }
  317. BOOL viewControllerBasedStatusBar = false;
  318. NSObject *viewControllerBasedStatusBarAppearance = [[NSBundle mainBundle] infoDictionary][@"UIViewControllerBasedStatusBarAppearance"];
  319. if (viewControllerBasedStatusBarAppearance && [viewControllerBasedStatusBarAppearance isKindOfClass:[NSNumber class]]) {
  320. viewControllerBasedStatusBar = [(NSNumber *)viewControllerBasedStatusBarAppearance boolValue];
  321. }
  322. NSString *statusBarTextColorSchemeSingleScreen = self.navigatorStyle[@"statusBarTextColorSchemeSingleScreen"];
  323. NSString *statusBarTextColorScheme = self.navigatorStyle[@"statusBarTextColorScheme"];
  324. NSString *finalColorScheme = statusBarTextColorSchemeSingleScreen ? : statusBarTextColorScheme;
  325. if (finalColorScheme && [finalColorScheme isEqualToString:@"light"]) {
  326. if (!statusBarTextColorSchemeSingleScreen) {
  327. viewController.navigationController.navigationBar.barStyle = UIBarStyleBlack;
  328. }
  329. self._statusBarTextColorSchemeLight = true;
  330. if (!viewControllerBasedStatusBarAppearance) {
  331. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  332. }
  333. [viewController setNeedsStatusBarAppearanceUpdate];
  334. } else {
  335. if (!statusBarTextColorSchemeSingleScreen) {
  336. viewController.navigationController.navigationBar.barStyle = UIBarStyleDefault;
  337. }
  338. self._statusBarTextColorSchemeLight = false;
  339. if (!viewControllerBasedStatusBarAppearance) {
  340. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  341. }
  342. [viewController setNeedsStatusBarAppearanceUpdate];
  343. }
  344. NSNumber *navBarHidden = self.navigatorStyle[@"navBarHidden"];
  345. BOOL navBarHiddenBool = navBarHidden ? [navBarHidden boolValue] : NO;
  346. if (viewController.navigationController.navigationBarHidden != navBarHiddenBool) {
  347. [viewController.navigationController setNavigationBarHidden:navBarHiddenBool animated:YES];
  348. }
  349. NSNumber *navBarHideOnScroll = self.navigatorStyle[@"navBarHideOnScroll"];
  350. BOOL navBarHideOnScrollBool = navBarHideOnScroll ? [navBarHideOnScroll boolValue] : NO;
  351. if (navBarHideOnScrollBool) {
  352. viewController.navigationController.hidesBarsOnSwipe = YES;
  353. } else {
  354. viewController.navigationController.hidesBarsOnSwipe = NO;
  355. }
  356. NSNumber *statusBarBlur = self.navigatorStyle[@"statusBarBlur"];
  357. BOOL statusBarBlurBool = statusBarBlur ? [statusBarBlur boolValue] : NO;
  358. if (statusBarBlurBool && ![viewController.view viewWithTag:BLUR_STATUS_TAG]) {
  359. UIVisualEffectView *blur = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
  360. blur.frame = [[UIApplication sharedApplication] statusBarFrame];
  361. blur.tag = BLUR_STATUS_TAG;
  362. [viewController.view insertSubview:blur atIndex:0];
  363. }
  364. NSNumber *navBarBlur = self.navigatorStyle[@"navBarBlur"];
  365. BOOL navBarBlurBool = navBarBlur ? [navBarBlur boolValue] : NO;
  366. if (navBarBlurBool) {
  367. if (![viewController.navigationController.navigationBar viewWithTag:BLUR_NAVBAR_TAG]) {
  368. [self storeOriginalNavBarImages];
  369. [viewController.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
  370. viewController.navigationController.navigationBar.shadowImage = [UIImage new];
  371. UIVisualEffectView *blur = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
  372. CGRect statusBarFrame = [[UIApplication sharedApplication] statusBarFrame];
  373. blur.frame = CGRectMake(0, -1 * statusBarFrame.size.height, viewController.navigationController.navigationBar.frame.size.width, viewController.navigationController.navigationBar.frame.size.height + statusBarFrame.size.height);
  374. blur.userInteractionEnabled = NO;
  375. blur.tag = BLUR_NAVBAR_TAG;
  376. [viewController.navigationController.navigationBar insertSubview:blur atIndex:0];
  377. [viewController.navigationController.navigationBar sendSubviewToBack:blur];
  378. }
  379. } else {
  380. UIView *blur = [viewController.navigationController.navigationBar viewWithTag:BLUR_NAVBAR_TAG];
  381. if (blur) {
  382. [blur removeFromSuperview];
  383. [viewController.navigationController.navigationBar setBackgroundImage:self.originalNavBarImages[@"bgImage"] forBarMetrics:UIBarMetricsDefault];
  384. viewController.navigationController.navigationBar.shadowImage = self.originalNavBarImages[@"shadowImage"];
  385. self.originalNavBarImages = nil;
  386. }
  387. }
  388. NSNumber *navBarTransparent = self.navigatorStyle[@"navBarTransparent"];
  389. BOOL navBarTransparentBool = navBarTransparent ? [navBarTransparent boolValue] : NO;
  390. void (^action)() = ^ {
  391. if (navBarTransparentBool)
  392. {
  393. if (![viewController.navigationController.navigationBar viewWithTag:TRANSPARENT_NAVBAR_TAG])
  394. {
  395. [self storeOriginalNavBarImages];
  396. [viewController.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
  397. viewController.navigationController.navigationBar.shadowImage = [UIImage new];
  398. UIView *transparentView = [[UIView alloc] initWithFrame:CGRectZero];
  399. transparentView.tag = TRANSPARENT_NAVBAR_TAG;
  400. [viewController.navigationController.navigationBar insertSubview:transparentView atIndex:0];
  401. }
  402. }
  403. else
  404. {
  405. UIView *transparentView = [viewController.navigationController.navigationBar viewWithTag:TRANSPARENT_NAVBAR_TAG];
  406. if (transparentView)
  407. {
  408. [transparentView removeFromSuperview];
  409. [viewController.navigationController.navigationBar setBackgroundImage:self.originalNavBarImages[@"bgImage"] forBarMetrics:UIBarMetricsDefault];
  410. viewController.navigationController.navigationBar.shadowImage = self.originalNavBarImages[@"shadowImage"];
  411. self.originalNavBarImages = nil;
  412. }
  413. }
  414. };
  415. if (!self.transitionCoordinator || self.transitionCoordinator.initiallyInteractive || !navBarTransparentBool || appeared) {
  416. action();
  417. } else {
  418. UIView* backgroundView = [self.navigationController.navigationBar valueForKey:@"backgroundView"];
  419. CGFloat originalAlpha = backgroundView.alpha;
  420. backgroundView.alpha = navBarTransparentBool ? 0.0 : 1.0;
  421. [self.transitionCoordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> _Nonnull context) {
  422. action();
  423. backgroundView.alpha = originalAlpha;
  424. }];
  425. }
  426. NSNumber *autoAdjustsScrollViewInsets = self.navigatorStyle[@"autoAdjustScrollViewInsets"];
  427. viewController.automaticallyAdjustsScrollViewInsets = autoAdjustsScrollViewInsets ? [autoAdjustsScrollViewInsets boolValue] : false;
  428. NSNumber *navBarTranslucent = self.navigatorStyle[@"navBarTranslucent"];
  429. BOOL navBarTranslucentBool = navBarTranslucent ? [navBarTranslucent boolValue] : NO;
  430. if (navBarTranslucentBool || navBarBlurBool) {
  431. viewController.navigationController.navigationBar.translucent = YES;
  432. } else {
  433. viewController.navigationController.navigationBar.translucent = NO;
  434. }
  435. NSNumber *extendedLayoutIncludesOpaqueBars = self.navigatorStyle[@"extendedLayoutIncludesOpaqueBars"];
  436. BOOL extendedLayoutIncludesOpaqueBarsBool = extendedLayoutIncludesOpaqueBars ? [extendedLayoutIncludesOpaqueBars boolValue] : NO;
  437. viewController.extendedLayoutIncludesOpaqueBars = extendedLayoutIncludesOpaqueBarsBool;
  438. NSNumber *drawUnderNavBar = self.navigatorStyle[@"drawUnderNavBar"];
  439. BOOL drawUnderNavBarBool = drawUnderNavBar ? [drawUnderNavBar boolValue] : NO;
  440. if (drawUnderNavBarBool) {
  441. viewController.edgesForExtendedLayout |= UIRectEdgeTop;
  442. }
  443. else {
  444. viewController.edgesForExtendedLayout &= ~UIRectEdgeTop;
  445. }
  446. NSNumber *drawUnderTabBar = self.navigatorStyle[@"drawUnderTabBar"];
  447. BOOL drawUnderTabBarBool = drawUnderTabBar ? [drawUnderTabBar boolValue] : NO;
  448. if (drawUnderTabBarBool) {
  449. viewController.edgesForExtendedLayout |= UIRectEdgeBottom;
  450. } else {
  451. viewController.edgesForExtendedLayout &= ~UIRectEdgeBottom;
  452. }
  453. NSNumber *removeNavBarBorder = self.navigatorStyle[@"navBarNoBorder"];
  454. BOOL removeNavBarBorderBool = removeNavBarBorder ? [removeNavBarBorder boolValue] : NO;
  455. if (removeNavBarBorderBool) {
  456. self.navBarHairlineImageView.hidden = YES;
  457. } else {
  458. self.navBarHairlineImageView.hidden = NO;
  459. }
  460. //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
  461. //overriding the delegate of the gesture prevents this from happening while keeping the gesture intact (another option was to disable it completely by demand)
  462. self.originalInteractivePopGestureDelegate = nil;
  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)
  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. @end