123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- #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 "RNNOptionsManager.h"
- #import "RNNViewControllerPresenter.h"
- #import "RNNTabBarPresenter.h"
- #import "RNNRootViewController.h"
-
- @implementation RNNControllerFactory {
- id<RNNRootViewCreator> _creator;
- RNNStore *_store;
- RCTBridge *_bridge;
- }
-
- # pragma mark public
-
-
- - (instancetype)initWithRootViewCreator:(id <RNNRootViewCreator>)creator
- store:(RNNStore *)store
- eventEmitter:(RNNEventEmitter*)eventEmitter
- andBridge:(RCTBridge *)bridge {
-
- self = [super init];
-
- _creator = creator;
- _store = store;
- _eventEmitter = eventEmitter;
- _bridge = bridge;
- _optionsManager = [RNNOptionsManager new];
-
- return self;
- }
-
- - (UIViewController<RNNParentProtocol> *)createLayoutAndSaveToStore:(NSDictionary*)layout {
- return [self fromTree:layout];
- }
-
- # 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 = [_optionsManager createOptions:node.data[@"options"]];
-
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] initWithOptions:options];
- RNNRootViewController* component = [[RNNRootViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:_creator eventEmitter:_eventEmitter isExternalComponent:NO presenter:presenter];
-
- if (!component.isCustomViewController) {
- 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 = [_optionsManager createOptions:node.data[@"options"]];
-
- UIViewController* externalVC = [_store getExternalComponent:layoutInfo bridge:_bridge];
-
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] initWithOptions:options];
- RNNRootViewController* component = [[RNNRootViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:_creator eventEmitter:_eventEmitter isExternalComponent:YES presenter:presenter];
-
- [component addChildViewController:externalVC];
- [component.view addSubview:externalVC.view];
- [externalVC didMoveToParentViewController:component];
-
- return (UIViewController<RNNParentProtocol> *)component;
- }
-
-
- - (UIViewController<RNNParentProtocol> *)createStack:(RNNLayoutNode*)node {
- RNNNavigationController* vc = [[RNNNavigationController alloc] init];
- RNNNavigationOptions* options = [_optionsManager createOptions:node.data[@"options"]];
-
- vc.presenter = [[RNNNavigationControllerPresenter alloc] initWithOptions:options];
- vc.layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
-
- NSMutableArray* controllers = [NSMutableArray new];
- for (NSDictionary* child in node.children) {
- [controllers addObject:[self fromTree:child]];
- }
-
- [vc setViewControllers:controllers];
-
- return vc;
- }
-
- -(UIViewController<RNNParentProtocol> *)createTabs:(RNNLayoutNode*)node {
- RNNTabBarController* vc = [[RNNTabBarController alloc] initWithEventEmitter:_eventEmitter];
- vc.layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [_optionsManager createOptions:node.data[@"options"]];
- vc.presenter = [[RNNTabBarPresenter alloc] initWithOptions:options];
-
- NSMutableArray* controllers = [NSMutableArray new];
- for (NSDictionary *child in node.children) {
- UIViewController<RNNParentProtocol>* childVc = [self fromTree:child];
- [controllers addObject:childVc];
- }
- [vc setViewControllers:controllers];
-
- return vc;
- }
-
- - (UIViewController<RNNParentProtocol> *)createTopTabs:(RNNLayoutNode*)node {
- RNNTopTabsViewController* vc = [[RNNTopTabsViewController alloc] init];
- vc.layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
-
- NSMutableArray* controllers = [NSMutableArray new];
- for (NSDictionary *child in node.children) {
- RNNRootViewController* childVc = (RNNRootViewController*)[self fromTree:child];
- [controllers addObject:childVc];
- [_bridge.uiManager setAvailableSize:vc.contentView.bounds.size forRootView:childVc.view];
- }
-
- [vc setViewControllers:controllers];
-
- return vc;
- }
-
- - (UIViewController<RNNParentProtocol> *)createSideMenu:(RNNLayoutNode*)node {
- RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] initWithNode:node];
- RNNNavigationOptions* options = [_optionsManager createOptions:node.data[@"options"]];
- RNNBasePresenter* presenter = [[RNNBasePresenter alloc] initWithOptions:options];
-
- NSMutableArray* childrenVCs = [NSMutableArray new];
-
- for (NSDictionary *child in node.children) {
- UIViewController *vc = [self fromTree:child];
- [childrenVCs addObject:vc];
- }
- RNNSideMenuController *sideMenu = [[RNNSideMenuController alloc] initWithControllers:childrenVCs presenter:presenter];
- sideMenu.layoutInfo = layoutInfo;
-
- return sideMenu;
- }
-
-
- - (UIViewController<RNNParentProtocol> *)createSideMenuChild:(RNNLayoutNode*)node type:(RNNSideMenuChildType)type {
- UIViewController<RNNParentProtocol>* child = [self fromTree:node.children[0]];
- RNNNavigationOptions* options = [_optionsManager createOptions:node.data[@"options"]];
- RNNSideMenuChildVC *sideMenuChild = [[RNNSideMenuChildVC alloc] initWithChild: child type:type];
- sideMenuChild.presenter = [[RNNBasePresenter alloc] initWithOptions:options];
-
- return sideMenuChild;
- }
-
- - (UIViewController<RNNParentProtocol> *)createSplitView:(RNNLayoutNode*)node {
-
- NSString* componentId = node.nodeId;
-
- RNNSplitViewOptions* options = [[RNNSplitViewOptions alloc] initWithDict:_optionsManager.defaultOptionsDict];
- [options mergeWith:node.data[@"options"]];
-
- RNNSplitViewController* svc = [[RNNSplitViewController alloc] initWithOptions:options withComponentId:componentId rootViewCreator:_creator eventEmitter:_eventEmitter];
-
- // We need two children of the node for successful Master / Detail
- NSDictionary *master = node.children[0];
- NSDictionary *detail = node.children[1];
-
- // Create view controllers
- RNNRootViewController* masterVc = (RNNRootViewController*)[self fromTree:master];
- RNNRootViewController* detailVc = (RNNRootViewController*)[self fromTree:detail];
-
- // Set the controllers and delegate to masterVC
- svc.viewControllers = [NSArray arrayWithObjects:masterVc, detailVc, nil];
- svc.delegate = masterVc;
-
- return svc;
- }
-
- @end
|