react-native-navigation的迁移库

RNNCommandsHandler.m 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. #import "RNNCommandsHandler.h"
  2. #import "RNNModalManager.h"
  3. #import "RNNNavigationStackManager.h"
  4. #import "RNNOverlayManager.h"
  5. #import "RNNNavigationOptions.h"
  6. #import "RNNRootViewController.h"
  7. #import "RNNSplitViewController.h"
  8. #import "RNNElementFinder.h"
  9. #import "React/RCTUIManager.h"
  10. #import "RNNErrorHandler.h"
  11. static NSString* const setRoot = @"setRoot";
  12. static NSString* const setStackRoot = @"setStackRoot";
  13. static NSString* const push = @"push";
  14. static NSString* const preview = @"preview";
  15. static NSString* const pop = @"pop";
  16. static NSString* const popTo = @"popTo";
  17. static NSString* const popToRoot = @"popToRoot";
  18. static NSString* const showModal = @"showModal";
  19. static NSString* const dismissModal = @"dismissModal";
  20. static NSString* const dismissAllModals = @"dismissAllModals";
  21. static NSString* const showOverlay = @"showOverlay";
  22. static NSString* const dismissOverlay = @"dismissOverlay";
  23. static NSString* const mergeOptions = @"mergeOptions";
  24. static NSString* const setDefaultOptions = @"setDefaultOptions";
  25. @interface RNNCommandsHandler() <RNNModalManagerDelegate>
  26. @end
  27. @implementation RNNCommandsHandler {
  28. RNNControllerFactory *_controllerFactory;
  29. RNNStore *_store;
  30. RNNModalManager* _modalManager;
  31. RNNOverlayManager* _overlayManager;
  32. RNNNavigationStackManager* _stackManager;
  33. RNNEventEmitter* _eventEmitter;
  34. }
  35. - (instancetype)initWithStore:(RNNStore*)store controllerFactory:(RNNControllerFactory*)controllerFactory eventEmitter:(RNNEventEmitter *)eventEmitter {
  36. self = [super init];
  37. _store = store;
  38. _controllerFactory = controllerFactory;
  39. _eventEmitter = eventEmitter;
  40. _modalManager = [[RNNModalManager alloc] init];
  41. _modalManager.delegate = self;
  42. _stackManager = [[RNNNavigationStackManager alloc] init];
  43. _overlayManager = [[RNNOverlayManager alloc] init];
  44. return self;
  45. }
  46. #pragma mark - public
  47. - (void)setRoot:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion {
  48. [self assertReady];
  49. [_modalManager dismissAllModalsAnimated:NO];
  50. [_store removeAllComponents];
  51. UIViewController *vc = [_controllerFactory createLayoutAndSaveToStore:layout[@"root"]];
  52. UIApplication.sharedApplication.delegate.window.rootViewController = vc;
  53. [UIApplication.sharedApplication.delegate.window makeKeyAndVisible];
  54. [_eventEmitter sendOnNavigationCommandCompletion:setRoot params:@{@"layout": layout}];
  55. completion();
  56. }
  57. - (void)mergeOptions:(NSString*)componentId options:(NSDictionary*)mergeOptions completion:(RNNTransitionCompletionBlock)completion {
  58. [self assertReady];
  59. UIViewController<RNNLayoutProtocol>* vc = (UIViewController<RNNLayoutProtocol>*)[_store findComponentForId:componentId];
  60. RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:mergeOptions];
  61. [CATransaction begin];
  62. [CATransaction setCompletionBlock:completion];
  63. [vc.presenter overrideOptions:options];
  64. [vc.presenter presentOn:vc];
  65. [CATransaction commit];
  66. }
  67. - (void)setDefaultOptions:(NSDictionary*)optionsDict completion:(RNNTransitionCompletionBlock)completion {
  68. [self assertReady];
  69. [_controllerFactory.optionsManager setDefaultOptionsDict:optionsDict];
  70. }
  71. - (void)push:(NSString*)componentId layout:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
  72. [self assertReady];
  73. RNNRootViewController *newVc = (RNNRootViewController *)[_controllerFactory createLayoutAndSaveToStore:layout];
  74. UIViewController *fromVC = [_store findComponentForId:componentId];
  75. if ([newVc.presenter.options.preview.reactTag floatValue] > 0) {
  76. UIViewController* vc = [_store findComponentForId:componentId];
  77. if([vc isKindOfClass:[RNNRootViewController class]]) {
  78. RNNRootViewController* rootVc = (RNNRootViewController*)vc;
  79. rootVc.previewController = newVc;
  80. rootVc.previewCallback = ^(UIViewController *vcc) {
  81. RNNRootViewController* rvc = (RNNRootViewController*)vcc;
  82. [self->_eventEmitter sendOnPreviewCompleted:componentId previewComponentId:newVc.layoutInfo.componentId];
  83. if ([newVc.presenter.options.preview.commit floatValue] > 0) {
  84. [CATransaction begin];
  85. [CATransaction setCompletionBlock:^{
  86. [self->_eventEmitter sendOnNavigationCommandCompletion:push params:@{@"componentId": componentId}];
  87. completion();
  88. }];
  89. [rvc.navigationController pushViewController:newVc animated:YES];
  90. [CATransaction commit];
  91. }
  92. };
  93. CGSize size = CGSizeMake(rootVc.view.frame.size.width, rootVc.view.frame.size.height);
  94. if (newVc.presenter.options.preview.width) {
  95. size.width = [newVc.presenter.options.preview.width floatValue];
  96. }
  97. if (newVc.presenter.options.preview.height) {
  98. size.height = [newVc.presenter.options.preview.height floatValue];
  99. }
  100. if (newVc.presenter.options.preview.width || newVc.presenter.options.preview.height) {
  101. newVc.preferredContentSize = size;
  102. }
  103. RCTExecuteOnMainQueue(^{
  104. UIView *view = [[ReactNativeNavigation getBridge].uiManager viewForReactTag:newVc.presenter.options.preview.reactTag];
  105. [rootVc registerForPreviewingWithDelegate:(id)rootVc sourceView:view];
  106. });
  107. }
  108. } else {
  109. id animationDelegate = (newVc.presenter.options.animations.push.hasCustomAnimation || newVc.isCustomTransitioned) ? newVc : nil;
  110. [newVc waitForReactViewRender:(newVc.presenter.options.animations.push.waitForRender || animationDelegate) perform:^{
  111. [_stackManager push:newVc onTop:fromVC animated:newVc.presenter.options.animations.push.enable animationDelegate:animationDelegate completion:^{
  112. [_eventEmitter sendOnNavigationCommandCompletion:push params:@{@"componentId": componentId}];
  113. completion();
  114. } rejection:rejection];
  115. }];
  116. }
  117. }
  118. - (void)setStackRoot:(NSString*)componentId layout:(NSDictionary*)layout completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
  119. [self assertReady];
  120. UIViewController<RNNParentProtocol> *newVC = [_controllerFactory createLayoutAndSaveToStore:layout];
  121. RNNNavigationOptions* options = [newVC getLeafViewController].presenter.options;
  122. UIViewController *fromVC = [_store findComponentForId:componentId];
  123. __weak typeof(RNNEventEmitter*) weakEventEmitter = _eventEmitter;
  124. [_stackManager setStackRoot:newVC fromViewController:fromVC animated:options.animations.setStackRoot.enable completion:^{
  125. [weakEventEmitter sendOnNavigationCommandCompletion:setStackRoot params:@{@"componentId": componentId}];
  126. completion();
  127. } rejection:rejection];
  128. }
  129. - (void)pop:(NSString*)componentId mergeOptions:(NSDictionary*)options completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
  130. [self assertReady];
  131. RNNRootViewController *vc = (RNNRootViewController*)[_store findComponentForId:componentId];
  132. [vc.presenter.options mergeWith:options];
  133. UINavigationController *nvc = vc.navigationController;
  134. if ([nvc topViewController] == vc) {
  135. if (vc.presenter.options.animations.pop) {
  136. nvc.delegate = vc;
  137. } else {
  138. nvc.delegate = nil;
  139. }
  140. } else {
  141. NSMutableArray * vcs = nvc.viewControllers.mutableCopy;
  142. [vcs removeObject:vc];
  143. [nvc setViewControllers:vcs animated:vc.presenter.options.animations.pop.enable];
  144. }
  145. [_stackManager pop:vc animated:vc.presenter.options.animations.pop.enable completion:^{
  146. [_store removeComponent:componentId];
  147. [_eventEmitter sendOnNavigationCommandCompletion:pop params:@{@"componentId": componentId}];
  148. completion();
  149. } rejection:^(NSString *code, NSString *message, NSError *error) {
  150. }];
  151. }
  152. - (void)popTo:(NSString*)componentId mergeOptions:(NSDictionary *)options completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
  153. [self assertReady];
  154. RNNRootViewController *vc = (RNNRootViewController*)[_store findComponentForId:componentId];
  155. [vc.presenter.options mergeWith:options];
  156. [_stackManager popTo:vc animated:vc.presenter.options.animations.pop.enable completion:^(NSArray *poppedViewControllers) {
  157. [_eventEmitter sendOnNavigationCommandCompletion:popTo params:@{@"componentId": componentId}];
  158. [self removePopedViewControllers:poppedViewControllers];
  159. completion();
  160. } rejection:rejection];
  161. }
  162. - (void)popToRoot:(NSString*)componentId mergeOptions:(NSDictionary *)options completion:(RNNTransitionCompletionBlock)completion rejection:(RCTPromiseRejectBlock)rejection {
  163. [self assertReady];
  164. RNNRootViewController *vc = (RNNRootViewController*)[_store findComponentForId:componentId];
  165. [vc.presenter.options mergeWith:options];
  166. [CATransaction begin];
  167. [CATransaction setCompletionBlock:^{
  168. [_eventEmitter sendOnNavigationCommandCompletion:popToRoot params:@{@"componentId": componentId}];
  169. completion();
  170. }];
  171. [_stackManager popToRoot:vc animated:vc.presenter.options.animations.pop.enable completion:^(NSArray *poppedViewControllers) {
  172. [self removePopedViewControllers:poppedViewControllers];
  173. } rejection:^(NSString *code, NSString *message, NSError *error) {
  174. }];
  175. [CATransaction commit];
  176. }
  177. - (void)showModal:(NSDictionary*)layout completion:(RNNTransitionWithComponentIdCompletionBlock)completion {
  178. [self assertReady];
  179. UIViewController<RNNParentProtocol> *newVc = [_controllerFactory createLayoutAndSaveToStore:layout];
  180. [newVc.getLeafViewController waitForReactViewRender:newVc.getLeafViewController.presenter.options.animations.showModal.waitForRender perform:^{
  181. [_modalManager showModal:newVc animated:newVc.getLeafViewController.presenter.options.animations.showModal.enable hasCustomAnimation:newVc.getLeafViewController.presenter.options.animations.showModal.hasCustomAnimation completion:^(NSString *componentId) {
  182. [_eventEmitter sendOnNavigationCommandCompletion:showModal params:@{@"layout": layout}];
  183. completion(componentId);
  184. }];
  185. }];
  186. }
  187. - (void)dismissModal:(NSString*)componentId mergeOptions:(NSDictionary *)options completion:(RNNTransitionCompletionBlock)completion {
  188. [self assertReady];
  189. [CATransaction begin];
  190. [CATransaction setCompletionBlock:^{
  191. [_eventEmitter sendOnNavigationCommandCompletion:dismissModal params:@{@"componentId": componentId}];
  192. }];
  193. UIViewController<RNNParentProtocol> *modalToDismiss = (UIViewController<RNNParentProtocol>*)[_store findComponentForId:componentId];
  194. [modalToDismiss.getLeafViewController.presenter.options mergeWith:options];
  195. [self removePopedViewControllers:modalToDismiss.navigationController.viewControllers];
  196. [_modalManager dismissModal:modalToDismiss completion:completion];
  197. [CATransaction commit];
  198. }
  199. - (void)dismissAllModals:(NSDictionary *)mergeOptions completion:(RNNTransitionCompletionBlock)completion {
  200. [self assertReady];
  201. [CATransaction begin];
  202. [CATransaction setCompletionBlock:^{
  203. [_eventEmitter sendOnNavigationCommandCompletion:dismissAllModals params:@{}];
  204. completion();
  205. }];
  206. RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initWithDict:mergeOptions];
  207. [_modalManager dismissAllModalsAnimated:options.animations.dismissModal.enable];
  208. [CATransaction commit];
  209. }
  210. - (void)showOverlay:(NSDictionary *)layout completion:(RNNTransitionCompletionBlock)completion {
  211. [self assertReady];
  212. UIViewController<RNNParentProtocol>* overlayVC = [_controllerFactory createLayoutAndSaveToStore:layout];
  213. [_overlayManager showOverlay:overlayVC];
  214. [_eventEmitter sendOnNavigationCommandCompletion:showOverlay params:@{@"layout": layout}];
  215. completion();
  216. }
  217. - (void)dismissOverlay:(NSString*)componentId completion:(RNNTransitionCompletionBlock)completion rejection:(RNNTransitionRejectionBlock)reject {
  218. [self assertReady];
  219. UIViewController* viewController = [_store findComponentForId:componentId];
  220. if (viewController) {
  221. [_overlayManager dismissOverlay:viewController];
  222. [_eventEmitter sendOnNavigationCommandCompletion:dismissOverlay params:@{@"componentId": componentId}];
  223. completion();
  224. } else {
  225. [RNNErrorHandler reject:reject withErrorCode:1010 errorDescription:@"ComponentId not found"];
  226. }
  227. }
  228. #pragma mark - private
  229. - (void)removePopedViewControllers:(NSArray*)viewControllers {
  230. for (UIViewController *popedVC in viewControllers) {
  231. [_store removeComponentByViewControllerInstance:popedVC];
  232. }
  233. }
  234. - (void)assertReady {
  235. if (!_store.isReadyToReceiveCommands) {
  236. [[NSException exceptionWithName:@"BridgeNotLoadedError"
  237. reason:@"Bridge not yet loaded! Send commands after Navigation.events().onAppLaunched() has been called."
  238. userInfo:nil]
  239. raise];
  240. }
  241. }
  242. #pragma mark - RNNModalManagerDelegate
  243. - (void)dismissedModal:(UIViewController<RNNParentProtocol> *)viewController {
  244. [_eventEmitter sendModalsDismissedEvent:viewController.layoutInfo.componentId numberOfModalsDismissed:@(1)];
  245. }
  246. - (void)dismissedMultipleModals:(NSArray *)viewControllers {
  247. if (viewControllers && viewControllers.count) {
  248. [_eventEmitter sendModalsDismissedEvent:((UIViewController<RNNParentProtocol> *)viewControllers.lastObject).layoutInfo.componentId numberOfModalsDismissed:@(viewControllers.count)];
  249. }
  250. }
  251. @end