react-native-navigation的迁移库

RNNCommandsHandler.m 13KB

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