123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- #import "RNNCommandsHandler.h"
- #import "RNNModalManager.h"
- #import "RNNNavigationStackManager.h"
- #import "RNNNavigationOptions.h"
- #import "RNNRootViewController.h"
- #import "React/RCTUIManager.h"
-
- @implementation RNNCommandsHandler {
- RNNControllerFactory *_controllerFactory;
- RNNStore *_store;
- RCTBridge* _bridge;
- RNNNavigationStackManager* _navigationStackManager;
- RNNModalManager* _modalManager;
- }
-
- -(instancetype) initWithStore:(RNNStore*)store controllerFactory:(RNNControllerFactory*)controllerFactory andBridge:(RCTBridge*)bridge {
- self = [super init];
- _bridge = bridge;
- _store = store;
- _controllerFactory = controllerFactory;
- _navigationStackManager = [[RNNNavigationStackManager alloc] initWithStore:_store];
- _modalManager = [[RNNModalManager alloc] initWithStore:_store];
- return self;
- }
-
- #pragma mark - public
-
- -(void) setRoot:(NSDictionary*)layout {
- [self assertReady];
-
- [_modalManager dismissAllModals];
-
- UIViewController *vc = [_controllerFactory createLayoutAndSaveToStore:layout];
-
- UIApplication.sharedApplication.delegate.window.rootViewController = vc;
- [UIApplication.sharedApplication.delegate.window makeKeyAndVisible];
- }
-
- -(void) setOptions:(NSString*)containerId options:(NSDictionary*)options {
- [self assertReady];
-
- UIViewController* vc = [_store findContainerForId:containerId];
- if([vc isKindOfClass:[RNNRootViewController class]]) {
- RNNRootViewController* rootVc = (RNNRootViewController*)vc;
- [rootVc.navigationOptions mergeWith:options];
- [rootVc.navigationOptions applyOn:vc];
- [rootVc applyNavigationButtons];
- }
- }
-
- -(void) push:(NSString*)containerId layout:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
- UIViewController *newVc = [_controllerFactory createLayoutAndSaveToStore:layout];
- UIViewController *fromVc = [_store findContainerForId:containerId];
- [_bridge.uiManager setAvailableSize:fromVc.view.bounds.size forRootView:newVc.view];
- [_navigationStackManager push:newVc onTop:containerId completion:completion];
- }
-
- -(void)pop:(NSString*)containerId options:(NSDictionary*)options{
- [self assertReady];
- NSDictionary* animationData = options[@"customTransition"];
- if (animationData){
- if ([animationData objectForKey:@"animations"]) {
- [_navigationStackManager pop:containerId withAnimationData:animationData];
- } else {
- [[NSException exceptionWithName:NSInvalidArgumentException reason:@"unsupported transitionAnimation" userInfo:nil] raise];
- }
- } else {
- [_navigationStackManager pop:containerId withAnimationData:nil];
- }
-
- }
-
- -(void) popTo:(NSString*)containerId {
- [self assertReady];
-
- [_navigationStackManager popTo:containerId];
- }
-
- -(void) popToRoot:(NSString*)containerId {
- [self assertReady];
-
- [_navigationStackManager popToRoot:containerId];
- }
-
- -(void) showModal:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion {
- [self assertReady];
-
- UIViewController *newVc = [_controllerFactory createLayoutAndSaveToStore:layout];
- [_modalManager showModal:newVc completion:completion];
- }
-
- -(void) dismissModal:(NSString*)containerId {
- [self assertReady];
-
- [_modalManager dismissModal:containerId];
- }
-
- -(void) dismissAllModals {
- [self assertReady];
-
- [_modalManager dismissAllModals];
- }
-
- #pragma mark - private
-
- -(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
|