123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- #import "RNNBasePresenter.h"
- #import "UIViewController+RNNOptions.h"
- #import "RNNTabBarItemCreator.h"
- #import "RNNReactComponentRegistry.h"
- #import "UIViewController+LayoutProtocol.h"
- #import "DotIndicatorOptions.h"
- #import "RNNDotIndicatorPresenter.h"
- #import "RCTConvert+Modal.h"
-
- @interface RNNBasePresenter ()
- @property(nonatomic, strong) RNNDotIndicatorPresenter* dotIndicatorPresenter;
- @end
- @implementation RNNBasePresenter
-
- - (instancetype)initWithDefaultOptions:(RNNNavigationOptions *)defaultOptions {
- self = [super init];
- _defaultOptions = defaultOptions;
- self.dotIndicatorPresenter = [[RNNDotIndicatorPresenter alloc] initWithDefaultOptions:_defaultOptions];
- return self;
- }
-
- - (instancetype)initWithComponentRegistry:(RNNReactComponentRegistry *)componentRegistry defaultOptions:(RNNNavigationOptions *)defaultOptions {
- self = [self initWithDefaultOptions:defaultOptions];
- _componentRegistry = componentRegistry;
- return self;
- }
-
- - (void)bindViewController:(UIViewController *)boundViewController {
- self.boundComponentId = boundViewController.layoutInfo.componentId;
- _boundViewController = boundViewController;
- }
-
- - (void)setDefaultOptions:(RNNNavigationOptions *)defaultOptions {
- _defaultOptions = defaultOptions;
- }
-
- - (void)componentDidAppear {
-
- }
-
- - (void)componentDidDisappear {
-
- }
-
- - (void)applyOptionsOnInit:(RNNNavigationOptions *)initialOptions {
- UIViewController* viewController = self.boundViewController;
- RNNNavigationOptions *withDefault = [initialOptions withDefault:[self defaultOptions]];
- [viewController setModalPresentationStyle:[RCTConvert UIModalPresentationStyle:[withDefault.modalPresentationStyle getWithDefaultValue:@"default"]]];
- [viewController setModalTransitionStyle:[RCTConvert UIModalTransitionStyle:[withDefault.modalTransitionStyle getWithDefaultValue:@"coverVertical"]]];
-
- if (@available(iOS 13.0, *)) {
- viewController.modalInPresentation = ![withDefault.modal.swipeToDismiss getWithDefaultValue:YES];
- }
- }
-
- - (void)applyOptionsOnViewDidLayoutSubviews:(RNNNavigationOptions *)options {
-
- }
-
- - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options {
- UIViewController *viewController = self.boundViewController;
- RNNNavigationOptions * withDefault = [options withDefault:_defaultOptions];
-
- if (withDefault.bottomTab.text.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (withDefault.bottomTab.icon.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (withDefault.bottomTab.selectedIcon.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (withDefault.bottomTab.badgeColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (withDefault.bottomTab.textColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (withDefault.bottomTab.iconColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (withDefault.bottomTab.selectedTextColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (withDefault.bottomTab.selectedIconColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
- }
-
- - (void)applyOptions:(RNNNavigationOptions *)options {
- UIViewController *viewController = self.boundViewController;
- RNNNavigationOptions * withDefault = [options withDefault:_defaultOptions];
-
- if (withDefault.bottomTab.badge.hasValue && [viewController.parentViewController isKindOfClass:[UITabBarController class]]) {
- [viewController setTabBarItemBadge:withDefault.bottomTab.badge.get];
- }
-
- if (withDefault.bottomTab.badgeColor.hasValue && [viewController.parentViewController isKindOfClass:[UITabBarController class]]) {
- [viewController setTabBarItemBadgeColor:withDefault.bottomTab.badgeColor.get];
- }
- }
-
- - (void)mergeOptions:(RNNNavigationOptions *)options resolvedOptions:(RNNNavigationOptions *)resolvedOptions {
- UIViewController* viewController = self.boundViewController;
- RNNNavigationOptions* withDefault = (RNNNavigationOptions *) [[resolvedOptions withDefault:_defaultOptions] overrideOptions:options];
-
- if (options.bottomTab.badge.hasValue) {
- [viewController setTabBarItemBadge:options.bottomTab.badge.get];
- }
-
- if (options.bottomTab.badgeColor.hasValue && [viewController.parentViewController isKindOfClass:[UITabBarController class]]) {
- [viewController setTabBarItemBadgeColor:options.bottomTab.badgeColor.get];
- }
-
- if ([options.bottomTab.dotIndicator hasValue] && [viewController.parentViewController isKindOfClass:[UITabBarController class]]) {
- [[self dotIndicatorPresenter] apply:viewController:options.bottomTab.dotIndicator];
- }
-
- if (options.bottomTab.text.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (options.bottomTab.icon.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (options.bottomTab.selectedIcon.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (options.bottomTab.textColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (options.bottomTab.selectedTextColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (options.bottomTab.iconColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
-
- if (options.bottomTab.selectedIconColor.hasValue) {
- UITabBarItem *tabItem = [RNNTabBarItemCreator updateTabBarItem:viewController.tabBarItem bottomTabOptions:withDefault.bottomTab];
- viewController.tabBarItem = tabItem;
- }
- }
-
- - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
- if (readyBlock) {
- readyBlock();
- readyBlock = nil;
- }
- }
-
- - (void)viewDidLayoutSubviews {
-
- }
-
- - (void)applyDotIndicator:(UIViewController *)child {
- [[self dotIndicatorPresenter] apply:child:[child resolveOptions].bottomTab.dotIndicator];
- }
-
- - (UIStatusBarStyle)getStatusBarStyle:(RNNNavigationOptions *)resolvedOptions {
- RNNNavigationOptions *withDefault = [resolvedOptions withDefault:[self defaultOptions]];
- NSString* statusBarStyle = [withDefault.statusBar.style getWithDefaultValue:@"default"];
- if ([statusBarStyle isEqualToString:@"light"]) {
- return UIStatusBarStyleLightContent;
- } else if (@available(iOS 13.0, *)) {
- if ([statusBarStyle isEqualToString:@"dark"]) {
- return UIStatusBarStyleDarkContent;
- } else {
- return UIStatusBarStyleDefault;
- }
- } else {
- return UIStatusBarStyleDefault;
- }
- }
-
- - (UIInterfaceOrientationMask)getOrientation:(RNNNavigationOptions *)options {
- return [options withDefault:[self defaultOptions]].layout.supportedOrientations;
- }
-
- - (BOOL)isStatusBarVisibility:(UINavigationController *)stack resolvedOptions:(RNNNavigationOptions *)resolvedOptions {
- RNNNavigationOptions *withDefault = [resolvedOptions withDefault:[self defaultOptions]];
- if (withDefault.statusBar.visible.hasValue) {
- return ![withDefault.statusBar.visible get];
- } else if ([withDefault.statusBar.hideWithTopBar getWithDefaultValue:NO]) {
- return stack.isNavigationBarHidden;
- }
- return NO;
- }
-
-
- @end
|