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. NSDictionary *navigatorStyle = actionParams;
  286. // merge the navigatorStyle of our parent
  287. if ([self.topViewController isKindOfClass:[RCCViewController class]])
  288. {
  289. RCCViewController *parent = (RCCViewController*)self.topViewController;
  290. NSMutableDictionary *mergedStyle = [NSMutableDictionary dictionaryWithDictionary:parent.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. parent.navigatorStyle = navigatorStyle;
  295. [parent setStyleOnInit];
  296. [parent updateStyle];
  297. }
  298. }
  299. }
  300. -(void)onButtonPress:(UIBarButtonItem*)barButtonItem
  301. {
  302. NSString *callbackId = objc_getAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_KEY);
  303. if (!callbackId) return;
  304. NSString *buttonId = objc_getAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_ID);
  305. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:callbackId body:@
  306. {
  307. @"type": @"NavBarButtonPress",
  308. @"id": buttonId ? buttonId : [NSNull null]
  309. }];
  310. }
  311. -(void)setButtons:(NSArray*)buttons viewController:(UIViewController*)viewController side:(NSString*)side animated:(BOOL)animated
  312. {
  313. NSMutableArray *barButtonItems = [NSMutableArray new];
  314. for (NSDictionary *button in buttons)
  315. {
  316. NSString *title = button[@"title"];
  317. UIImage *iconImage = nil;
  318. id icon = button[@"icon"];
  319. if (icon) iconImage = [RCTConvert UIImage:icon];
  320. NSString *__nullable component = button[@"component"];
  321. NSString *__nullable systemItemName = button[@"systemItem"];
  322. UIBarButtonSystemItem systemItem = [RCTConvert UIBarButtonSystemItem:systemItemName];
  323. UIBarButtonItem *barButtonItem;
  324. if (iconImage)
  325. {
  326. barButtonItem = [[UIBarButtonItem alloc] initWithImage:iconImage style:UIBarButtonItemStylePlain target:self action:@selector(onButtonPress:)];
  327. }
  328. else if (title)
  329. {
  330. barButtonItem = [[UIBarButtonItem alloc] initWithTitle:title style:UIBarButtonItemStylePlain target:self action:@selector(onButtonPress:)];
  331. NSMutableDictionary *buttonTextAttributes = [RCTHelpers textAttributesFromDictionary:button withPrefix:@"button"];
  332. if (buttonTextAttributes.allKeys.count > 0) {
  333. [barButtonItem setTitleTextAttributes:buttonTextAttributes forState:UIControlStateNormal];
  334. [barButtonItem setTitleTextAttributes:buttonTextAttributes forState:UIControlStateHighlighted];
  335. }
  336. }
  337. else if (component) {
  338. RCTBridge *bridge = [[RCCManager sharedInstance] getBridge];
  339. barButtonItem = [[RCCCustomBarButtonItem alloc] initWithComponentName:component passProps:button[@"passProps"] bridge:bridge];
  340. }
  341. else if (systemItemName) {
  342. barButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:systemItem target:self action:@selector(onButtonPress:)];
  343. }
  344. else continue;
  345. objc_setAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_KEY, button[@"onPress"], OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  346. [barButtonItems addObject:barButtonItem];
  347. NSString *buttonId = button[@"id"];
  348. if (buttonId)
  349. {
  350. objc_setAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_ID, buttonId, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  351. }
  352. NSNumber *disabled = button[@"disabled"];
  353. BOOL disabledBool = disabled ? [disabled boolValue] : NO;
  354. if (disabledBool) {
  355. [barButtonItem setEnabled:NO];
  356. }
  357. NSNumber *disableIconTintString = button[@"disableIconTint"];
  358. BOOL disableIconTint = disableIconTintString ? [disableIconTintString boolValue] : NO;
  359. if (disableIconTint) {
  360. [barButtonItem setImage:[barButtonItem.image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
  361. }
  362. if ([viewController isKindOfClass:[RCCViewController class]]) {
  363. RCCViewController *rccViewController = ((RCCViewController*)viewController);
  364. NSDictionary *navigatorStyle = rccViewController.navigatorStyle;
  365. id disabledButtonColor = navigatorStyle[@"disabledButtonColor"];
  366. if (disabledButtonColor) {
  367. UIColor *color = [RCTConvert UIColor:disabledButtonColor];
  368. [barButtonItem setTitleTextAttributes:@{NSForegroundColorAttributeName : color} forState:UIControlStateDisabled];
  369. }
  370. }
  371. NSString *testID = button[@"testID"];
  372. if (testID)
  373. {
  374. barButtonItem.accessibilityIdentifier = testID;
  375. }
  376. }
  377. if ([side isEqualToString:@"left"])
  378. {
  379. [viewController.navigationItem setLeftBarButtonItems:barButtonItems animated:animated];
  380. }
  381. if ([side isEqualToString:@"right"])
  382. {
  383. [viewController.navigationItem setRightBarButtonItems:barButtonItems animated:animated];
  384. }
  385. }
  386. -(void)processTitleView:(UIViewController*)viewController
  387. props:(NSDictionary*)props
  388. style:(NSDictionary*)style
  389. {
  390. BOOL isSetSubtitleBool = props[@"isSetSubtitle"] ? [props[@"isSetSubtitle"] boolValue] : NO;
  391. RCCTitleViewHelper *titleViewHelper = [[RCCTitleViewHelper alloc] init:viewController
  392. navigationController:self
  393. title:props[@"title"]
  394. subtitle:props[@"subtitle"]
  395. titleImageData:props[@"titleImage"]
  396. isSetSubtitle:isSetSubtitleBool];
  397. [titleViewHelper setup:style];
  398. }
  399. - (UIStatusBarStyle)preferredStatusBarStyle {
  400. return [self.topViewController preferredStatusBarStyle];
  401. }
  402. - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
  403. {
  404. if(_transitioning)
  405. {
  406. NSDictionary *pushDetails =@{ @"viewController": viewController, @"animated": @(animated) };
  407. [_queuedViewControllers addObject:pushDetails];
  408. return;
  409. }
  410. _transitioning = YES;
  411. [super pushViewController:viewController animated:animated];
  412. }
  413. #pragma mark - UINavigationControllerDelegate
  414. -(void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
  415. [viewController setNeedsStatusBarAppearanceUpdate];
  416. }
  417. - (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
  418. {
  419. dispatch_async(dispatch_get_main_queue(), ^{
  420. _transitioning = NO;
  421. if ([_queuedViewControllers count] > 0) {
  422. NSDictionary *toPushDetails = [_queuedViewControllers firstObject];
  423. [_queuedViewControllers removeObjectAtIndex:0];
  424. [self pushViewController:toPushDetails[@"viewController"] animated:[toPushDetails[@"animated"] boolValue]];
  425. }
  426. });
  427. }
  428. @end