123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- #import "RNNControllerFactory.h"
- #import "RNNLayoutNode.h"
- #import "RNNSplitViewController.h"
- #import "RNNSplitViewOptions.h"
- #import "RNNSideMenuController.h"
- #import "RNNSideMenuChildVC.h"
- #import "RNNNavigationController.h"
- #import "RNNTabBarController.h"
- #import "RNNTopTabsViewController.h"
- #import "RNNLayoutInfo.h"
- #import "RNNRootViewController.h"
- #import "UIViewController+SideMenuController.h"
- #import "RNNViewControllerPresenter.h"
- #import "RNNNavigationControllerPresenter.h"
- #import "RNNTabBarPresenter.h"
- #import "RNNSideMenuPresenter.h"
-
- @implementation RNNControllerFactory {
- id<RNNRootViewCreator> _creator;
- RNNStore *_store;
- RCTBridge *_bridge;
- }
-
- # pragma mark public
-
-
- - (instancetype)initWithRootViewCreator:(id <RNNRootViewCreator>)creator
- eventEmitter:(RNNEventEmitter*)eventEmitter
- andBridge:(RCTBridge *)bridge {
-
- self = [super init];
-
- _creator = creator;
- _eventEmitter = eventEmitter;
- _bridge = bridge;
-
- return self;
- }
-
- - (UIViewController<RNNParentProtocol> *)createLayout:(NSDictionary*)layout saveToStore:(RNNStore *)store {
- _store = store;
- UIViewController<RNNParentProtocol>* layoutViewController = [self fromTree:layout];
- _store = nil;
- return layoutViewController;
- }
-
- - (NSArray<RNNLayoutProtocol> *)createChildrenLayout:(NSArray*)children saveToStore:(RNNStore *)store {
- _store = store;
- NSMutableArray<RNNLayoutProtocol>* childViewControllers = [NSMutableArray<RNNLayoutProtocol> new];
- for (NSDictionary* layout in children) {
- [childViewControllers addObject:[self fromTree:layout]];
- }
- _store = nil;
- return childViewControllers;
- }
-
- # pragma mark private
-
- - (UIViewController<RNNParentProtocol> *)fromTree:(NSDictionary*)json {
- RNNLayoutNode* node = [RNNLayoutNode create:json];
-
- UIViewController<RNNParentProtocol> *result;
-
- if (node.isComponent) {
- result = [self createComponent:node];
- }
-
- else if (node.isStack) {
- result = [self createStack:node];
- }
-
- else if (node.isTabs) {
- result = [self createTabs:node];
- }
-
- else if (node.isTopTabs) {
- result = [self createTopTabs:node];
- }
-
- else if (node.isSideMenuRoot) {
- result = [self createSideMenu:node];
- }
-
- else if (node.isSideMenuCenter) {
- result = [self createSideMenuChild:node type:RNNSideMenuChildTypeCenter];
- }
-
- else if (node.isSideMenuLeft) {
- result = [self createSideMenuChild:node type:RNNSideMenuChildTypeLeft];
- }
-
- else if (node.isSideMenuRight) {
- result = [self createSideMenuChild:node type:RNNSideMenuChildTypeRight];
- }
-
- else if (node.isExternalComponent) {
- result = [self createExternalComponent:node];
- }
-
- else if (node.isSplitView) {
- result = [self createSplitView:node];
- }
-
- if (!result) {
- @throw [NSException exceptionWithName:@"UnknownControllerType" reason:[@"Unknown controller type " stringByAppendingString:node.type] userInfo:nil];
- }
-
- [_store setComponent:result componentId:node.nodeId];
-
- return result;
- }
-
- - (UIViewController<RNNParentProtocol> *)createComponent:(RNNLayoutNode*)node {
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
-
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] init];
-
-
- RNNRootViewController* component = [[RNNRootViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:_creator eventEmitter:_eventEmitter presenter:presenter options:options defaultOptions:_defaultOptions];
-
- if (!component.isExternalViewController) {
- CGSize availableSize = UIApplication.sharedApplication.delegate.window.bounds.size;
- [_bridge.uiManager setAvailableSize:availableSize forRootView:component.view];
- }
-
- return (UIViewController<RNNParentProtocol> *)component;
- }
-
- - (UIViewController<RNNParentProtocol> *)createExternalComponent:(RNNLayoutNode*)node {
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] init];
-
- UIViewController* externalVC = [_store getExternalComponent:layoutInfo bridge:_bridge];
-
- RNNRootViewController* component = [[RNNRootViewController alloc] initExternalComponentWithLayoutInfo:layoutInfo eventEmitter:_eventEmitter presenter:presenter options:options defaultOptions:_defaultOptions];
- [component bindViewController:externalVC];
-
- return (UIViewController<RNNParentProtocol> *)component;
- }
-
-
- - (UIViewController<RNNParentProtocol> *)createStack:(RNNLayoutNode*)node {
- RNNNavigationControllerPresenter* presenter = [[RNNNavigationControllerPresenter alloc] init];
-
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
-
- NSArray *childViewControllers = [self extractChildrenViewControllersFromNode:node];
-
- RNNNavigationController* stack = [[RNNNavigationController alloc] initWithLayoutInfo:layoutInfo childViewControllers:childViewControllers options:options defaultOptions:_defaultOptions presenter:presenter];
-
- return stack;
- }
-
- -(UIViewController<RNNParentProtocol> *)createTabs:(RNNLayoutNode*)node {
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
- RNNTabBarPresenter* presenter = [[RNNTabBarPresenter alloc] init];
-
- NSArray *childViewControllers = [self extractChildrenViewControllersFromNode:node];
-
- RNNTabBarController* tabsController = [[RNNTabBarController alloc] initWithLayoutInfo:layoutInfo childViewControllers:childViewControllers options:options defaultOptions:_defaultOptions presenter:presenter eventEmitter:_eventEmitter];
-
- return tabsController;
- }
-
- - (UIViewController<RNNParentProtocol> *)createTopTabs:(RNNLayoutNode*)node {
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] init];
-
- NSArray *childViewControllers = [self extractChildrenViewControllersFromNode:node];
-
- RNNTopTabsViewController* topTabsController = [[RNNTopTabsViewController alloc] initWithLayoutInfo:layoutInfo childViewControllers:childViewControllers options:options defaultOptions:_defaultOptions presenter:presenter];
-
- return topTabsController;
- }
-
- - (UIViewController<RNNParentProtocol> *)createSideMenu:(RNNLayoutNode*)node {
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
- RNNSideMenuPresenter* presenter = [[RNNSideMenuPresenter alloc] init];
-
- NSArray *childViewControllers = [self extractChildrenViewControllersFromNode:node];
-
- RNNSideMenuController *sideMenu = [[RNNSideMenuController alloc] initWithLayoutInfo:layoutInfo childViewControllers:childViewControllers options:options defaultOptions:_defaultOptions presenter:presenter];
-
- return sideMenu;
- }
-
-
- - (UIViewController<RNNParentProtocol> *)createSideMenuChild:(RNNLayoutNode*)node type:(RNNSideMenuChildType)type {
- UIViewController<RNNParentProtocol>* childVc = [self fromTree:node.children[0]];
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
-
- RNNSideMenuChildVC *sideMenuChild = [[RNNSideMenuChildVC alloc] initWithLayoutInfo:layoutInfo childViewControllers:@[childVc] options:options defaultOptions:_defaultOptions presenter:[[RNNViewControllerPresenter alloc] init] type:type];
-
- return sideMenuChild;
- }
-
- - (UIViewController<RNNParentProtocol> *)createSplitView:(RNNLayoutNode*)node {
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"options"]];;
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] init];
-
- NSArray *childViewControllers = [self extractChildrenViewControllersFromNode:node];
-
- RNNSplitViewController* splitViewController = [[RNNSplitViewController alloc] initWithLayoutInfo:layoutInfo childViewControllers:childViewControllers options:options defaultOptions:_defaultOptions presenter:presenter];
-
- return splitViewController;
- }
-
- - (NSArray<UIViewController *> *)extractChildrenViewControllersFromNode:(RNNLayoutNode *)node {
- NSMutableArray* childrenArray = [NSMutableArray new];
- for (NSDictionary* child in node.children) {
- UIViewController* childVc = [self fromTree:child];
- [childrenArray addObject:childVc];
- }
-
- return childrenArray;
- }
-
- @end
|