forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRNNControllerFactory.m
226 lines (162 loc) · 8.59 KB
/
RNNControllerFactory.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#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