-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathRNNComponentViewController.mm
More file actions
249 lines (209 loc) · 8.75 KB
/
RNNComponentViewController.mm
File metadata and controls
249 lines (209 loc) · 8.75 KB
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#import "RNNComponentViewController.h"
#import "AnimationObserver.h"
@implementation RNNComponentViewController {
NSArray *_reactViewConstraints;
}
@synthesize previewCallback;
- (instancetype)initWithLayoutInfo:(RNNLayoutInfo *)layoutInfo
rootViewCreator:(id<RNNComponentViewCreator>)creator
eventEmitter:(RNNEventEmitter *)eventEmitter
presenter:(RNNComponentPresenter *)presenter
options:(RNNNavigationOptions *)options
defaultOptions:(RNNNavigationOptions *)defaultOptions {
self = [super initWithLayoutInfo:layoutInfo
creator:creator
options:options
defaultOptions:defaultOptions
presenter:presenter
eventEmitter:eventEmitter
childViewControllers:nil];
if (@available(iOS 13.0, *)) {
self.navigationItem.standardAppearance = [UINavigationBarAppearance new];
self.navigationItem.scrollEdgeAppearance = [UINavigationBarAppearance new];
}
return self;
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.reactView componentWillAppear];
[self componentWillAppear];
[_presenter applyOptions:self.resolveOptions];
[self.parentViewController onChildWillAppear];
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[[AnimationObserver sharedObserver] endAnimation];
[self.reactView componentDidAppear];
[self componentDidAppear];
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
// Fix's momentum scroll bug
// https://github.com/wix/react-native-navigation/issues/4325
[self.view stopMomentumScrollViews];
}
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
[self.reactView componentDidDisappear];
[self componentDidDisappear];
}
- (RNNNavigationOptions *)resolveOptions {
RNNNavigationOptions *resolvedOptions = self.options.copy;
UIViewController *parentViewController = self.parentViewController;
while (parentViewController) {
resolvedOptions = [resolvedOptions withDefault:parentViewController.options];
parentViewController = parentViewController.parentViewController;
}
return resolvedOptions;
}
- (void)loadView {
[self renderReactViewIfNeeded];
}
- (void)render {
if (!self.waitForRender)
[self readyForPresentation];
[self renderReactViewIfNeeded];
}
- (void)renderReactViewIfNeeded {
if (!self.reactView) {
self.view = [[UIView alloc] initWithFrame:UIScreen.mainScreen.bounds];
self.reactView = [self.creator createRootView:self.layoutInfo.name
rootViewId:self.layoutInfo.componentId
ofType:RNNComponentTypeComponent
reactViewReadyBlock:^{
[self->_presenter renderComponents:self.resolveOptions
perform:^{
[self readyForPresentation];
}];
}];
self.reactView.backgroundColor = UIColor.clearColor;
self.reactView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
self.reactView.clipsToBounds = YES;
[self.reactView setFrame:self.view.frame];
[self.view addSubview:self.reactView];
[self updateReactViewFrame];
} else {
[self readyForPresentation];
}
}
- (void)setInterceptTouchOutside:(BOOL)interceptTouchOutside {
self.reactView.passThroughTouches = !interceptTouchOutside;
}
- (void)viewSafeAreaInsetsDidChange {
[super viewSafeAreaInsetsDidChange];
[self updateReactViewFrame];
}
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
[self.presenter applyOptionsOnViewDidLayoutSubviews:self.resolveOptions];
[self updateReactViewFrame];
}
- (void)updateReactViewFrame {
if (self.isViewLoaded && self.reactView) {
CGFloat bottomInset = self.shouldDrawBehindBottomTabs ? 0 : self.view.safeAreaInsets.bottom;
CGFloat topInset = self.shouldDrawBehindTopBar ? 0 : self.view.safeAreaInsets.top;
[self.reactView setFrame:CGRectMake(0, topInset, self.view.frame.size.width,
self.view.frame.size.height - topInset - bottomInset)];
}
}
- (BOOL)shouldDrawBehindBottomTabs {
return !self.tabBarController.tabBar || self.tabBarController.tabBar.isHidden ||
_drawBehindBottomTabs;
}
- (BOOL)shouldDrawBehindTopBar {
return (!self.navigationController.navigationBar ||
self.navigationController.navigationBar.isHidden || _drawBehindTopBar);
}
- (void)setDrawBehindTopBar:(BOOL)drawBehindTopBar {
_drawBehindTopBar = drawBehindTopBar;
[self updateReactViewFrame];
}
- (void)setDrawBehindBottomTabs:(BOOL)drawBehindBottomTabs {
_drawBehindBottomTabs = drawBehindBottomTabs;
[self updateReactViewFrame];
}
- (UIViewController *)getCurrentChild {
return nil;
}
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController {
[self.eventEmitter sendOnSearchBarUpdated:self.layoutInfo.componentId
text:searchController.searchBar.text
isFocused:searchController.searchBar.isFirstResponder];
}
- (void)destroyReactView {
[self.reactView removeFromSuperview];
self.reactView = nil;
}
- (void)screenPopped {
[_eventEmitter sendScreenPoppedEvent:self.layoutInfo.componentId];
}
- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
[self.eventEmitter sendOnSearchBarCancelPressed:self.layoutInfo.componentId];
}
- (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext
viewControllerForLocation:(CGPoint)location {
return self.previewController;
}
- (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext
commitViewController:(UIViewController *)viewControllerToCommit {
if (self.previewCallback) {
self.previewCallback(self);
}
}
- (void)onActionPress:(NSString *)id {
[_eventEmitter sendOnNavigationButtonPressed:self.layoutInfo.componentId buttonId:id];
}
- (UIPreviewAction *)convertAction:(NSDictionary *)action {
NSString *actionId = action[@"id"];
NSString *actionTitle = action[@"title"];
UIPreviewActionStyle actionStyle = UIPreviewActionStyleDefault;
if ([action[@"style"] isEqualToString:@"selected"]) {
actionStyle = UIPreviewActionStyleSelected;
} else if ([action[@"style"] isEqualToString:@"destructive"]) {
actionStyle = UIPreviewActionStyleDestructive;
}
return [UIPreviewAction actionWithTitle:actionTitle
style:actionStyle
handler:^(UIPreviewAction *_Nonnull action,
UIViewController *_Nonnull previewViewController) {
[self onActionPress:actionId];
}];
}
- (NSArray<id<UIPreviewActionItem>> *)previewActionItems {
NSMutableArray *actions = [[NSMutableArray alloc] init];
for (NSDictionary *previewAction in self.resolveOptions.preview.actions) {
UIPreviewAction *action = [self convertAction:previewAction];
NSDictionary *actionActions = previewAction[@"actions"];
if (actionActions.count > 0) {
NSMutableArray *group = [[NSMutableArray alloc] init];
for (NSDictionary *previewGroupAction in actionActions) {
[group addObject:[self convertAction:previewGroupAction]];
}
UIPreviewActionGroup *actionGroup =
[UIPreviewActionGroup actionGroupWithTitle:action.title
style:UIPreviewActionStyleDefault
actions:group];
[actions addObject:actionGroup];
} else {
[actions addObject:action];
}
}
return actions;
}
#pragma mark - UIViewController overrides
- (UIStatusBarStyle)preferredStatusBarStyle {
return [self.presenter getStatusBarStyle];
}
- (BOOL)prefersStatusBarHidden {
return [self.presenter getStatusBarVisibility];
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
return [self.presenter getOrientation];
}
- (BOOL)hidesBottomBarWhenPushed {
return [self.presenter hidesBottomBarWhenPushed];
}
- (BOOL)prefersHomeIndicatorAutoHidden {
return [self.presenter prefersHomeIndicatorAutoHidden];
}
@end