react-native-navigation的迁移库

RCCNavigationController.m 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  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 = props[@"id"];
  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. viewController.previewActions = previewActions;
  142. viewController.previewCommit = actionParams[@"previewCommit"] ? [actionParams[@"previewCommit"] boolValue] : YES;
  143. NSNumber *previewHeight = actionParams[@"previewHeight"];
  144. if (previewHeight) {
  145. viewController.preferredContentSize = CGSizeMake(viewController.view.frame.size.width, [previewHeight floatValue]);
  146. }
  147. if (topViewController.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable)
  148. {
  149. dispatch_async(RCTGetUIManagerQueue(), ^{
  150. [bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
  151. UIView *view = viewRegistry[previewViewID];
  152. topViewController.previewView = view;
  153. [topViewController registerForPreviewingWithDelegate:(id)topViewController sourceView:view];
  154. }];
  155. });
  156. topViewController.previewController = viewController;
  157. }
  158. return;
  159. }
  160. }
  161. NSString *animationType = actionParams[@"animationType"];
  162. if ([animationType isEqualToString:@"fade"])
  163. {
  164. CATransition *transition = [CATransition animation];
  165. transition.duration = 0.25;
  166. transition.type = kCATransitionFade;
  167. [self.view.layer addAnimation:transition forKey:kCATransition];
  168. [self pushViewController:viewController animated:NO];
  169. }
  170. else
  171. {
  172. [self pushViewController:viewController animated:animated];
  173. }
  174. return;
  175. }
  176. // pop
  177. if ([performAction isEqualToString:@"pop"])
  178. {
  179. NSString *animationType = actionParams[@"animationType"];
  180. if ([animationType isEqualToString:@"fade"])
  181. {
  182. CATransition *transition = [CATransition animation];
  183. transition.duration = 0.25;
  184. transition.type = kCATransitionFade;
  185. [self.view.layer addAnimation:transition forKey:kCATransition];
  186. [self popViewControllerAnimated:NO];
  187. }
  188. else
  189. {
  190. [self popViewControllerAnimated:animated];
  191. }
  192. return;
  193. }
  194. // popToRoot
  195. if ([performAction isEqualToString:@"popToRoot"])
  196. {
  197. NSString *animationType = actionParams[@"animationType"];
  198. if ([animationType isEqualToString:@"fade"])
  199. {
  200. CATransition *transition = [CATransition animation];
  201. transition.duration = 0.25;
  202. transition.type = kCATransitionFade;
  203. [self.view.layer addAnimation:transition forKey:kCATransition];
  204. [self popToRootViewControllerAnimated:NO];
  205. }
  206. else
  207. {
  208. [self popToRootViewControllerAnimated:animated];
  209. }
  210. return;
  211. }
  212. // resetTo
  213. if ([performAction isEqualToString:@"resetTo"])
  214. {
  215. NSString *component = actionParams[@"component"];
  216. if (!component) return;
  217. NSMutableDictionary *passProps = [actionParams[@"passProps"] mutableCopy];
  218. passProps[@"commantType"] = @"resetTo";
  219. NSDictionary *navigatorStyle = actionParams[@"style"];
  220. RCCViewController *viewController = [[RCCViewController alloc] initWithComponent:component passProps:passProps navigatorStyle:navigatorStyle globalProps:nil bridge:bridge];
  221. viewController.controllerId = passProps[@"screenInstanceID"];
  222. viewController.navigationItem.hidesBackButton = YES;
  223. [self processTitleView:viewController
  224. props:actionParams
  225. style:navigatorStyle];
  226. NSArray *leftButtons = actionParams[@"leftButtons"];
  227. if (leftButtons)
  228. {
  229. [self setButtons:leftButtons viewController:viewController side:@"left" animated:NO];
  230. }
  231. NSArray *rightButtons = actionParams[@"rightButtons"];
  232. if (rightButtons)
  233. {
  234. [self setButtons:rightButtons viewController:viewController side:@"right" animated:NO];
  235. }
  236. BOOL animated = actionParams[@"animated"] ? [actionParams[@"animated"] boolValue] : YES;
  237. NSString *animationType = actionParams[@"animationType"];
  238. if ([animationType isEqualToString:@"fade"])
  239. {
  240. CATransition *transition = [CATransition animation];
  241. transition.duration = 0.25;
  242. transition.type = kCATransitionFade;
  243. [self.view.layer addAnimation:transition forKey:kCATransition];
  244. [self setViewControllers:@[viewController] animated:NO];
  245. }
  246. else
  247. {
  248. [self setViewControllers:@[viewController] animated:animated];
  249. }
  250. return;
  251. }
  252. // setButtons
  253. if ([performAction isEqualToString:@"setButtons"])
  254. {
  255. NSArray *buttons = actionParams[@"buttons"];
  256. BOOL animated = actionParams[@"animated"] ? [actionParams[@"animated"] boolValue] : YES;
  257. NSString *side = actionParams[@"side"] ? actionParams[@"side"] : @"left";
  258. [self setButtons:buttons viewController:self.topViewController side:side animated:animated];
  259. return;
  260. }
  261. // setTitle
  262. if ([performAction isEqualToString:@"setTitle"] || [performAction isEqualToString:@"setTitleImage"])
  263. {
  264. NSDictionary *navigatorStyle = actionParams[@"style"];
  265. [self processTitleView:self.topViewController
  266. props:actionParams
  267. style:navigatorStyle];
  268. return;
  269. }
  270. // toggleNavBar
  271. if ([performAction isEqualToString:@"setHidden"]) {
  272. NSNumber *animated = actionParams[@"animated"];
  273. BOOL animatedBool = animated ? [animated boolValue] : YES;
  274. NSNumber *setHidden = actionParams[@"hidden"];
  275. BOOL isHiddenBool = setHidden ? [setHidden boolValue] : NO;
  276. RCCViewController *topViewController = ((RCCViewController*)self.topViewController);
  277. topViewController.navigatorStyle[@"navBarHidden"] = setHidden;
  278. [topViewController setNavBarVisibilityChange:animatedBool];
  279. }
  280. // setStyle
  281. if ([performAction isEqualToString:@"setStyle"])
  282. {
  283. for (UIViewController *viewController in self.viewControllers) {
  284. if ([viewController isKindOfClass:[RCCViewController class]])
  285. {
  286. RCCViewController *rccViewController = (RCCViewController*)viewController;
  287. NSDictionary *navigatorStyle = [[NSDictionary alloc] initWithDictionary:actionParams copyItems:YES];
  288. NSMutableDictionary *mergedStyle = [NSMutableDictionary dictionaryWithDictionary:rccViewController.navigatorStyle];
  289. // there are a few styles that we don't want to remember from our parent (they should be local)
  290. [mergedStyle setValuesForKeysWithDictionary:navigatorStyle];
  291. navigatorStyle = mergedStyle;
  292. rccViewController.navigatorStyle = navigatorStyle;
  293. [rccViewController setStyleOnInit];
  294. [rccViewController updateStyle];
  295. }
  296. }
  297. }
  298. }
  299. -(void)onButtonPress:(UIBarButtonItem*)barButtonItem
  300. {
  301. NSString *callbackId = objc_getAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_KEY);
  302. if (!callbackId) return;
  303. NSString *buttonId = objc_getAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_ID);
  304. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:callbackId body:@
  305. {
  306. @"type": @"NavBarButtonPress",
  307. @"id": buttonId ? buttonId : [NSNull null]
  308. }];
  309. }
  310. -(void)setButtons:(NSArray*)buttons viewController:(UIViewController*)viewController side:(NSString*)side animated:(BOOL)animated
  311. {
  312. NSMutableArray *barButtonItems = [NSMutableArray new];
  313. for (NSDictionary *button in buttons)
  314. {
  315. NSString *title = button[@"title"];
  316. UIImage *iconImage = nil;
  317. id icon = button[@"icon"];
  318. if (icon) iconImage = [RCTConvert UIImage:icon];
  319. NSString *__nullable component = button[@"component"];
  320. NSString *__nullable systemItemName = button[@"systemItem"];
  321. UIBarButtonSystemItem systemItem = [RCTConvert UIBarButtonSystemItem:systemItemName];
  322. UIBarButtonItem *barButtonItem;
  323. if (iconImage)
  324. {
  325. barButtonItem = [[UIBarButtonItem alloc] initWithImage:iconImage style:UIBarButtonItemStylePlain target:self action:@selector(onButtonPress:)];
  326. }
  327. else if (title)
  328. {
  329. barButtonItem = [[UIBarButtonItem alloc] initWithTitle:title style:UIBarButtonItemStylePlain target:self action:@selector(onButtonPress:)];
  330. NSMutableDictionary *buttonTextAttributes = [RCTHelpers textAttributesFromDictionary:button withPrefix:@"button"];
  331. if (buttonTextAttributes.allKeys.count > 0) {
  332. [barButtonItem setTitleTextAttributes:buttonTextAttributes forState:UIControlStateNormal];
  333. }
  334. }
  335. else if (component) {
  336. RCTBridge *bridge = [[RCCManager sharedInstance] getBridge];
  337. barButtonItem = [[RCCCustomBarButtonItem alloc] initWithComponentName:component passProps:button[@"passProps"] bridge:bridge];
  338. }
  339. else if (systemItemName) {
  340. barButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:systemItem target:self action:@selector(onButtonPress:)];
  341. }
  342. else continue;
  343. objc_setAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_KEY, button[@"onPress"], OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  344. [barButtonItems addObject:barButtonItem];
  345. NSString *buttonId = button[@"id"];
  346. if (buttonId)
  347. {
  348. objc_setAssociatedObject(barButtonItem, &CALLBACK_ASSOCIATED_ID, buttonId, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  349. }
  350. NSNumber *disabled = button[@"disabled"];
  351. BOOL disabledBool = disabled ? [disabled boolValue] : NO;
  352. if (disabledBool) {
  353. [barButtonItem setEnabled:NO];
  354. }
  355. NSNumber *disableIconTintString = button[@"disableIconTint"];
  356. BOOL disableIconTint = disableIconTintString ? [disableIconTintString boolValue] : NO;
  357. if (disableIconTint) {
  358. [barButtonItem setImage:[barButtonItem.image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
  359. }
  360. if ([viewController isKindOfClass:[RCCViewController class]]) {
  361. RCCViewController *rccViewController = ((RCCViewController*)viewController);
  362. NSDictionary *navigatorStyle = rccViewController.navigatorStyle;
  363. id disabledButtonColor = navigatorStyle[@"disabledButtonColor"];
  364. if (disabledButtonColor) {
  365. UIColor *color = [RCTConvert UIColor:disabledButtonColor];
  366. [barButtonItem setTitleTextAttributes:@{NSForegroundColorAttributeName : color} forState:UIControlStateDisabled];
  367. }
  368. }
  369. NSString *testID = button[@"testID"];
  370. if (testID)
  371. {
  372. barButtonItem.accessibilityIdentifier = testID;
  373. }
  374. }
  375. if ([side isEqualToString:@"left"])
  376. {
  377. [viewController.navigationItem setLeftBarButtonItems:barButtonItems animated:animated];
  378. }
  379. if ([side isEqualToString:@"right"])
  380. {
  381. [viewController.navigationItem setRightBarButtonItems:barButtonItems animated:animated];
  382. }
  383. }
  384. -(void)processTitleView:(UIViewController*)viewController
  385. props:(NSDictionary*)props
  386. style:(NSDictionary*)style
  387. {
  388. BOOL isSetSubtitleBool = props[@"isSetSubtitle"] ? [props[@"isSetSubtitle"] boolValue] : NO;
  389. RCCTitleViewHelper *titleViewHelper = [[RCCTitleViewHelper alloc] init:viewController
  390. navigationController:self
  391. title:props[@"title"]
  392. subtitle:props[@"subtitle"]
  393. titleImageData:props[@"titleImage"]
  394. isSetSubtitle:isSetSubtitleBool];
  395. [titleViewHelper setup:style];
  396. }
  397. - (UIStatusBarStyle)preferredStatusBarStyle {
  398. return [self.topViewController preferredStatusBarStyle];
  399. }
  400. - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
  401. {
  402. if(_transitioning)
  403. {
  404. NSDictionary *pushDetails =@{ @"viewController": viewController, @"animated": @(animated) };
  405. [_queuedViewControllers addObject:pushDetails];
  406. return;
  407. }
  408. _transitioning = YES;
  409. [super pushViewController:viewController animated:animated];
  410. }
  411. #pragma mark - UINavigationControllerDelegate
  412. -(void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
  413. [viewController setNeedsStatusBarAppearanceUpdate];
  414. }
  415. - (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
  416. {
  417. dispatch_async(dispatch_get_main_queue(), ^{
  418. _transitioning = NO;
  419. if ([_queuedViewControllers count] > 0) {
  420. NSDictionary *toPushDetails = [_queuedViewControllers firstObject];
  421. [_queuedViewControllers removeObjectAtIndex:0];
  422. [self pushViewController:toPushDetails[@"viewController"] animated:[toPushDetails[@"animated"] boolValue]];
  423. }
  424. });
  425. }
  426. @end