react-native-navigation的迁移库

RNNCommandsHandler.m 12KB

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