react-native-navigation的迁移库

RNNCommandsHandler.m 11KB

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