react-native-navigation的迁移库

RNNCommandsHandler.m 14KB

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