123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #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 *)newTop onTop:(NSString *)containerId completion:(RNNTransitionCompletionBlock)completion {
- UIViewController *vc = [_store findContainerForId:containerId];
- [self preparePush:newTop onTopVC:vc completion:completion];
- [self waitForContentToAppearAndThen:@selector(pushAfterLoad:)];
- }
-
- -(void)preparePush:(UIViewController *)newTop onTopVC:(UIViewController*)vc completion:(RNNTransitionCompletionBlock)completion {
- self.toVC = (RNNRootViewController*)newTop;
- self.fromVC = vc;
-
- if (self.toVC.isAnimated) {
- RNNRootViewController* newTopRootView = (RNNRootViewController*)newTop;
- vc.navigationController.delegate = newTopRootView;
- } 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(self.toVC.containerId);
- _completionBlock = nil;
- }
- }];
-
- [[self.fromVC navigationController] pushViewController:self.toVC animated:YES];
- [CATransaction commit];
-
- self.toVC = nil;
- self.fromVC.navigationController.interactivePopGestureRecognizer.delegate = nil;
- self.fromVC = nil;
- }
-
- -(void)pop:(NSString *)containerId withAnimationData:(NSDictionary *)animationData {
- UIViewController* vc = [_store findContainerForId:containerId];
- UINavigationController* nvc = [vc navigationController];
- if ([nvc topViewController] == vc) {
- if (animationData) {
- RNNRootViewController* RNNVC = (RNNRootViewController*)vc;
- nvc.delegate = RNNVC;
- [RNNVC.animator setupTransition:animationData];
- [nvc popViewControllerAnimated:YES];
- } else {
- nvc.delegate = nil;
- [nvc popViewControllerAnimated:YES];
- }
- } else {
- NSMutableArray * vcs = nvc.viewControllers.mutableCopy;
- [vcs removeObject:vc];
- [nvc setViewControllers:vcs animated:YES];
- }
- [_store removeContainer:containerId];
- }
-
- -(void)popTo:(NSString*)containerId {
- UIViewController *vc = [_store findContainerForId:containerId];
-
- if (vc) {
- UINavigationController *nvc = [vc navigationController];
- if(nvc) {
- NSArray *poppedVCs = [nvc popToViewController:vc animated:YES];
- [self removePopedViewControllers:poppedVCs];
- }
- }
- }
-
- -(void) popToRoot:(NSString*)containerId {
- UIViewController* vc = [_store findContainerForId:containerId];
- UINavigationController* nvc = [vc navigationController];
- NSArray* poppedVCs = [nvc popToRootViewControllerAnimated:YES];
- [self removePopedViewControllers:poppedVCs];
- }
-
- -(void)removePopedViewControllers:(NSArray*)viewControllers {
- for (UIViewController *popedVC in viewControllers) {
- [_store removeContainerByViewControllerInstance:popedVC];
- }
- }
-
- @end
|