123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- #import "RNNCommandsHandler.h"
- #import "RNNModalManager.h"
- #import "RNNNavigationStackManager.h"
- #import "RNNOverlayManager.h"
- #import "RNNNavigationOptions.h"
- #import "RNNRootViewController.h"
- #import "RNNSplitViewController.h"
- #import "RNNElementFinder.h"
- #import "React/RCTUIManager.h"
- #import "RNNErrorHandler.h"
-
- static NSString* const setRoot = @"setRoot";
- static NSString* const setStackRoot = @"setStackRoot";
- static NSString* const push = @"push";
- static NSString* const preview = @"preview";
- static NSString* const pop = @"pop";
- static NSString* const popTo = @"popTo";
- static NSString* const popToRoot = @"popToRoot";
- static NSString* const showModal = @"showModal";
- static NSString* const dismissModal = @"dismissModal";
- static NSString* const dismissAllModals = @"dismissAllModals";
- static NSString* const showOverlay = @"showOverlay";
- static NSString* const dismissOverlay = @"dismissOverlay";
- static NSString* const mergeOptions = @"mergeOptions";
- static NSString* const setDefaultOptions = @"setDefaultOptions";
-
- @implementation RNNCommandsHandler {
- RNNControllerFactory *_controllerFactory;
- RNNStore *_store;
- RNNModalManager* _modalManager;
- RNNOverlayManager* _overlayManager;
- RNNNavigationStackManager* _stackManager;
- RNNEventEmitter* _eventEmitter;
- }
-
- - (instancetype)initWithStore:(RNNStore*)store controllerFactory:(RNNControllerFactory*)controllerFactory eventEmitter:(RNNEventEmitter *)eventEmitter {
- self = [super init];
- _store = store;
- _controllerFactory = controllerFactory;
- _eventEmitter = eventEmitter;
- _modalManager = [[RNNModalManager alloc] initWithStore:_store];
- _stackManager = [[RNNNavigationStackManager alloc] init];
- _overlayManager = [[RNNOverlayManager alloc] init];
- return self;
- }
-
- #pragma mark - public
-
- - (void)setRoot:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
-
- [_modalManager dismissAllModals];
-
- UIViewController *vc = [_controllerFactory createLayoutAndSaveToStore:layout[@"root"]];
-
- UIApplication.sharedApplication.delegate.window.rootViewController = vc;
- [UIApplication.sharedApplication.delegate.window makeKeyAndVisible];
- [_eventEmitter sendOnNavigationCommandCompletion:setRoot params:@{@"layout": layout}];
- completion();
- }
-
- - (void)mergeOptions:(NSString*)componentId options:(NSDictionary*)options completion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
-
- UIViewController* vc = [_store findComponentForId:componentId];
- if([vc isKindOfClass:[RNNRootViewController class]]) {
- RNNRootViewController* rootVc = (RNNRootViewController*)vc;
- [rootVc.options mergeWith:options];
- [CATransaction begin];
- [CATransaction setCompletionBlock:completion];
-
- [rootVc.options applyOn:vc];
-
- [CATransaction commit];
- }
-
- if ([vc isKindOfClass:[RNNSplitViewController class]]) {
- RNNSplitViewController* splitVc = (RNNSplitViewController*)vc;
- [splitVc.options mergeWith:options];
- [CATransaction begin];
- [CATransaction setCompletionBlock:completion];
-
- [splitVc.options applyOn:vc];
-
- [CATransaction commit];
- }
-
- }
-
- - (void)setDefaultOptions:(NSDictionary*)optionsDict completion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
- [_controllerFactory setDefaultOptionsDict:optionsDict];
- }
-
- - (void)push:(NSString*)componentId layout:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
- [self assertReady];
-
- RNNRootViewController *newVc = (RNNRootViewController *)[_controllerFactory createLayoutAndSaveToStore:layout];
- UIViewController *fromVC = [_store findComponentForId:componentId];
-
- if (newVc.options.preview.elementId) {
- UIViewController* vc = [_store findComponentForId:componentId];
-
- if([vc isKindOfClass:[RNNRootViewController class]]) {
- RNNRootViewController* rootVc = (RNNRootViewController*)vc;
- rootVc.previewController = newVc;
-
- RNNElementFinder* elementFinder = [[RNNElementFinder alloc] initWithFromVC:vc];
- RNNElementView* elementView = [elementFinder findElementForId:newVc.options.preview.elementId];
-
- CGSize size = CGSizeMake(rootVc.view.frame.size.width, rootVc.view.frame.size.height);
-
- if (newVc.options.preview.width) {
- size.width = [newVc.options.preview.width floatValue];
- }
-
- if (newVc.options.preview.height) {
- size.height = [newVc.options.preview.height floatValue];
- }
-
- if (newVc.options.preview.width || newVc.options.preview.height) {
- newVc.preferredContentSize = size;
- }
-
- [rootVc registerForPreviewingWithDelegate:(id)rootVc sourceView:elementView];
- }
- } else {
- id animationDelegate = (newVc.options.animations.push.hasCustomAnimation || newVc.isCustomTransitioned) ? newVc : nil;
- [newVc waitForReactViewRender:(newVc.options.animations.push.waitForRender || animationDelegate) perform:^{
- [_stackManager push:newVc onTop:fromVC animated:newVc.options.animations.push.enable animationDelegate:animationDelegate completion:^{
- [_eventEmitter sendOnNavigationCommandCompletion:push params:@{@"componentId": componentId}];
- completion();
- } rejection:rejection];
- }];
- }
- }
-
- - (void)setStackRoot:(NSString*)componentId layout:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
- [self assertReady];
-
- UIViewController<RNNRootViewProtocol> *newVC = [_controllerFactory createLayoutAndSaveToStore:layout];
- RNNNavigationOptions* options = [newVC getLeafViewController].options;
- UIViewController *fromVC = [_store findComponentForId:componentId];
- __weak typeof(RNNEventEmitter*) weakEventEmitter = _eventEmitter;
- [_stackManager setStackRoot:newVC fromViewController:fromVC animated:options.animations.setStackRoot.enable completion:^{
- [weakEventEmitter sendOnNavigationCommandCompletion:setStackRoot params:@{@"componentId": componentId}];
- completion();
- } rejection:rejection];
- }
-
- - (void)pop:(NSString*)componentId options:(NSDictionary*)options completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
- [self assertReady];
-
- RNNRootViewController *vc = (RNNRootViewController*)[_store findComponentForId:componentId];
- UINavigationController *nvc = vc.navigationController;
-
- if ([nvc topViewController] == vc) {
- if (vc.options.animations.pop) {
- nvc.delegate = vc;
- } else {
- nvc.delegate = nil;
- }
- } else {
- NSMutableArray * vcs = nvc.viewControllers.mutableCopy;
- [vcs removeObject:vc];
- [nvc setViewControllers:vcs animated:vc.options.animations.pop.enable];
- }
-
- [_stackManager pop:vc animated:vc.options.animations.pop.enable completion:^{
- [_store removeComponent:componentId];
- [_eventEmitter sendOnNavigationCommandCompletion:pop params:@{@"componentId": componentId}];
- completion();
- } rejection:^(NSString *code, NSString *message, NSError *error) {
-
- }];
- }
-
- - (void)popTo:(NSString*)componentId completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
- [self assertReady];
- RNNRootViewController *vc = (RNNRootViewController*)[_store findComponentForId:componentId];
-
- [_stackManager popTo:vc animated:vc.options.animations.pop.enable completion:^(NSArray *poppedViewControllers) {
- [_eventEmitter sendOnNavigationCommandCompletion:popTo params:@{@"componentId": componentId}];
- [self removePopedViewControllers:poppedViewControllers];
- completion();
- } rejection:rejection];
- }
-
- -(void) popToRoot:(NSString*)componentId completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
- [self assertReady];
- RNNRootViewController *newVc = (RNNRootViewController*)[_store findComponentForId:componentId];
-
- [CATransaction begin];
- [CATransaction setCompletionBlock:^{
- [_eventEmitter sendOnNavigationCommandCompletion:popToRoot params:@{@"componentId": componentId}];
- completion();
- }];
-
- [_stackManager popToRoot:newVc animated:newVc.options.animations.pop.enable completion:^(NSArray *poppedViewControllers) {
- [self removePopedViewControllers:poppedViewControllers];
- } rejection:^(NSString *code, NSString *message, NSError *error) {
-
- }];
-
- [CATransaction commit];
- }
-
- - (void)showModal:(NSDictionary*)layout completion:(RNNTransitionWithComponentIdCompletionBlock)completion {
- [self assertReady];
-
- UIViewController<RNNRootViewProtocol> *newVc = [_controllerFactory createLayoutAndSaveToStore:layout];
- [_modalManager showModal:newVc animated:newVc.getLeafViewController.options.animations.showModal.enable completion:^(NSString *componentId) {
- [_eventEmitter sendOnNavigationCommandCompletion:showModal params:@{@"layout": layout}];
- completion(componentId);
- }];
- }
-
- - (void)dismissModal:(NSString*)componentId completion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
-
- [CATransaction begin];
- [CATransaction setCompletionBlock:^{
- [_eventEmitter sendOnNavigationCommandCompletion:dismissModal params:@{@"componentId": componentId}];
- }];
-
- [_modalManager dismissModal:componentId completion:completion];
-
- [CATransaction commit];
- }
-
- - (void)dismissAllModalsWithCompletion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
-
- [CATransaction begin];
- [CATransaction setCompletionBlock:^{
- [_eventEmitter sendOnNavigationCommandCompletion:dismissAllModals params:@{}];
- completion();
- }];
-
- [_modalManager dismissAllModals];
-
- [CATransaction commit];
- }
-
- - (void)showOverlay:(NSDictionary *)layout completion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
-
- UIViewController<RNNRootViewProtocol>* overlayVC = [_controllerFactory createOverlay:layout];
- [_overlayManager showOverlay:overlayVC];
- [_eventEmitter sendOnNavigationCommandCompletion:showOverlay params:@{@"layout": layout}];
- completion();
- }
-
- - (void)dismissOverlay:(NSString*)componentId completion:(RNNTransitionCompletionBlock)completion rejection:(RNNTransitionRejectionBlock)reject {
- [self assertReady];
- UIViewController* viewController = [_store findComponentForId:componentId];
- if (viewController) {
- [_overlayManager dismissOverlay:viewController];
- [_eventEmitter sendOnNavigationCommandCompletion:dismissOverlay params:@{@"componentId": componentId}];
- completion();
- } else {
- [RNNErrorHandler reject:reject withErrorCode:1010 errorDescription:@"ComponentId not found"];
- }
- }
-
- #pragma mark - private
-
- - (void)removePopedViewControllers:(NSArray*)viewControllers {
- for (UIViewController *popedVC in viewControllers) {
- [_store removeComponentByViewControllerInstance:popedVC];
- }
- }
-
- - (void)assertReady {
- if (!_store.isReadyToReceiveCommands) {
- [[NSException exceptionWithName:@"BridgeNotLoadedError"
- reason:@"Bridge not yet loaded! Send commands after Navigation.events().onAppLaunched() has been called."
- userInfo:nil]
- raise];
- }
- }
-
- @end
|