1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #import "RNNNavigationStackManager.h"
- #import "RNNErrorHandler.h"
-
- typedef void (^RNNAnimationBlock)(void);
-
- @implementation RNNNavigationStackManager
-
- - (void)push:(UIViewController *)newTop onTop:(UIViewController *)onTopViewController animated:(BOOL)animated animationDelegate:(id)animationDelegate completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
- UINavigationController *nvc = onTopViewController.navigationController;
-
- if (animationDelegate) {
- nvc.delegate = animationDelegate;
- } else {
- nvc.delegate = nil;
- nvc.interactivePopGestureRecognizer.delegate = nil;
- }
-
- [self performAnimationBlock:^{
- [nvc pushViewController:newTop animated:animated];
- } completion:completion];
- }
-
- - (void)pop:(UIViewController *)viewController animated:(BOOL)animated completion:(RNNTransitionCompletionBlock)completion rejection:(RNNTransitionRejectionBlock)rejection {
- [self performAnimationBlock:^{
- [viewController.navigationController popViewControllerAnimated:animated];
- } completion:completion];
- }
-
- - (void)popTo:(UIViewController *)viewController animated:(BOOL)animated completion:(RNNPopCompletionBlock)completion rejection:(RNNTransitionRejectionBlock)rejection; {
- __block NSArray* poppedVCs;
-
- if ([viewController.navigationController.childViewControllers containsObject:viewController]) {
- [self performAnimationBlock:^{
- poppedVCs = [viewController.navigationController popToViewController:viewController animated:animated];
- } completion:^{
- if (completion) {
- completion(poppedVCs);
- }
- }];
- } else {
- [RNNErrorHandler reject:rejection withErrorCode:1011 errorDescription:@"component not found in stack"];
- }
- }
-
- - (void)popToRoot:(UIViewController*)viewController animated:(BOOL)animated completion:(RNNPopCompletionBlock)completion rejection:(RNNTransitionRejectionBlock)rejection {
- __block NSArray* poppedVCs;
-
- [self performAnimationBlock:^{
- poppedVCs = [viewController.navigationController popToRootViewControllerAnimated:animated];
- } completion:^{
- completion(poppedVCs);
- }];
- }
-
- - (void)setStackRoot:(UIViewController *)newRoot fromViewController:(UIViewController *)fromViewController animated:(BOOL)animated completion:(RNNTransitionCompletionBlock)completion rejection:(RNNTransitionRejectionBlock)rejection {
- UINavigationController* nvc = fromViewController.navigationController;
-
- [self performAnimationBlock:^{
- [nvc setViewControllers:@[newRoot] animated:animated];
- } completion:completion];
- }
-
- # pragma mark Private
-
- - (void)performAnimationBlock:(RNNAnimationBlock)animationBlock completion:(RNNTransitionCompletionBlock)completion {
- [CATransaction begin];
- [CATransaction setCompletionBlock:^{
- if (completion) {
- completion();
- }
- }];
-
- animationBlock();
-
- [CATransaction commit];
- }
-
-
- @end
|