react-native-navigation的迁移库

RNNCommandsHandler.m 12KB

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