react-native-navigation的迁移库

RCCTabBarController.m 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. #import "RCCTabBarController.h"
  2. #import "RCCViewController.h"
  3. #import <React/RCTConvert.h>
  4. #import "RCCManager.h"
  5. #import "RCTHelpers.h"
  6. #import <React/RCTUIManager.h>
  7. #import "UIViewController+Rotation.h"
  8. @interface RCTUIManager ()
  9. - (void)configureNextLayoutAnimation:(NSDictionary *)config
  10. withCallback:(RCTResponseSenderBlock)callback
  11. errorCallback:(__unused RCTResponseSenderBlock)errorCallback;
  12. @end
  13. @implementation RCCTabBarController
  14. -(UIInterfaceOrientationMask)supportedInterfaceOrientations {
  15. return [self supportedControllerOrientations];
  16. }
  17. - (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {
  18. id queue = [[RCCManager sharedInstance].getBridge uiManager].methodQueue;
  19. dispatch_async(queue, ^{
  20. [[[RCCManager sharedInstance].getBridge uiManager] configureNextLayoutAnimation:nil withCallback:^(NSArray* arr){} errorCallback:^(NSArray* arr){}];
  21. });
  22. if (tabBarController.selectedIndex != [tabBarController.viewControllers indexOfObject:viewController]) {
  23. NSDictionary *body = @{
  24. @"selectedTabIndex": @([tabBarController.viewControllers indexOfObject:viewController]),
  25. @"unselectedTabIndex": @(tabBarController.selectedIndex)
  26. };
  27. [RCCTabBarController sendScreenTabChangedEvent:viewController body:body];
  28. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:@"bottomTabSelected" body:body];
  29. } else {
  30. [RCCTabBarController sendScreenTabPressedEvent:viewController body:nil];
  31. }
  32. return YES;
  33. }
  34. - (UIImage *)image:(UIImage*)image withColor:(UIColor *)color1
  35. {
  36. UIGraphicsBeginImageContextWithOptions(image.size, NO, image.scale);
  37. CGContextRef context = UIGraphicsGetCurrentContext();
  38. CGContextTranslateCTM(context, 0, image.size.height);
  39. CGContextScaleCTM(context, 1.0, -1.0);
  40. CGContextSetBlendMode(context, kCGBlendModeNormal);
  41. CGRect rect = CGRectMake(0, 0, image.size.width, image.size.height);
  42. CGContextClipToMask(context, rect, image.CGImage);
  43. [color1 setFill];
  44. CGContextFillRect(context, rect);
  45. UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
  46. UIGraphicsEndImageContext();
  47. return newImage;
  48. }
  49. - (instancetype)initWithProps:(NSDictionary *)props children:(NSArray *)children globalProps:(NSDictionary*)globalProps bridge:(RCTBridge *)bridge
  50. {
  51. self = [super init];
  52. if (!self) return nil;
  53. self.delegate = self;
  54. self.tabBar.translucent = YES; // default
  55. UIColor *buttonColor = nil;
  56. UIColor *selectedButtonColor = nil;
  57. NSDictionary *tabsStyle = props[@"style"];
  58. if (tabsStyle)
  59. {
  60. NSString *tabBarButtonColor = tabsStyle[@"tabBarButtonColor"];
  61. if (tabBarButtonColor)
  62. {
  63. UIColor *color = tabBarButtonColor != (id)[NSNull null] ? [RCTConvert UIColor:tabBarButtonColor] : nil;
  64. self.tabBar.tintColor = color;
  65. buttonColor = color;
  66. selectedButtonColor = color;
  67. }
  68. NSString *tabBarSelectedButtonColor = tabsStyle[@"tabBarSelectedButtonColor"];
  69. if (tabBarSelectedButtonColor)
  70. {
  71. UIColor *color = tabBarSelectedButtonColor != (id)[NSNull null] ? [RCTConvert UIColor:tabBarSelectedButtonColor] : nil;
  72. self.tabBar.tintColor = color;
  73. selectedButtonColor = color;
  74. }
  75. NSString *tabBarBackgroundColor = tabsStyle[@"tabBarBackgroundColor"];
  76. if (tabBarBackgroundColor)
  77. {
  78. UIColor *color = tabBarBackgroundColor != (id)[NSNull null] ? [RCTConvert UIColor:tabBarBackgroundColor] : nil;
  79. self.tabBar.barTintColor = color;
  80. }
  81. NSString *tabBarTranslucent = tabsStyle[@"tabBarTranslucent"];
  82. if (tabBarTranslucent)
  83. {
  84. self.tabBar.translucent = [tabBarTranslucent boolValue] ? YES : NO;
  85. }
  86. NSString *tabBarHideShadow = tabsStyle[@"tabBarHideShadow"];
  87. if (tabBarHideShadow)
  88. {
  89. self.tabBar.clipsToBounds = [tabBarHideShadow boolValue] ? YES : NO;
  90. }
  91. }
  92. NSMutableArray *viewControllers = [NSMutableArray array];
  93. // go over all the tab bar items
  94. for (NSDictionary *tabItemLayout in children)
  95. {
  96. // make sure the layout is valid
  97. if (![tabItemLayout[@"type"] isEqualToString:@"TabBarControllerIOS.Item"]) continue;
  98. if (!tabItemLayout[@"props"]) continue;
  99. // get the view controller inside
  100. if (!tabItemLayout[@"children"]) continue;
  101. if (![tabItemLayout[@"children"] isKindOfClass:[NSArray class]]) continue;
  102. if ([tabItemLayout[@"children"] count] < 1) continue;
  103. NSDictionary *childLayout = tabItemLayout[@"children"][0];
  104. UIViewController *viewController = [RCCViewController controllerWithLayout:childLayout globalProps:globalProps bridge:bridge];
  105. if (!viewController) continue;
  106. // create the tab icon and title
  107. NSString *title = tabItemLayout[@"props"][@"title"];
  108. UIImage *iconImage = nil;
  109. id icon = tabItemLayout[@"props"][@"icon"];
  110. if (icon)
  111. {
  112. iconImage = [RCTConvert UIImage:icon];
  113. if (buttonColor)
  114. {
  115. iconImage = [[self image:iconImage withColor:buttonColor] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
  116. }
  117. }
  118. UIImage *iconImageSelected = nil;
  119. id selectedIcon = tabItemLayout[@"props"][@"selectedIcon"];
  120. if (selectedIcon) {
  121. iconImageSelected = [RCTConvert UIImage:selectedIcon];
  122. } else {
  123. iconImageSelected = [RCTConvert UIImage:icon];
  124. }
  125. viewController.tabBarItem = [[UITabBarItem alloc] initWithTitle:title image:iconImage tag:0];
  126. viewController.tabBarItem.accessibilityIdentifier = tabItemLayout[@"props"][@"testID"];
  127. viewController.tabBarItem.selectedImage = iconImageSelected;
  128. id imageInsets = tabItemLayout[@"props"][@"iconInsets"];
  129. if (imageInsets && imageInsets != (id)[NSNull null])
  130. {
  131. id topInset = imageInsets[@"top"];
  132. id leftInset = imageInsets[@"left"];
  133. id bottomInset = imageInsets[@"bottom"];
  134. id rightInset = imageInsets[@"right"];
  135. CGFloat top = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:topInset] : 0;
  136. CGFloat left = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:leftInset] : 0;
  137. CGFloat bottom = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:bottomInset] : 0;
  138. CGFloat right = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:rightInset] : 0;
  139. viewController.tabBarItem.imageInsets = UIEdgeInsetsMake(top, left, bottom, right);
  140. }
  141. NSMutableDictionary *unselectedAttributes = [RCTHelpers textAttributesFromDictionary:tabsStyle withPrefix:@"tabBarText" baseFont:[UIFont systemFontOfSize:10]];
  142. if (!unselectedAttributes[NSForegroundColorAttributeName] && buttonColor) {
  143. unselectedAttributes[NSForegroundColorAttributeName] = buttonColor;
  144. }
  145. [viewController.tabBarItem setTitleTextAttributes:unselectedAttributes forState:UIControlStateNormal]
  146. ;
  147. NSMutableDictionary *selectedAttributes = [RCTHelpers textAttributesFromDictionary:tabsStyle withPrefix:@"tabBarSelectedText" baseFont:[UIFont systemFontOfSize:10]];
  148. if (!selectedAttributes[NSForegroundColorAttributeName] && selectedButtonColor) {
  149. selectedAttributes[NSForegroundColorAttributeName] = selectedButtonColor;
  150. }
  151. [viewController.tabBarItem setTitleTextAttributes:selectedAttributes forState:UIControlStateSelected];
  152. // create badge
  153. NSObject *badge = tabItemLayout[@"props"][@"badge"];
  154. if (badge == nil || [badge isEqual:[NSNull null]])
  155. {
  156. viewController.tabBarItem.badgeValue = nil;
  157. }
  158. else
  159. {
  160. viewController.tabBarItem.badgeValue = [NSString stringWithFormat:@"%@", badge];
  161. }
  162. [viewControllers addObject:viewController];
  163. }
  164. // replace the tabs
  165. self.viewControllers = viewControllers;
  166. [self setRotation:props];
  167. return self;
  168. }
  169. - (void)performAction:(NSString*)performAction actionParams:(NSDictionary*)actionParams bridge:(RCTBridge *)bridge completion:(void (^)(void))completion
  170. {
  171. if ([performAction isEqualToString:@"setBadge"])
  172. {
  173. UIViewController *viewController = nil;
  174. NSNumber *tabIndex = actionParams[@"tabIndex"];
  175. if (tabIndex)
  176. {
  177. int i = (int)[tabIndex integerValue];
  178. if ([self.viewControllers count] > i)
  179. {
  180. viewController = [self.viewControllers objectAtIndex:i];
  181. }
  182. }
  183. NSString *contentId = actionParams[@"contentId"];
  184. NSString *contentType = actionParams[@"contentType"];
  185. if (contentId && contentType)
  186. {
  187. viewController = [[RCCManager sharedInstance] getControllerWithId:contentId componentType:contentType];
  188. }
  189. if (viewController)
  190. {
  191. NSObject *badge = actionParams[@"badge"];
  192. if (badge == nil || [badge isEqual:[NSNull null]])
  193. {
  194. viewController.tabBarItem.badgeValue = nil;
  195. }
  196. else
  197. {
  198. viewController.tabBarItem.badgeValue = [NSString stringWithFormat:@"%@", badge];
  199. }
  200. }
  201. }
  202. if ([performAction isEqualToString:@"switchTo"])
  203. {
  204. UIViewController *viewController = nil;
  205. NSNumber *tabIndex = actionParams[@"tabIndex"];
  206. if (tabIndex)
  207. {
  208. int i = (int)[tabIndex integerValue];
  209. if ([self.viewControllers count] > i)
  210. {
  211. viewController = [self.viewControllers objectAtIndex:i];
  212. }
  213. }
  214. NSString *contentId = actionParams[@"contentId"];
  215. NSString *contentType = actionParams[@"contentType"];
  216. if (contentId && contentType)
  217. {
  218. viewController = [[RCCManager sharedInstance] getControllerWithId:contentId componentType:contentType];
  219. }
  220. if (viewController)
  221. {
  222. [self setSelectedViewController:viewController];
  223. }
  224. }
  225. if ([performAction isEqualToString:@"setTabButton"])
  226. {
  227. UIViewController *viewController = nil;
  228. NSNumber *tabIndex = actionParams[@"tabIndex"];
  229. if (tabIndex)
  230. {
  231. int i = (int)[tabIndex integerValue];
  232. if ([self.viewControllers count] > i)
  233. {
  234. viewController = [self.viewControllers objectAtIndex:i];
  235. }
  236. }
  237. NSString *contentId = actionParams[@"contentId"];
  238. NSString *contentType = actionParams[@"contentType"];
  239. if (contentId && contentType)
  240. {
  241. viewController = [[RCCManager sharedInstance] getControllerWithId:contentId componentType:contentType];
  242. }
  243. if (viewController)
  244. {
  245. UIImage *iconImage = nil;
  246. id icon = actionParams[@"icon"];
  247. if (icon && icon != (id)[NSNull null])
  248. {
  249. iconImage = [RCTConvert UIImage:icon];
  250. iconImage = [[self image:iconImage withColor:self.tabBar.tintColor] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
  251. viewController.tabBarItem.image = iconImage;
  252. }
  253. UIImage *iconImageSelected = nil;
  254. id selectedIcon = actionParams[@"selectedIcon"];
  255. if (selectedIcon && selectedIcon != (id)[NSNull null])
  256. {
  257. iconImageSelected = [RCTConvert UIImage:selectedIcon];
  258. viewController.tabBarItem.selectedImage = iconImageSelected;
  259. }
  260. }
  261. }
  262. if ([performAction isEqualToString:@"setTabBarHidden"])
  263. {
  264. BOOL hidden = [actionParams[@"hidden"] boolValue];
  265. [UIView animateWithDuration: ([actionParams[@"animated"] boolValue] ? 0.45 : 0)
  266. delay: 0
  267. usingSpringWithDamping: 0.75
  268. initialSpringVelocity: 0
  269. options: (hidden ? UIViewAnimationOptionCurveEaseIn : UIViewAnimationOptionCurveEaseOut)
  270. animations:^()
  271. {
  272. self.tabBar.transform = hidden ? CGAffineTransformMakeTranslation(0, self.tabBar.frame.size.height) : CGAffineTransformIdentity;
  273. }
  274. completion:^(BOOL finished)
  275. {
  276. if (completion != nil)
  277. {
  278. completion();
  279. }
  280. }];
  281. return;
  282. }
  283. else if (completion != nil)
  284. {
  285. completion();
  286. }
  287. }
  288. +(void)sendScreenTabChangedEvent:(UIViewController*)viewController body:(NSDictionary*)body{
  289. [RCCTabBarController sendTabEvent:@"bottomTabSelected" controller:viewController body:body];
  290. }
  291. +(void)sendScreenTabPressedEvent:(UIViewController*)viewController body:(NSDictionary*)body{
  292. [RCCTabBarController sendTabEvent:@"bottomTabReselected" controller:viewController body:body];
  293. }
  294. +(void)sendTabEvent:(NSString *)event controller:(UIViewController*)viewController body:(NSDictionary*)body{
  295. if ([viewController.view isKindOfClass:[RCTRootView class]]){
  296. RCTRootView *rootView = (RCTRootView *)viewController.view;
  297. if (rootView.appProperties && rootView.appProperties[@"navigatorEventID"]) {
  298. NSString *navigatorID = rootView.appProperties[@"navigatorID"];
  299. NSString *screenInstanceID = rootView.appProperties[@"screenInstanceID"];
  300. NSMutableDictionary *screenDict = [NSMutableDictionary dictionaryWithDictionary:@
  301. {
  302. @"id": event,
  303. @"navigatorID": navigatorID,
  304. @"screenInstanceID": screenInstanceID
  305. }];
  306. if (body) {
  307. [screenDict addEntriesFromDictionary:body];
  308. }
  309. [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:rootView.appProperties[@"navigatorEventID"] body:screenDict];
  310. }
  311. }
  312. if ([viewController isKindOfClass:[UINavigationController class]]) {
  313. UINavigationController *navigationController = (UINavigationController*)viewController;
  314. UIViewController *topViewController = [navigationController topViewController];
  315. [RCCTabBarController sendTabEvent:event controller:topViewController body:body];
  316. }
  317. }
  318. @end