react-native-navigation的迁移库

RCCNavigationController.m 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. #import "RCCNavigationController.h"
  2. #import "RCCViewController.h"
  3. #import "RCCManager.h"
  4. #import <React/RCTEventDispatcher.h>
  5. #import <React/RCTUIManager.h>
  6. #if __has_include(<React/RCTUIManagerUtils.h>)
  7. #import <React/RCTUIManagerUtils.h>
  8. #endif
  9. #import <React/RCTConvert.h>
  10. #import <React/RCTRootView.h>
  11. #import <objc/runtime.h>
  12. #import "RCCTitleViewHelper.h"
  13. #import "RCCCustomBarButtonItem.h"
  14. #import "UIViewController+Rotation.h"
  15. #import "RCTHelpers.h"
  16. #import "RCTConvert+UIBarButtonSystemItem.h"
  17. @implementation RCCNavigationController
  18. {
  19. BOOL _transitioning;
  20. NSMutableArray *_queuedViewControllers;
  21. }
  22. NSString const *CALLBACK_ASSOCIATED_KEY = @"RCCNavigationController.CALLBACK_ASSOCIATED_KEY";
  23. NSString const *CALLBACK_ASSOCIATED_ID = @"RCCNavigationController.CALLBACK_ASSOCIATED_ID";
  24. -(UIInterfaceOrientationMask)supportedInterfaceOrientations {
  25. return [self supportedControllerOrientations];
  26. }
  27. - (instancetype)initWithProps:(NSDictionary *)props children:(NSArray *)children globalProps:(NSDictionary*)globalProps bridge:(RCTBridge *)bridge
  28. {
  29. _queuedViewControllers = [NSMutableArray new];
  30. NSString *component = props[@"component"];
  31. if (!component) return nil;
  32. NSDictionary *passProps = props[@"passProps"];
  33. NSDictionary *navigatorStyle = props[@"style"];
  34. RCCViewController *viewController = [[RCCViewController alloc] initWithComponent:component passProps:passProps navigatorStyle:navigatorStyle globalProps:globalProps bridge:bridge];
  35. if (!viewController) return nil;
  36. viewController.controllerId = passProps[@"screenInstanceID"];
  37. NSArray *leftButtons = props[@"leftButtons"];
  38. if (leftButtons)
  39. {
  40. [self setButtons:leftButtons viewController:viewController side:@"left" animated:NO];
  41. }
  42. NSArray *rightButtons = props[@"rightButtons"];
  43. if (rightButtons)
  44. {
  45. [self setButtons:rightButtons viewController:viewController side:@"right" animated:NO];
  46. }
  47. self = [super initWithRootViewController:viewController];
  48. if (!self) return nil;
  49. self.delegate = self;
  50. self.navigationBar.translucent = NO; // default
  51. [self processTitleView:viewController
  52. props:props
  53. style:navigatorStyle];
  54. [self setRotation:props];
  55. return self;
  56. }
  57. - (void)performAction:(NSString*)performAction actionParams:(NSDictionary*)actionParams bridge:(RCTBridge *)bridge
  58. {
  59. BOOL animated = actionParams[@"animated"] ? [actionParams[@"animated"] boolValue] : YES;
  60. // push
  61. if ([performAction isEqualToString:@"push"])
  62. {
  63. NSString *component = actionParams[@"component"];
  64. if (!component) return;
  65. NSMutableDictionary *passProps = [actionParams[@"passProps"] mutableCopy];
  66. passProps[GLOBAL_SCREEN_ACTION_COMMAND_TYPE] = COMMAND_TYPE_PUSH;
  67. passProps[GLOBAL_SCREEN_ACTION_TIMESTAMP] = actionParams[GLOBAL_SCREEN_ACTION_TIMESTAMP];
  68. NSDictionary *navigatorStyle = actionParams[@"style"];
  69. NSNumber *keepStyleAcrossPush = [[RCCManager sharedInstance] getAppStyle][@"keepStyleAcrossPush"];
  70. BOOL keepStyleAcrossPushBool = keepStyleAcrossPush ? [keepStyleAcrossPush boolValue] : YES;
  71. if (keepStyleAcrossPushBool) {
  72. if ([self.topViewController isKindOfClass:[RCCViewController class]])
  73. {
  74. RCCViewController *parent = (RCCViewController*)self.topViewController;
  75. NSMutableDictionary *mergedStyle = [NSMutableDictionary dictionaryWithDictionary:parent.navigatorStyle];
  76. // there are a few styles that we don't want to remember from our parent (they should be local)
  77. [mergedStyle removeObjectForKey:@"navBarHidden"];
  78. [mergedStyle removeObjectForKey:@"statusBarHidden"];
  79. [mergedStyle removeObjectForKey:@"navBarHideOnScroll"];
  80. [mergedStyle removeObjectForKey:@"drawUnderNavBar"];
  81. [mergedStyle removeObjectForKey:@"drawUnderTabBar"];
  82. [mergedStyle removeObjectForKey:@"statusBarBlur"];
  83. [mergedStyle removeObjectForKey:@"navBarBlur"];
  84. [mergedStyle removeObjectForKey:@"navBarTranslucent"];
  85. [mergedStyle removeObjectForKey:@"statusBarHideWithNavBar"];
  86. [mergedStyle removeObjectForKey:@"autoAdjustScrollViewInsets"];
  87. [mergedStyle removeObjectForKey:@"statusBarTextColorSchemeSingleScreen"];
  88. [mergedStyle removeObjectForKey:@"disabledBackGesture"];
  89. [mergedStyle removeObjectForKey:@"disabledSimultaneousGesture"];
  90. [mergedStyle removeObjectForKey:@"navBarCustomView"];
  91. [mergedStyle removeObjectForKey:@"navBarComponentAlignment"];
  92. [mergedStyle addEntriesFromDictionary:navigatorStyle];
  93. navigatorStyle = mergedStyle;
  94. }
  95. }
  96. RCCViewController *viewController = [[RCCViewController alloc] initWithComponent:component passProps:passProps navigatorStyle:navigatorStyle globalProps:nil bridge:bridge];
  97. viewController.controllerId = passProps[@"screenInstanceID"];
  98. [self processTitleView:viewController
  99. props:actionParams
  100. style:navigatorStyle];
  101. NSString *backButtonTitle = actionParams[@"backButtonTitle"];
  102. if (!backButtonTitle) {
  103. NSNumber *hideBackButtonTitle = [[RCCManager sharedInstance] getAppStyle][@"hideBackButtonTitle"];
  104. BOOL hideBackButtonTitleBool = hideBackButtonTitle ? [hideBackButtonTitle boolValue] : NO;
  105. backButtonTitle = hideBackButtonTitleBool ? @"" : backButtonTitle;
  106. }
  107. if (backButtonTitle)
  108. {
  109. UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithTitle:backButtonTitle
  110. style:UIBarButtonItemStylePlain
  111. target:nil
  112. action:nil];
  113. self.topViewController.navigationItem.backBarButtonItem = backItem;
  114. }
  115. else
  116. {
  117. self.topViewController.navigationItem.backBarButtonItem = nil;
  118. }
  119. NSNumber *backButtonHidden = actionParams[@"backButtonHidden"];
  120. BOOL backButtonHiddenBool = backButtonHidden ? [backButtonHidden boolValue] : NO;
  121. if (backButtonHiddenBool)
  122. {
  123. viewController.navigationItem.hidesBackButton = YES;
  124. }
  125. NSArray *leftButtons = actionParams[@"leftButtons"];
  126. if (leftButtons)
  127. {
  128. [self setButtons:leftButtons viewController:viewController side:@"left" animated:NO];
  129. }
  130. NSArray *rightButtons = actionParams[@"rightButtons"];
  131. if (rightButtons)
  132. {
  133. [self setButtons:rightButtons viewController:viewController side:@"right" animated:NO];
  134. }
  135. NSArray *previewActions = actionParams[@"previewActions"];
  136. NSString *previewViewID = actionParams[@"previewViewID"];
  137. if (previewViewID) {
  138. if ([self.topViewController isKindOfClass:[RCCViewController class]])
  139. {
  140. RCCViewController *topViewController = ((RCCViewController*)self.topViewController);
  141. topViewController.previewController = nil;
  142. [topViewController.navigationController unregisterForPreviewingWithContext:topViewController.previewContext];
  143. viewController.previewActions = previewActions;
  144. viewController.previewCommit = actionParams[@"previewCommit"] ? [actionParams[@"previewCommit"] boolValue] : YES;
  145. NSNumber *previewHeight = actionParams[@"previewHeight"];
  146. if (previewHeight) {
  147. viewController.preferredContentSize = CGSizeMake(viewController.view.frame.size.width, [previewHeight floatValue]);
  148. }
  149. if (topViewController.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable)
  150. {
  151. dispatch_async(RCTGetUIManagerQueue(), ^{
  152. [bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
  153. UIView *view = viewRegistry[previewViewID];
  154. topViewController.previewView = view;
  155. topViewController.previewContext = [topViewController registerForPreviewingWithDelegate:(id)topViewController sourceView:view];
  156. }];
  157. });
  158. topViewController.previewController = viewController;
  159. }
  160. return;
  161. }
  162. }
  163. NSString *animationType = actionParams[@"animationType"];
  164. if ([animationType isEqualToString:@"fade"])
  165. {
  166. CATransition *transition = [CATransition animation];
  167. transition.duration = 0.25;
  168. transition.type = kCATransitionFade;
  169. [self.view.layer addAnimation:transition forKey:kCATransition];
  170. [self pushViewController:viewController animated:NO];
  171. }
  172. else
  173. {
  174. [self pushViewController:viewController animated:animated];
  175. }
  176. return;
  177. }
  178. // pop
  179. if ([performAction isEqualToString:@"pop"])
  180. {
  181. NSString *animationType = actionParams[@"animationType"];
  182. if ([animationType isEqualToString:@"fade"])
  183. {
  184. CATransition *transition = [CATransition animation];
  185. transition.duration = 0.25;
  186. transition.type = kCATransitionFade;
  187. [self.view.layer addAnimation:transition forKey:kCATransition];
  188. [self popViewControllerAnimated:NO];
  189. }
  190. else
  191. {
  192. [self popViewControllerAnimated:animated];
  193. }
  194. return;
  195. }
  196. // popToRoot
  197. if ([performAction isEqualToString:@"popToRoot"])
  198. {
  199. NSString *animationType = actionParams[@"animationType"];
  200. if ([animationType isEqualToString:@"fade"])
  201. {
  202. CATransition *transition = [CATransition animation];
  203. transition.duration = 0.25;
  204. transition.type = kCATransitionFade;
  205. [self.view.layer addAnimation:transition forKey:kCATransition];
  206. [self popToRootViewControllerAnimated:NO];
  207. }
  208. else
  209. {
  210. [self popToRootViewControllerAnimated:animated];
  211. }
  212. return;
  213. }
  214. // resetTo
  215. if ([performAction isEqualToString:@"resetTo"])
  216. {
  217. NSString *component = actionParams[@"component"];
  218. if (!component) return;
  219. NSMutableDictionary *passProps = [actionParams[@"passProps"] mutableCopy];
  220. passProps[@"commandType"] = @"resetTo";
  221. NSDictionary *navigatorStyle = actionParams[@"style"];
  222. RCCViewController *viewController = [[RCCViewController alloc] initWithComponent:component passProps:passProps navigatorStyle:navigatorStyle globalProps:nil bridge:bridge];
  223. viewController.controllerId = passProps[@"screenInstanceID"];
  224. viewController.navigationItem.hidesBackButton = YES;
  225. [self processTitleView:viewController
  226. props:actionParams
  227. style:navigatorStyle];
  228. NSArray *leftButtons = actionParams[@"leftButtons"];
  229. if (leftButtons)
  230. {
  231. [self setButtons:leftButtons viewController:viewController side:@"left" animated:NO];
  232. }
  233. NSArray *rightButtons = actionParams[@"rightButtons"];
  234. if (rightButtons)
  235. {
  236. [self setButtons:rightButtons viewController:viewController side:@"right" animated:NO];
  237. }
  238. BOOL animated = actionParams[@"animated"] ? [actionParams[@"animated"] boolValue] : YES;
  239. NSString *animationType = actionParams[@"animationType"];
  240. if ([animationType isEqualToString:@"fade"])
  241. {
  242. CATransition *transition = [CATransition animation];
  243. transition.duration = 0.25;
  244. transition.type = kCATransitionFade;
  245. [self.view.layer addAnimation:transition forKey:kCATransition];
  246. [self setViewControllers:@[viewController] animated:NO];
  247. }
  248. else
  249. {
  250. [self setViewControllers:@[viewController] animated:animated];
  251. }
  252. return;
  253. }
  254. // setButtons
  255. if ([performAction isEqualToString:@"setButtons"])
  256. {
  257. NSArray *buttons = actionParams[@"buttons"];
  258. BOOL animated = actionParams[@"animated"] ? [actionParams[@"animated"] boolValue] : YES;
  259. NSString *side = actionParams[@"side"] ? actionParams[@"side"] : @"left";
  260. [self setButtons:buttons viewController:self.topViewController side:side animated:animated];
  261. return;
  262. }
  263. // setTitle
  264. if ([performAction isEqualToString:@"setTitle"] || [performAction isEqualToString:@"setTitleImage"])
  265. {
  266. NSDictionary *navigatorStyle = actionParams[@"style"];
  267. [self processTitleView:self.topViewController
  268. props:actionParams
  269. style:navigatorStyle];
  270. return;
  271. }
  272. // toggleNavBar
  273. if ([performAction isEqualToString:@"setHidden"]) {
  274. NSNumber *animated = actionParams[@"animated"];
  275. BOOL animatedBool = animated ? [animated boolValue] : YES;
  276. NSNumber *setHidden = actionParams[@"hidden"];
  277. BOOL isHiddenBool = setHidden ? [setHidden boolValue] : NO;
  278. RCCViewController *topViewController = ((RCCViewController*)self.topViewController);
  279. topViewController.navigatorStyle[@"navBarHidden"] = setHidden;
  280. [topViewController setNavBarVisibilityChange:animatedBool];
  281. }
  282. // setStyle
  283. if ([performAction isEqualToString:@"setStyle"])
  284. {
  285. for (UIViewController *viewController in self.viewControllers) {
  286. if ([viewController isKindOfClass:[RCCViewController class]])
  287. {
  288. RCCViewController *rccViewController = (RCCViewController*)viewController;
  289. NSDictionary *navigatorStyle = [[NSDictionary alloc] initWithDictionary:actionParams copyItems:YES];
  290. NSMutableDictionary *mergedStyle = [NSMutableDictionary dictionaryWithDictionary:rccViewController.navigatorStyle];
  291. // there are a few styles that we don't want to remember from our parent (they should be local)
  292. [mergedStyle setValuesForKeysWithDictionary:navigatorStyle];
  293. navigatorStyle = mergedStyle;
  294. rccViewController.navigatorStyle = navigatorStyle;
  295. [rccViewController setStyleOnInit];
  296. [rccViewController updateStyle];
  297. }
  298. }
  299. }
  300. }
  301. -(void)onButtonPress:(UIBarButtonItem*)barButtonItem
  302. {
  303. NSString *callbackId = objc_getAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_KEY);
  304. if (!callbackId) return;
  305. NSString *buttonId = objc_getAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_ID);
  306. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:callbackId body:@
  307. {
  308. @"type": @"NavBarButtonPress",
  309. @"id": buttonId ? buttonId : [NSNull null]
  310. }];
  311. }
  312. -(void)setButtons:(NSArray*)buttons viewController:(UIViewController*)viewController side:(NSString*)side animated:(BOOL)animated
  313. {
  314. NSMutableArray *barButtonItems = [NSMutableArray new];
  315. for (NSDictionary *button in buttons)
  316. {
  317. NSString *title = button[@"title"];
  318. UIImage *iconImage = nil;
  319. id icon = button[@"icon"];
  320. if (icon) iconImage = [RCTConvert UIImage:icon];
  321. NSString *__nullable component = button[@"component"];
  322. NSString *__nullable systemItemName = button[@"systemItem"];
  323. UIBarButtonSystemItem systemItem = [RCTConvert UIBarButtonSystemItem:systemItemName];
  324. UIBarButtonItem *barButtonItem;
  325. if (iconImage)
  326. {
  327. barButtonItem = [[UIBarButtonItem alloc] initWithImage:iconImage style:UIBarButtonItemStylePlain target:self action:@selector(onButtonPress:)];
  328. }
  329. else if (title)
  330. {
  331. barButtonItem = [[UIBarButtonItem alloc] initWithTitle:title style:UIBarButtonItemStylePlain target:self action:@selector(onButtonPress:)];
  332. NSMutableDictionary *buttonTextAttributes = [RCTHelpers textAttributesFromDictionary:button withPrefix:@"button"];
  333. if (buttonTextAttributes.allKeys.count > 0) {
  334. [barButtonItem setTitleTextAttributes:buttonTextAttributes forState:UIControlStateNormal];
  335. [barButtonItem setTitleTextAttributes:buttonTextAttributes forState:UIControlStateHighlighted];
  336. }
  337. }
  338. else if (component) {
  339. RCTBridge *bridge = [[RCCManager sharedInstance] getBridge];
  340. barButtonItem = [[RCCCustomBarButtonItem alloc] initWithComponentName:component passProps:button[@"passProps"] bridge:bridge];
  341. }
  342. else if (systemItemName) {
  343. barButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:systemItem target:self action:@selector(onButtonPress:)];
  344. }
  345. else continue;
  346. objc_setAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_KEY, button[@"onPress"], OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  347. [barButtonItems addObject:barButtonItem];
  348. NSString *buttonId = button[@"id"];
  349. if (buttonId)
  350. {
  351. objc_setAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_ID, buttonId, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  352. }
  353. NSNumber *disabled = button[@"disabled"];
  354. BOOL disabledBool = disabled ? [disabled boolValue] : NO;
  355. if (disabledBool) {
  356. [barButtonItem setEnabled:NO];
  357. }
  358. NSNumber *disableIconTintString = button[@"disableIconTint"];
  359. BOOL disableIconTint = disableIconTintString ? [disableIconTintString boolValue] : NO;
  360. if (disableIconTint) {
  361. [barButtonItem setImage:[barButtonItem.image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
  362. }
  363. if ([viewController isKindOfClass:[RCCViewController class]]) {
  364. RCCViewController *rccViewController = ((RCCViewController*)viewController);
  365. NSDictionary *navigatorStyle = rccViewController.navigatorStyle;
  366. id disabledButtonColor = navigatorStyle[@"disabledButtonColor"];
  367. if (disabledButtonColor) {
  368. UIColor *color = [RCTConvert UIColor:disabledButtonColor];
  369. [barButtonItem setTitleTextAttributes:@{NSForegroundColorAttributeName : color} forState:UIControlStateDisabled];
  370. }
  371. }
  372. NSString *testID = button[@"testID"];
  373. if (testID)
  374. {
  375. barButtonItem.accessibilityIdentifier = testID;
  376. }
  377. }
  378. if ([side isEqualToString:@"left"])
  379. {
  380. [viewController.navigationItem setLeftBarButtonItems:barButtonItems animated:animated];
  381. }
  382. if ([side isEqualToString:@"right"])
  383. {
  384. [viewController.navigationItem setRightBarButtonItems:barButtonItems animated:animated];
  385. }
  386. }
  387. -(void)processTitleView:(UIViewController*)viewController
  388. props:(NSDictionary*)props
  389. style:(NSDictionary*)style
  390. {
  391. BOOL isSetSubtitleBool = props[@"isSetSubtitle"] ? [props[@"isSetSubtitle"] boolValue] : NO;
  392. RCCTitleViewHelper *titleViewHelper = [[RCCTitleViewHelper alloc] init:viewController
  393. navigationController:self
  394. title:props[@"title"]
  395. subtitle:props[@"subtitle"]
  396. titleImageData:props[@"titleImage"]
  397. isSetSubtitle:isSetSubtitleBool];
  398. [titleViewHelper setup:style];
  399. }
  400. - (UIStatusBarStyle)preferredStatusBarStyle {
  401. return [self.topViewController preferredStatusBarStyle];
  402. }
  403. - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
  404. {
  405. if(_transitioning)
  406. {
  407. NSDictionary *pushDetails =@{ @"viewController": viewController, @"animated": @(animated) };
  408. [_queuedViewControllers addObject:pushDetails];
  409. return;
  410. }
  411. _transitioning = YES;
  412. [super pushViewController:viewController animated:animated];
  413. }
  414. #pragma mark - UINavigationControllerDelegate
  415. -(void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
  416. [viewController setNeedsStatusBarAppearanceUpdate];
  417. }
  418. - (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
  419. {
  420. dispatch_async(dispatch_get_main_queue(), ^{
  421. _transitioning = NO;
  422. if ([_queuedViewControllers count] > 0) {
  423. NSDictionary *toPushDetails = [_queuedViewControllers firstObject];
  424. [_queuedViewControllers removeObjectAtIndex:0];
  425. [self pushViewController:toPushDetails[@"viewController"] animated:[toPushDetails[@"animated"] boolValue]];
  426. }
  427. });
  428. }
  429. @end