123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- #import "RCCTabBarController.h"
- #import "RCCViewController.h"
- #import <React/RCTConvert.h>
- #import "RCCManager.h"
- #import "RCTHelpers.h"
- #import <React/RCTUIManager.h>
- #import "UIViewController+Rotation.h"
-
- @interface RCTUIManager ()
-
- - (void)configureNextLayoutAnimation:(NSDictionary *)config
- withCallback:(RCTResponseSenderBlock)callback
- errorCallback:(__unused RCTResponseSenderBlock)errorCallback;
-
- @end
-
- @implementation RCCTabBarController
-
-
- -(UIInterfaceOrientationMask)supportedInterfaceOrientations {
- return [self supportedControllerOrientations];
- }
-
- - (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {
- id queue = [[RCCManager sharedInstance].getBridge uiManager].methodQueue;
- dispatch_async(queue, ^{
- [[[RCCManager sharedInstance].getBridge uiManager] configureNextLayoutAnimation:nil withCallback:^(NSArray* arr){} errorCallback:^(NSArray* arr){}];
- });
-
- if (tabBarController.selectedIndex != [tabBarController.viewControllers indexOfObject:viewController]) {
- NSDictionary *body = @{
- @"selectedTabIndex": @([tabBarController.viewControllers indexOfObject:viewController]),
- @"unselectedTabIndex": @(tabBarController.selectedIndex)
- };
- [RCCTabBarController sendScreenTabChangedEvent:viewController body:body];
-
- [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:@"bottomTabSelected" body:body];
- } else {
- [RCCTabBarController sendScreenTabPressedEvent:viewController body:nil];
- }
-
-
-
- return YES;
- }
-
- - (UIImage *)image:(UIImage*)image withColor:(UIColor *)color1
- {
- UIGraphicsBeginImageContextWithOptions(image.size, NO, image.scale);
- CGContextRef context = UIGraphicsGetCurrentContext();
- CGContextTranslateCTM(context, 0, image.size.height);
- CGContextScaleCTM(context, 1.0, -1.0);
- CGContextSetBlendMode(context, kCGBlendModeNormal);
- CGRect rect = CGRectMake(0, 0, image.size.width, image.size.height);
- CGContextClipToMask(context, rect, image.CGImage);
- [color1 setFill];
- CGContextFillRect(context, rect);
- UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
- UIGraphicsEndImageContext();
- return newImage;
- }
-
- - (instancetype)initWithProps:(NSDictionary *)props children:(NSArray *)children globalProps:(NSDictionary*)globalProps bridge:(RCTBridge *)bridge
- {
- self = [super init];
- if (!self) return nil;
-
- self.delegate = self;
-
- self.tabBar.translucent = YES; // default
-
- UIColor *buttonColor = nil;
- UIColor *selectedButtonColor = nil;
- NSDictionary *tabsStyle = props[@"style"];
- if (tabsStyle)
- {
- NSString *tabBarButtonColor = tabsStyle[@"tabBarButtonColor"];
- if (tabBarButtonColor)
- {
- UIColor *color = tabBarButtonColor != (id)[NSNull null] ? [RCTConvert UIColor:tabBarButtonColor] : nil;
- self.tabBar.tintColor = color;
- buttonColor = color;
- selectedButtonColor = color;
- }
-
- NSString *tabBarSelectedButtonColor = tabsStyle[@"tabBarSelectedButtonColor"];
- if (tabBarSelectedButtonColor)
- {
- UIColor *color = tabBarSelectedButtonColor != (id)[NSNull null] ? [RCTConvert UIColor:tabBarSelectedButtonColor] : nil;
- self.tabBar.tintColor = color;
- selectedButtonColor = color;
- }
-
- NSString *tabBarBackgroundColor = tabsStyle[@"tabBarBackgroundColor"];
- if (tabBarBackgroundColor)
- {
- UIColor *color = tabBarBackgroundColor != (id)[NSNull null] ? [RCTConvert UIColor:tabBarBackgroundColor] : nil;
- self.tabBar.barTintColor = color;
- }
-
- NSString *tabBarTranslucent = tabsStyle[@"tabBarTranslucent"];
- if (tabBarTranslucent)
- {
- self.tabBar.translucent = [tabBarTranslucent boolValue] ? YES : NO;
- }
- }
-
- NSMutableArray *viewControllers = [NSMutableArray array];
-
- // go over all the tab bar items
- for (NSDictionary *tabItemLayout in children)
- {
- // make sure the layout is valid
- if (![tabItemLayout[@"type"] isEqualToString:@"TabBarControllerIOS.Item"]) continue;
- if (!tabItemLayout[@"props"]) continue;
-
- // get the view controller inside
- if (!tabItemLayout[@"children"]) continue;
- if (![tabItemLayout[@"children"] isKindOfClass:[NSArray class]]) continue;
- if ([tabItemLayout[@"children"] count] < 1) continue;
- NSDictionary *childLayout = tabItemLayout[@"children"][0];
- UIViewController *viewController = [RCCViewController controllerWithLayout:childLayout globalProps:globalProps bridge:bridge];
- if (!viewController) continue;
-
- // create the tab icon and title
- NSString *title = tabItemLayout[@"props"][@"title"];
- UIImage *iconImage = nil;
- id icon = tabItemLayout[@"props"][@"icon"];
- if (icon)
- {
- iconImage = [RCTConvert UIImage:icon];
- if (buttonColor)
- {
- iconImage = [[self image:iconImage withColor:buttonColor] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
- }
- }
- UIImage *iconImageSelected = nil;
- id selectedIcon = tabItemLayout[@"props"][@"selectedIcon"];
- if (selectedIcon) {
- iconImageSelected = [RCTConvert UIImage:selectedIcon];
- } else {
- iconImageSelected = [RCTConvert UIImage:icon];
- }
-
- viewController.tabBarItem = [[UITabBarItem alloc] initWithTitle:title image:iconImage tag:0];
- viewController.tabBarItem.accessibilityIdentifier = tabItemLayout[@"props"][@"testID"];
- viewController.tabBarItem.selectedImage = iconImageSelected;
-
- id imageInsets = tabItemLayout[@"props"][@"iconInsets"];
- if (imageInsets && imageInsets != (id)[NSNull null])
- {
- id topInset = imageInsets[@"top"];
- id leftInset = imageInsets[@"left"];
- id bottomInset = imageInsets[@"bottom"];
- id rightInset = imageInsets[@"right"];
-
- CGFloat top = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:topInset] : 0;
- CGFloat left = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:leftInset] : 0;
- CGFloat bottom = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:bottomInset] : 0;
- CGFloat right = topInset != (id)[NSNull null] ? [RCTConvert CGFloat:rightInset] : 0;
-
- viewController.tabBarItem.imageInsets = UIEdgeInsetsMake(top, left, bottom, right);
- }
-
- NSMutableDictionary *unselectedAttributes = [RCTHelpers textAttributesFromDictionary:tabsStyle withPrefix:@"tabBarText" baseFont:[UIFont systemFontOfSize:10]];
- if (!unselectedAttributes[NSForegroundColorAttributeName] && buttonColor) {
- unselectedAttributes[NSForegroundColorAttributeName] = buttonColor;
- }
-
- [viewController.tabBarItem setTitleTextAttributes:unselectedAttributes forState:UIControlStateNormal]
- ;
-
- NSMutableDictionary *selectedAttributes = [RCTHelpers textAttributesFromDictionary:tabsStyle withPrefix:@"tabBarSelectedText" baseFont:[UIFont systemFontOfSize:10]];
- if (!selectedAttributes[NSForegroundColorAttributeName] && selectedButtonColor) {
- selectedAttributes[NSForegroundColorAttributeName] = selectedButtonColor;
- }
-
- [viewController.tabBarItem setTitleTextAttributes:selectedAttributes forState:UIControlStateSelected];
- // create badge
- NSObject *badge = tabItemLayout[@"props"][@"badge"];
- if (badge == nil || [badge isEqual:[NSNull null]])
- {
- viewController.tabBarItem.badgeValue = nil;
- }
- else
- {
- viewController.tabBarItem.badgeValue = [NSString stringWithFormat:@"%@", badge];
- }
-
- [viewControllers addObject:viewController];
- }
-
- // replace the tabs
- self.viewControllers = viewControllers;
-
- [self setRotation:props];
-
- return self;
- }
-
- - (void)performAction:(NSString*)performAction actionParams:(NSDictionary*)actionParams bridge:(RCTBridge *)bridge completion:(void (^)(void))completion
- {
- if ([performAction isEqualToString:@"setBadge"])
- {
- UIViewController *viewController = nil;
- NSNumber *tabIndex = actionParams[@"tabIndex"];
- if (tabIndex)
- {
- int i = (int)[tabIndex integerValue];
-
- if ([self.viewControllers count] > i)
- {
- viewController = [self.viewControllers objectAtIndex:i];
- }
- }
- NSString *contentId = actionParams[@"contentId"];
- NSString *contentType = actionParams[@"contentType"];
- if (contentId && contentType)
- {
- viewController = [[RCCManager sharedInstance] getControllerWithId:contentId componentType:contentType];
- }
-
- if (viewController)
- {
- NSObject *badge = actionParams[@"badge"];
-
- if (badge == nil || [badge isEqual:[NSNull null]])
- {
- viewController.tabBarItem.badgeValue = nil;
- }
- else
- {
- viewController.tabBarItem.badgeValue = [NSString stringWithFormat:@"%@", badge];
- }
- }
- }
-
- if ([performAction isEqualToString:@"switchTo"])
- {
- UIViewController *viewController = nil;
- NSNumber *tabIndex = actionParams[@"tabIndex"];
- if (tabIndex)
- {
- int i = (int)[tabIndex integerValue];
-
- if ([self.viewControllers count] > i)
- {
- viewController = [self.viewControllers objectAtIndex:i];
- }
- }
- NSString *contentId = actionParams[@"contentId"];
- NSString *contentType = actionParams[@"contentType"];
- if (contentId && contentType)
- {
- viewController = [[RCCManager sharedInstance] getControllerWithId:contentId componentType:contentType];
- }
-
- if (viewController)
- {
- [self setSelectedViewController:viewController];
- }
- }
-
- if ([performAction isEqualToString:@"setTabButton"])
- {
- UIViewController *viewController = nil;
- NSNumber *tabIndex = actionParams[@"tabIndex"];
- if (tabIndex)
- {
- int i = (int)[tabIndex integerValue];
-
- if ([self.viewControllers count] > i)
- {
- viewController = [self.viewControllers objectAtIndex:i];
- }
- }
- NSString *contentId = actionParams[@"contentId"];
- NSString *contentType = actionParams[@"contentType"];
- if (contentId && contentType)
- {
- viewController = [[RCCManager sharedInstance] getControllerWithId:contentId componentType:contentType];
- }
-
- if (viewController)
- {
- UIImage *iconImage = nil;
- id icon = actionParams[@"icon"];
- if (icon && icon != (id)[NSNull null])
- {
- iconImage = [RCTConvert UIImage:icon];
- iconImage = [[self image:iconImage withColor:self.tabBar.tintColor] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
- viewController.tabBarItem.image = iconImage;
-
- }
- UIImage *iconImageSelected = nil;
- id selectedIcon = actionParams[@"selectedIcon"];
- if (selectedIcon && selectedIcon != (id)[NSNull null])
- {
- iconImageSelected = [RCTConvert UIImage:selectedIcon];
- viewController.tabBarItem.selectedImage = iconImageSelected;
- }
- }
- }
-
- if ([performAction isEqualToString:@"setTabBarHidden"])
- {
- BOOL hidden = [actionParams[@"hidden"] boolValue];
- [UIView animateWithDuration: ([actionParams[@"animated"] boolValue] ? 0.45 : 0)
- delay: 0
- usingSpringWithDamping: 0.75
- initialSpringVelocity: 0
- options: (hidden ? UIViewAnimationOptionCurveEaseIn : UIViewAnimationOptionCurveEaseOut)
- animations:^()
- {
- self.tabBar.transform = hidden ? CGAffineTransformMakeTranslation(0, self.tabBar.frame.size.height) : CGAffineTransformIdentity;
- }
- completion:^(BOOL finished)
- {
- if (completion != nil)
- {
- completion();
- }
- }];
- return;
- }
- else if (completion != nil)
- {
- completion();
- }
- }
-
- +(void)sendScreenTabChangedEvent:(UIViewController*)viewController body:(NSDictionary*)body{
- [RCCTabBarController sendTabEvent:@"bottomTabSelected" controller:viewController body:body];
- }
-
- +(void)sendScreenTabPressedEvent:(UIViewController*)viewController body:(NSDictionary*)body{
- [RCCTabBarController sendTabEvent:@"bottomTabReselected" controller:viewController body:body];
- }
-
- +(void)sendTabEvent:(NSString *)event controller:(UIViewController*)viewController body:(NSDictionary*)body{
- if ([viewController.view isKindOfClass:[RCTRootView class]]){
- RCTRootView *rootView = (RCTRootView *)viewController.view;
-
- if (rootView.appProperties && rootView.appProperties[@"navigatorEventID"]) {
- NSString *navigatorID = rootView.appProperties[@"navigatorID"];
- NSString *screenInstanceID = rootView.appProperties[@"screenInstanceID"];
-
-
- NSMutableDictionary *screenDict = [NSMutableDictionary dictionaryWithDictionary:@
- {
- @"id": event,
- @"navigatorID": navigatorID,
- @"screenInstanceID": screenInstanceID
- }];
-
-
- if (body) {
- [screenDict addEntriesFromDictionary:body];
- }
-
- [[[RCCManager sharedInstance] getBridge].eventDispatcher sendAppEventWithName:rootView.appProperties[@"navigatorEventID"] body:screenDict];
- }
- }
-
- if ([viewController isKindOfClass:[UINavigationController class]]) {
- UINavigationController *navigationController = (UINavigationController*)viewController;
- UIViewController *topViewController = [navigationController topViewController];
- [RCCTabBarController sendTabEvent:event controller:topViewController body:body];
- }
- }
-
-
-
- @end
|