-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathReactNativePageView.m
476 lines (378 loc) · 17.8 KB
/
ReactNativePageView.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
#import "ReactNativePageView.h"
#import "React/RCTLog.h"
#import <React/RCTViewManager.h>
#import "UIViewController+CreateExtension.h"
#import "RCTOnPageScrollEvent.h"
#import "RCTOnPageScrollStateChanged.h"
#import "RCTOnPageSelected.h"
#import <math.h>
@interface ReactNativePageView () <UIPageViewControllerDataSource, UIPageViewControllerDelegate, UIScrollViewDelegate>
@property(nonatomic, strong) UIPageViewController *reactPageViewController;
@property(nonatomic, strong) RCTEventDispatcher *eventDispatcher;
@property(nonatomic, weak) UIScrollView *scrollView;
@property(nonatomic, weak) UIView *currentView;
@property(nonatomic, strong) NSHashTable<UIViewController *> *cachedControllers;
@property(nonatomic, assign) CGPoint lastContentOffset;
- (void)goTo:(NSInteger)index animated:(BOOL)animated;
- (void)shouldScroll:(BOOL)scrollEnabled;
- (void)shouldDismissKeyboard:(NSString *)dismissKeyboard;
@end
@implementation ReactNativePageView {
uint16_t _coalescingKey;
}
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher {
if (self = [super init]) {
_scrollEnabled = YES;
_pageMargin = 0;
_lastReportedIndex = -1;
_destinationIndex = -1;
_orientation = UIPageViewControllerNavigationOrientationHorizontal;
_currentIndex = 0;
#if !TARGET_OS_VISION
_dismissKeyboard = UIScrollViewKeyboardDismissModeNone;
#endif
_coalescingKey = 0;
_eventDispatcher = eventDispatcher;
_cachedControllers = [NSHashTable hashTableWithOptions:NSHashTableStrongMemory];
_overdrag = NO;
_layoutDirection = @"ltr";
}
return self;
}
- (void)layoutSubviews {
[super layoutSubviews];
if (self.reactPageViewController) {
[self shouldScroll:self.scrollEnabled];
}
}
- (void)didUpdateReactSubviews {
if (!self.reactPageViewController && self.reactViewController != nil) {
[self embed];
[self setupInitialController];
} else {
[self updateDataSource];
}
}
- (void)didMoveToSuperview {
[super didMoveToSuperview];
if (!self.reactPageViewController && self.reactViewController != nil) {
[self embed];
[self setupInitialController];
}
}
- (void)didMoveToWindow {
[super didMoveToWindow];
if (!self.reactPageViewController && self.reactViewController != nil) {
[self embed];
[self setupInitialController];
}
if (self.reactViewController.navigationController != nil && self.reactViewController.navigationController.interactivePopGestureRecognizer != nil) {
[self.scrollView.panGestureRecognizer requireGestureRecognizerToFail:self.reactViewController.navigationController.interactivePopGestureRecognizer];
}
}
- (void)embed {
NSDictionary *options = @{ UIPageViewControllerOptionInterPageSpacingKey: @(self.pageMargin) };
UIPageViewController *pageViewController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll
navigationOrientation:self.orientation
options:options];
pageViewController.delegate = self;
pageViewController.dataSource = self;
for (UIView *subview in pageViewController.view.subviews) {
if([subview isKindOfClass:UIScrollView.class]){
((UIScrollView *)subview).delegate = self;
#if !TARGET_OS_VISION
((UIScrollView *)subview).keyboardDismissMode = _dismissKeyboard;
#endif
((UIScrollView *)subview).delaysContentTouches = YES;
self.scrollView = (UIScrollView *)subview;
}
}
self.reactPageViewController = pageViewController;
[self reactAddControllerToClosestParent:pageViewController];
[self addSubview:pageViewController.view];
pageViewController.view.frame = self.bounds;
[self shouldScroll:self.scrollEnabled];
[pageViewController.view layoutIfNeeded];
}
- (void)shouldScroll:(BOOL)scrollEnabled {
_scrollEnabled = scrollEnabled;
if (self.reactPageViewController.view) {
self.scrollView.scrollEnabled = scrollEnabled;
}
}
- (void)shouldDismissKeyboard:(NSString *)dismissKeyboard {
#if !TARGET_OS_VISION
_dismissKeyboard = [dismissKeyboard isEqual: @"on-drag"] ?
UIScrollViewKeyboardDismissModeOnDrag : UIScrollViewKeyboardDismissModeNone;
self.scrollView.keyboardDismissMode = _dismissKeyboard;
#endif
}
- (void)setupInitialController {
UIView *initialView = self.reactSubviews[self.initialPage];
if (initialView) {
UIViewController *initialController = nil;
if (initialView.reactViewController) {
initialController = initialView.reactViewController;
} else {
initialController = [[UIViewController alloc] initWithView:initialView];
}
[self.cachedControllers addObject:initialController];
[self setReactViewControllers:self.initialPage
with:initialController
direction:UIPageViewControllerNavigationDirectionForward
animated:YES
shouldCallOnPageSelected:YES];
}
}
- (void)setReactViewControllers:(NSInteger)index
with:(UIViewController *)controller
direction:(UIPageViewControllerNavigationDirection)direction
animated:(BOOL)animated
shouldCallOnPageSelected:(BOOL)shouldCallOnPageSelected {
if (self.reactPageViewController == nil) {
[self enableSwipe];
return;
}
NSArray *currentVCs = self.reactPageViewController.viewControllers;
if (currentVCs.count == 1 && [currentVCs.firstObject isEqual:controller]) {
[self enableSwipe];
return;
}
__weak ReactNativePageView *weakSelf = self;
uint16_t coalescingKey = _coalescingKey++;
if (animated == YES) {
self.animating = YES;
}
[self.reactPageViewController setViewControllers:@[controller]
direction:direction
animated:animated
completion:^(BOOL finished) {
__strong typeof(self) strongSelf = weakSelf;
strongSelf.currentIndex = index;
strongSelf.currentView = controller.view;
[strongSelf enableSwipe];
if (finished) {
strongSelf.animating = NO;
}
if (strongSelf.eventDispatcher) {
if (strongSelf.lastReportedIndex != strongSelf.currentIndex) {
if (shouldCallOnPageSelected) {
[strongSelf.eventDispatcher sendEvent:[[RCTOnPageSelected alloc] initWithReactTag:strongSelf.reactTag position:@(index) coalescingKey:coalescingKey]];
}
strongSelf.lastReportedIndex = strongSelf.currentIndex;
}
}
}];
}
- (UIViewController *)currentlyDisplayed {
return self.reactPageViewController.viewControllers.firstObject;
}
- (UIViewController *)findCachedControllerForView:(UIView *)view {
for (UIViewController *controller in self.cachedControllers) {
if (controller.view.reactTag == view.reactTag) {
return controller;
}
}
return nil;
}
- (void)updateDataSource {
if (!self.currentView && self.reactSubviews.count == 0) {
return;
}
NSInteger newIndex = self.currentView ? [self.reactSubviews indexOfObject:self.currentView] : 0;
if (newIndex == NSNotFound) {
//Current view was removed
NSInteger maxPage = self.reactSubviews.count - 1;
NSInteger fallbackIndex = self.currentIndex >= maxPage ? maxPage : self.currentIndex;
[self goTo:fallbackIndex animated:NO];
} else {
[self goTo:newIndex animated:NO];
}
}
- (void)disableSwipe {
self.reactPageViewController.view.userInteractionEnabled = NO;
}
- (void)enableSwipe {
self.reactPageViewController.view.userInteractionEnabled = YES;
}
- (void)goTo:(NSInteger)index animated:(BOOL)animated {
NSInteger numberOfPages = self.reactSubviews.count;
if (index == _currentIndex) {
return;
}
[self disableSwipe];
_destinationIndex = index;
if (numberOfPages == 0 || index < 0 || index > numberOfPages - 1) {
return;
}
BOOL isRTL = ![self isLtrLayout];
BOOL isForward = (index > self.currentIndex && !isRTL) || (index < self.currentIndex && isRTL);
UIPageViewControllerNavigationDirection direction = isForward ? UIPageViewControllerNavigationDirectionForward : UIPageViewControllerNavigationDirectionReverse;
long diff = labs(index - _currentIndex);
[self goToViewController:index direction:direction animated:(!self.animating && animated) shouldCallOnPageSelected: YES];
if (diff == 0) {
[self goToViewController:index direction:direction animated:NO shouldCallOnPageSelected:YES];
}
}
- (void)goToViewController:(NSInteger)index
direction:(UIPageViewControllerNavigationDirection)direction
animated:(BOOL)animated
shouldCallOnPageSelected:(BOOL)shouldCallOnPageSelected {
UIView *viewToDisplay = self.reactSubviews[index];
UIViewController *controllerToDisplay = [self findAndCacheControllerForView:viewToDisplay];
[self setReactViewControllers:index
with:controllerToDisplay
direction:direction
animated:animated
shouldCallOnPageSelected:shouldCallOnPageSelected];
}
- (UIViewController *)findAndCacheControllerForView:(UIView *)viewToDisplay {
if (!viewToDisplay) { return nil; }
UIViewController *controllerToDisplay = [self findCachedControllerForView:viewToDisplay];
UIViewController *current = [self currentlyDisplayed];
if (!controllerToDisplay && current.view.reactTag == viewToDisplay.reactTag) {
controllerToDisplay = current;
}
if (!controllerToDisplay) {
if (viewToDisplay.reactViewController) {
controllerToDisplay = viewToDisplay.reactViewController;
} else {
controllerToDisplay = [[UIViewController alloc] initWithView:viewToDisplay];
}
}
[self.cachedControllers addObject:controllerToDisplay];
return controllerToDisplay;
}
- (UIViewController *)nextControllerForController:(UIViewController *)controller
inDirection:(UIPageViewControllerNavigationDirection)direction {
NSUInteger numberOfPages = self.reactSubviews.count;
NSInteger index = [self.reactSubviews indexOfObject:controller.view];
if (index == NSNotFound) {
return nil;
}
direction == UIPageViewControllerNavigationDirectionForward ? index++ : index--;
if (index < 0 || (index > (numberOfPages - 1))) {
return nil;
}
UIView *viewToDisplay = self.reactSubviews[index];
return [self findAndCacheControllerForView:viewToDisplay];
}
#pragma mark - UIPageViewControllerDelegate
- (void)pageViewController:(UIPageViewController *)pageViewController
didFinishAnimating:(BOOL)finished
previousViewControllers:(nonnull NSArray<UIViewController *> *)previousViewControllers
transitionCompleted:(BOOL)completed {
if (completed) {
UIViewController* currentVC = [self currentlyDisplayed];
NSUInteger currentIndex = [self.reactSubviews indexOfObject:currentVC.view];
self.currentIndex = currentIndex;
self.currentView = currentVC.view;
[self.eventDispatcher sendEvent:[[RCTOnPageSelected alloc] initWithReactTag:self.reactTag position:@(currentIndex) coalescingKey:_coalescingKey++]];
[self.eventDispatcher sendEvent:[[RCTOnPageScrollEvent alloc] initWithReactTag:self.reactTag position:@(currentIndex) offset:@(0.0)]];
self.lastReportedIndex = currentIndex;
}
}
#pragma mark - UIPageViewControllerDataSource
- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController
viewControllerAfterViewController:(UIViewController *)viewController {
UIPageViewControllerNavigationDirection direction = [self isLtrLayout] ? UIPageViewControllerNavigationDirectionForward : UIPageViewControllerNavigationDirectionReverse;
return [self nextControllerForController:viewController inDirection:direction];
}
- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController
viewControllerBeforeViewController:(UIViewController *)viewController {
UIPageViewControllerNavigationDirection direction = [self isLtrLayout] ? UIPageViewControllerNavigationDirectionReverse : UIPageViewControllerNavigationDirectionForward;
return [self nextControllerForController:viewController inDirection:direction];
}
#pragma mark - UIPageControlDelegate
- (void)pageControlValueChanged:(UIPageControl *)sender {
if (sender.currentPage != self.currentIndex) {
[self goTo:sender.currentPage animated:YES];
}
}
#pragma mark - UIScrollViewDelegate
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
[self.eventDispatcher sendEvent:[[RCTOnPageScrollStateChanged alloc] initWithReactTag:self.reactTag state:@"dragging" coalescingKey:_coalescingKey++]];
}
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
[self.eventDispatcher sendEvent:[[RCTOnPageScrollStateChanged alloc] initWithReactTag:self.reactTag state:@"settling" coalescingKey:_coalescingKey++]];
if (!_overdrag) {
NSInteger maxIndex = self.reactSubviews.count - 1;
BOOL isFirstPage = [self isLtrLayout] ? _currentIndex == 0 : _currentIndex == maxIndex;
BOOL isLastPage = [self isLtrLayout] ? _currentIndex == maxIndex : _currentIndex == 0;
CGFloat contentOffset =[self isHorizontal] ? scrollView.contentOffset.x : scrollView.contentOffset.y;
CGFloat topBound = [self isHorizontal] ? scrollView.bounds.size.width : scrollView.bounds.size.height;
if ((isFirstPage && contentOffset <= topBound) || (isLastPage && contentOffset >= topBound)) {
CGPoint croppedOffset = [self isHorizontal] ? CGPointMake(topBound, 0) : CGPointMake(0, topBound);
*targetContentOffset = croppedOffset;
[self.eventDispatcher sendEvent:[[RCTOnPageScrollStateChanged alloc] initWithReactTag:self.reactTag state:@"idle" coalescingKey:_coalescingKey++]];
}
}
}
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
[self.eventDispatcher sendEvent:[[RCTOnPageScrollStateChanged alloc] initWithReactTag:self.reactTag state:@"idle" coalescingKey:_coalescingKey++]];
}
- (BOOL)isHorizontal {
return self.orientation == UIPageViewControllerNavigationOrientationHorizontal;
}
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGPoint point = scrollView.contentOffset;
float offset = 0;
if (self.isHorizontal) {
if (scrollView.frame.size.width != 0) {
offset = (point.x - scrollView.frame.size.width)/scrollView.frame.size.width;
}
} else {
if (scrollView.frame.size.height != 0) {
offset = (point.y - scrollView.frame.size.height)/scrollView.frame.size.height;
}
}
float absoluteOffset = fabs(offset);
NSInteger position = self.currentIndex;
BOOL isAnimatingBackwards = ([self isLtrLayout] && offset<0) || (![self isLtrLayout] && offset > 0.05f);
if (scrollView.isDragging) {
_destinationIndex = isAnimatingBackwards ? _currentIndex - 1 : _currentIndex + 1;
}
if(isAnimatingBackwards){
position = _destinationIndex;
absoluteOffset = fmax(0, 1 - absoluteOffset);
}
if (!_overdrag) {
NSInteger maxIndex = self.reactSubviews.count - 1;
NSInteger firstPageIndex = [self isLtrLayout] ? 0 : maxIndex;
NSInteger lastPageIndex = [self isLtrLayout] ? maxIndex : 0;
BOOL isFirstPage = _currentIndex == firstPageIndex;
BOOL isLastPage = _currentIndex == lastPageIndex;
CGFloat contentOffset =[self isHorizontal] ? scrollView.contentOffset.x : scrollView.contentOffset.y;
CGFloat topBound = [self isHorizontal] ? scrollView.bounds.size.width : scrollView.bounds.size.height;
if ((isFirstPage && contentOffset <= topBound) || (isLastPage && contentOffset >= topBound)) {
CGPoint croppedOffset = [self isHorizontal] ? CGPointMake(topBound, 0) : CGPointMake(0, topBound);
scrollView.contentOffset = croppedOffset;
absoluteOffset=0;
position = isLastPage ? lastPageIndex : firstPageIndex;
}
}
float interpolatedOffset = absoluteOffset * labs(_destinationIndex - _currentIndex);
self.lastContentOffset = scrollView.contentOffset;
[self.eventDispatcher sendEvent:[[RCTOnPageScrollEvent alloc] initWithReactTag:self.reactTag position:@(position) offset:@(interpolatedOffset)]];
}
- (NSString *)determineScrollDirection:(UIScrollView *)scrollView {
NSString *scrollDirection;
if (self.isHorizontal) {
if (self.lastContentOffset.x > scrollView.contentOffset.x) {
scrollDirection = @"left";
} else if (self.lastContentOffset.x < scrollView.contentOffset.x) {
scrollDirection = @"right";
}
} else {
if (self.lastContentOffset.y > scrollView.contentOffset.y) {
scrollDirection = @"up";
} else if (self.lastContentOffset.y < scrollView.contentOffset.y) {
scrollDirection = @"down";
}
}
return scrollDirection;
}
- (BOOL)isLtrLayout {
return [_layoutDirection isEqualToString:@"ltr"];
}
@end