123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
-
- #import "RNNCommandsHandler.h"
-
- #import "RNNModalManager.h"
- #import "RNNNavigationStackManager.h"
-
- @implementation RNNCommandsHandler {
- RNNControllerFactory *_controllerFactory;
- RNNStore *_store;
- RNNNavigationStackManager* _navigationStackManager;
- RNNModalManager* _modalManager;
- }
-
- -(instancetype) initWithStore:(RNNStore*)store controllerFactory:(RNNControllerFactory*)controllerFactory {
- self = [super init];
- _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];
-
- NSString* title = options[@"title"];
- NSString* topBarTextColor = options[@"topBarTextColor"];
-
- [vc setTitle:title];
-
- int rgb = [[topBarTextColor substringFromIndex:1] intValue];
- UIColor* color = [UIColor colorWithRed:((float)((rgb & 0xFF0000) >> 16))/255.0 \
- green:((float)((rgb & 0x00FF00) >> 8))/255.0 \
- blue:((float)((rgb & 0x0000FF) >> 0))/255.0 \
- alpha:1.0];
- vc.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: color};
-
- }
-
- -(void) push:(NSString*)containerId layout:(NSDictionary*)layout {
- [self assertReady];
- UIViewController *newVc = [_controllerFactory createLayoutAndSaveToStore:layout];
- [_navigationStackManager push:newVc onTop:containerId];
- }
-
- -(void) pop:(NSString*)containerId {
- [self assertReady];
- [_navigationStackManager pop:containerId];
- }
-
- -(void) popTo:(NSString*)containerId {
- [self assertReady];
- [_navigationStackManager popTo:containerId];
- }
-
- -(void) popToRoot:(NSString*)containerId {
- [self assertReady];
- [_navigationStackManager popToRoot:containerId];
- }
-
- -(void) showModal:(NSDictionary*)layout {
- [self assertReady];
- UIViewController *newVc = [_controllerFactory createLayoutAndSaveToStore:layout];
- [_modalManager showModal:newVc];
- }
-
- -(void) dismissModal:(NSString*)containerId {
- [self assertReady];
- [_modalManager dismissModal:containerId];
- }
-
- -(void) dismissAllModals {
- [self assertReady];
- [_modalManager dismissAllModals];
- }
-
- #pragma mark - private
-
- -(void) assertReady {
- if (!_store.isReadyToReceiveCommands) {
- @throw [NSException exceptionWithName:@"BridgeNotLoadedError" reason:@"Bridge not yet loaded! Send commands after Navigation.events().onAppLaunched() has been called." userInfo:nil];
- }
- }
-
- @end
|