1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #import "RNNBridgeModule.h"
-
- #import "RNN.h"
- #import "RNNControllerFactory.h"
- #import "RNNReactRootViewCreator.h"
- #import "RNNStore.h"
-
- @implementation RNNBridgeModule
-
- RCT_EXPORT_MODULE();
-
- - (dispatch_queue_t)methodQueue
- {
- return dispatch_get_main_queue();
- }
-
- RCT_EXPORT_METHOD(setRoot:(NSDictionary*)layout)
- {
- [self assertReady];
- RNNControllerFactory *factory = [[RNNControllerFactory alloc] initWithRootViewCreator:[RNNReactRootViewCreator new] store:[RNN instance].store];
- UIViewController *vc = [factory createLayout:layout];
-
- UIApplication.sharedApplication.delegate.window.rootViewController = vc;
- [UIApplication.sharedApplication.delegate.window makeKeyAndVisible];
- }
-
- RCT_EXPORT_METHOD(push:(NSString*)containerId layout:(NSDictionary*)layout)
- {
- [self assertReady];
- //TODO implement correctly
- RNNControllerFactory *factory = [[RNNControllerFactory alloc] initWithRootViewCreator:[RNNReactRootViewCreator new] store:[RNN instance].store];
- UIViewController *newVc = [factory createLayout:layout];
-
- id vc = [[RNN instance].store findContainerForId:containerId];
-
- [[vc navigationController]pushViewController:newVc animated:true];
- }
-
- RCT_EXPORT_METHOD(pop:(NSString*)containerId)
- {
- [self assertReady];
- //TODO implement correctly
- id vc = [UIApplication.sharedApplication.delegate.window.rootViewController childViewControllers][0];
- [[vc navigationController] popViewControllerAnimated:true];
- }
-
- - (void)assertReady
- {
- if (![RNN instance].isReadyToReceiveCommands) {
- @throw [NSException exceptionWithName:@"BridgeNotLoadedError" reason:@"Bridge not yet loaded! Send commands after Navigation.events().onAppLaunched() has been called." userInfo:nil];
- }
- }
-
- @end
-
|