123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
-
- #import "RNNControllerFactory.h"
- #import "RNNLayoutNode.h"
- #import "RNNRootViewController.h"
- #import "RNNSideMenuController.h"
- #import "RNNSideMenuChildVC.h"
- #import "RNNNavigationOptions.h"
- #import "RNNNavigationController.h"
- #import "RNNTabBarController.h"
- #import "RNNTopTabsViewController.h"
-
- @implementation RNNControllerFactory {
- id<RNNRootViewCreator> _creator;
- RNNStore *_store;
- RNNEventEmitter *_eventEmitter;
- 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;
-
- return self;
- }
-
- - (UIViewController<RNNRootViewProtocol> *)createLayoutAndSaveToStore:(NSDictionary*)layout {
- return [self fromTree:layout];
- }
-
- # pragma mark private
-
- - (UIViewController<RNNRootViewProtocol> *)fromTree:(NSDictionary*)json {
- RNNLayoutNode* node = [RNNLayoutNode create:json];
-
- UIViewController<RNNRootViewProtocol> *result;
-
- if ( node.isComponent) {
- result = [self createContainer: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];
- }
-
- if (!result) {
- @throw [NSException exceptionWithName:@"UnknownControllerType" reason:[@"Unknown controller type " stringByAppendingString:node.type] userInfo:nil];
- }
-
- [_store setContainer:result containerId:node.nodeId];
-
- return result;
- }
-
- - (UIViewController<RNNRootViewProtocol> *)createContainer:(RNNLayoutNode*)node {
- NSString* name = node.data[@"name"];
- NSDictionary* customTransition = node.data[@"customTransition"];
- RNNAnimator* animator = [[RNNAnimator alloc] initWithAnimationsDictionary:customTransition];
- RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:node.data[@"navigationOptions"]];
- NSString* containerId = node.nodeId;
- RNNRootViewController* container = [[RNNRootViewController alloc] initWithName:name withOptions:options withContainerId:containerId rootViewCreator:_creator eventEmitter:_eventEmitter animator:animator];
- CGSize availableSize = UIApplication.sharedApplication.delegate.window.bounds.size;
- [_bridge.uiManager setAvailableSize:availableSize forRootView:container.view];
-
- return container;
- }
-
- - (UIViewController<RNNRootViewProtocol> *)createStack:(RNNLayoutNode*)node {
- RNNNavigationController* vc = [[RNNNavigationController alloc] init];
-
- NSMutableArray* controllers = [NSMutableArray new];
- for (NSDictionary* child in node.children) {
- [controllers addObject:[self fromTree:child]];
- }
- [vc setViewControllers:controllers];
-
- return vc;
- }
-
- -(UIViewController<RNNRootViewProtocol> *)createTabs:(RNNLayoutNode*)node {
- RNNTabBarController* vc = [[RNNTabBarController alloc] init];
-
- NSMutableArray* controllers = [NSMutableArray new];
- for (NSDictionary *child in node.children) {
- UIViewController* childVc = (UIViewController*)[self fromTree:child];
- RNNRootViewController* rootView = (RNNRootViewController *)childVc.childViewControllers.firstObject;
- [rootView applyTabBarItem];
-
- [controllers addObject:childVc];
- }
- [vc setViewControllers:controllers];
-
- return vc;
- }
-
- - (UIViewController<RNNRootViewProtocol> *)createTopTabs:(RNNLayoutNode*)node {
- RNNTopTabsViewController* vc = [[RNNTopTabsViewController alloc] init];
-
- NSMutableArray* controllers = [NSMutableArray new];
- for (NSDictionary *child in node.children) {
- RNNRootViewController* childVc = (RNNRootViewController*)[self fromTree:child];
- childVc.topTabsViewController = vc;
- [controllers addObject:childVc];
- [_bridge.uiManager setAvailableSize:vc.contentView.bounds.size forRootView:childVc.view];
- }
-
- [vc setViewControllers:controllers];
-
- return vc;
- }
-
- - (UIViewController<RNNRootViewProtocol> *)createSideMenu:(RNNLayoutNode*)node {
- NSMutableArray* childrenVCs = [NSMutableArray new];
-
-
- for (NSDictionary *child in node.children) {
- UIViewController *vc = [self fromTree:child];
- [childrenVCs addObject:vc];
- }
- RNNSideMenuController *sideMenu = [[RNNSideMenuController alloc] initWithControllers:childrenVCs];
- return sideMenu;
- }
-
-
- - (UIViewController<RNNRootViewProtocol> *)createSideMenuChild:(RNNLayoutNode*)node type:(RNNSideMenuChildType)type {
- UIViewController* child = (UIViewController*)[self fromTree:node.children[0]];
- RNNSideMenuChildVC *sideMenuChild = [[RNNSideMenuChildVC alloc] initWithChild: child type:type];
-
- return sideMenuChild;
- }
-
-
-
- @end
|