123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- #import "RNNNavigationStackManager.h"
- #import "RNNRootViewController.h"
- #import "RNNAnimator.h"
-
-
- dispatch_queue_t RCTGetUIManagerQueue(void);
- @implementation RNNNavigationStackManager {
- RNNStore *_store;
- RNNTransitionCompletionBlock _completionBlock;
- }
-
- -(instancetype)initWithStore:(RNNStore*)store {
- self = [super init];
- _store = store;
- return self;
- }
-
- -(void)push:(UIViewController<RNNRootViewProtocol> *)newTop onTop:(NSString *)componentId completion:(RNNTransitionCompletionBlock)completion {
- UIViewController *vc = [_store findComponentForId:componentId];
- [self preparePush:newTop onTopVC:vc completion:completion];
- if ([newTop isCustomViewController]) {
- [self pushAfterLoad:nil];
- } else {
- [self waitForContentToAppearAndThen:@selector(pushAfterLoad:)];
- }
- }
-
- -(void)preparePush:(UIViewController<RNNRootViewProtocol> *)newTop onTopVC:(UIViewController*)vc completion:(RNNTransitionCompletionBlock)completion {
- self.toVC = (RNNRootViewController*)newTop;
- self.fromVC = vc;
-
-
- if (self.toVC.options.animations.push || self.toVC.isCustomTransitioned) {
- vc.navigationController.delegate = newTop;
- } else {
- vc.navigationController.delegate = nil;
- self.fromVC.navigationController.interactivePopGestureRecognizer.delegate = nil;
- }
-
- _completionBlock = completion;
- }
-
- -(void)waitForContentToAppearAndThen:(SEL)nameOfSelector {
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:nameOfSelector
- name: @"RCTContentDidAppearNotification"
- object:nil];
- }
-
- -(void)pushAfterLoad:(NSDictionary*)notif {
- [[NSNotificationCenter defaultCenter] removeObserver:self name:@"RCTContentDidAppearNotification" object:nil];
- [CATransaction begin];
- [CATransaction setCompletionBlock:^{
- if (_completionBlock) {
- _completionBlock();
- _completionBlock = nil;
- }
- }];
-
- [[self.fromVC navigationController] pushViewController:self.toVC animated:self.toVC.isAnimated];
- [CATransaction commit];
-
- self.toVC = nil;
- self.fromVC.navigationController.interactivePopGestureRecognizer.delegate = nil;
- self.fromVC = nil;
- }
-
- -(void)pop:(NSString *)componentId withTransitionOptions:(RNNAnimationOptions *)transitionOptions {
- RNNRootViewController* vc = (RNNRootViewController*)[_store findComponentForId:componentId];
- UINavigationController* nvc = [vc navigationController];
- if ([nvc topViewController] == vc) {
- if (vc.options.animations.pop) {
- nvc.delegate = vc;
- [nvc popViewControllerAnimated:vc.isAnimated];
- } else {
- nvc.delegate = nil;
- [nvc popViewControllerAnimated:vc.isAnimated];
- }
- } else {
- NSMutableArray * vcs = nvc.viewControllers.mutableCopy;
- [vcs removeObject:vc];
- [nvc setViewControllers:vcs animated:YES];
- }
- [_store removeComponent:componentId];
- }
-
- -(void)popTo:(NSString*)componentId {
- UIViewController *vc = [_store findComponentForId:componentId];
-
- if (vc) {
- UINavigationController *nvc = [vc navigationController];
- if(nvc) {
- NSArray *poppedVCs = [nvc popToViewController:vc animated:YES];
- [self removePopedViewControllers:poppedVCs];
- }
- }
- }
-
- -(void)popToRoot:(NSString*)componentId {
- UIViewController* vc = [_store findComponentForId:componentId];
- UINavigationController* nvc = [vc navigationController];
- NSArray* poppedVCs = [nvc popToRootViewControllerAnimated:YES];
- [self removePopedViewControllers:poppedVCs];
- }
-
- -(void)setRoot:(UIViewController<RNNRootViewProtocol> *)newRoot fromComponent:(NSString *)componentId completion:(RNNTransitionCompletionBlock)completion {
- UIViewController* vc = [_store findComponentForId:componentId];
- UINavigationController* nvc = [vc navigationController];
- [CATransaction begin];
- [CATransaction setCompletionBlock:^{
- if (completion) {
- completion();
- }
- }];
-
- [nvc setViewControllers:@[newRoot] animated:[newRoot.options.animated boolValue]];
-
- [CATransaction commit];
- }
-
- -(void)removePopedViewControllers:(NSArray*)viewControllers {
- for (UIViewController *popedVC in viewControllers) {
- [_store removeComponentByViewControllerInstance:popedVC];
- }
- }
-
- @end
|