react-native-navigation的迁移库

RNNNavigationControllerPresenter.m 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. #import "RNNNavigationControllerPresenter.h"
  2. #import "UINavigationController+RNNOptions.h"
  3. #import "RNNNavigationController.h"
  4. #import <React/RCTConvert.h>
  5. #import "RNNCustomTitleView.h"
  6. #import "UIViewController+LayoutProtocol.h"
  7. @interface RNNNavigationControllerPresenter() {
  8. RNNReactComponentRegistry* _componentRegistry;
  9. UIView* _customTopBar;
  10. UIView* _customTopBarBackground;
  11. RNNReactView* _customTopBarBackgroundReactView;
  12. }
  13. @end
  14. @implementation RNNNavigationControllerPresenter
  15. - (instancetype)initWithComponentRegistry:(RNNReactComponentRegistry *)componentRegistry {
  16. self = [super init];
  17. _componentRegistry = componentRegistry;
  18. return self;
  19. }
  20. - (void)applyOptions:(RNNNavigationOptions *)options {
  21. [super applyOptions:options];
  22. RNNNavigationController* navigationController = self.bindedViewController;
  23. self.interactivePopGestureDelegate = [InteractivePopGestureDelegate new];
  24. self.interactivePopGestureDelegate.navigationController = navigationController;
  25. self.interactivePopGestureDelegate.originalDelegate = navigationController.interactivePopGestureRecognizer.delegate;
  26. navigationController.interactivePopGestureRecognizer.delegate = self.interactivePopGestureDelegate;
  27. [navigationController rnn_setInteractivePopGestureEnabled:[options.popGesture getWithDefaultValue:YES]];
  28. [navigationController rnn_setRootBackgroundImage:[options.rootBackgroundImage getWithDefaultValue:nil]];
  29. [navigationController rnn_setNavigationBarTestID:[options.topBar.testID getWithDefaultValue:nil]];
  30. [navigationController rnn_setNavigationBarVisible:[options.topBar.visible getWithDefaultValue:YES] animated:[options.topBar.animate getWithDefaultValue:YES]];
  31. [navigationController rnn_hideBarsOnScroll:[options.topBar.hideOnScroll getWithDefaultValue:NO]];
  32. [navigationController rnn_setNavigationBarNoBorder:[options.topBar.noBorder getWithDefaultValue:NO]];
  33. [navigationController rnn_setBarStyle:[RCTConvert UIBarStyle:[options.topBar.barStyle getWithDefaultValue:@"default"]]];
  34. [navigationController rnn_setNavigationBarTranslucent:[options.topBar.background.translucent getWithDefaultValue:NO]];
  35. [navigationController rnn_setNavigationBarClipsToBounds:[options.topBar.background.clipToBounds getWithDefaultValue:NO]];
  36. [navigationController rnn_setNavigationBarBlur:[options.topBar.background.blur getWithDefaultValue:NO]];
  37. [navigationController setTopBarBackgroundColor:[options.topBar.background.color getWithDefaultValue:nil]];
  38. [navigationController rnn_setNavigationBarLargeTitleVisible:[options.topBar.largeTitle.visible getWithDefaultValue:NO]];
  39. [navigationController rnn_setNavigationBarLargeTitleFontFamily:[options.topBar.largeTitle.fontFamily getWithDefaultValue:nil] fontSize:[options.topBar.largeTitle.fontSize getWithDefaultValue:nil] color:[options.topBar.largeTitle.color getWithDefaultValue:nil]];
  40. [navigationController rnn_setNavigationBarFontFamily:[options.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[options.topBar.title.fontSize getWithDefaultValue:nil] color:[options.topBar.title.color getWithDefaultValue:nil]];
  41. [navigationController rnn_setBackButtonColor:[options.topBar.backButton.color getWithDefaultValue:nil]];
  42. [navigationController rnn_setBackButtonIcon:[options.topBar.backButton.icon getWithDefaultValue:nil] withColor:[options.topBar.backButton.color getWithDefaultValue:nil] title:[options.topBar.backButton.showTitle getWithDefaultValue:YES] ? [options.topBar.backButton.title getWithDefaultValue:nil] : @""];
  43. }
  44. - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options {
  45. [super applyOptionsOnWillMoveToParentViewController:options];
  46. RNNNavigationController* navigationController = self.bindedViewController;
  47. [navigationController rnn_setBackButtonIcon:[options.topBar.backButton.icon getWithDefaultValue:nil] withColor:[options.topBar.backButton.color getWithDefaultValue:nil] title:[options.topBar.backButton.showTitle getWithDefaultValue:YES] ? [options.topBar.backButton.title getWithDefaultValue:nil] : @""];
  48. }
  49. - (void)applyOptionsOnViewDidLayoutSubviews:(RNNNavigationOptions *)options {
  50. if (options.topBar.background.component.name.hasValue) {
  51. [self presentBackgroundComponent];
  52. }
  53. }
  54. - (void)applyOptionsBeforePopping:(RNNNavigationOptions *)options {
  55. RNNNavigationController* navigationController = self.bindedViewController;
  56. [navigationController setTopBarBackgroundColor:[options.topBar.background.color getWithDefaultValue:nil]];
  57. [navigationController rnn_setNavigationBarFontFamily:[options.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[options.topBar.title.fontSize getWithDefaultValue:@(17)] color:[options.topBar.title.color getWithDefaultValue:[UIColor blackColor]]];
  58. [navigationController rnn_setNavigationBarLargeTitleVisible:[options.topBar.largeTitle.visible getWithDefaultValue:NO]];
  59. }
  60. - (void)mergeOptions:(RNNNavigationOptions *)newOptions currentOptions:(RNNNavigationOptions *)currentOptions defaultOptions:(RNNNavigationOptions *)defaultOptions {
  61. [super mergeOptions:newOptions currentOptions:currentOptions defaultOptions:defaultOptions];
  62. RNNNavigationController* navigationController = self.bindedViewController;
  63. if (newOptions.popGesture.hasValue) {
  64. [navigationController rnn_setInteractivePopGestureEnabled:newOptions.popGesture.get];
  65. }
  66. if (newOptions.rootBackgroundImage.hasValue) {
  67. [navigationController rnn_setRootBackgroundImage:newOptions.rootBackgroundImage.get];
  68. }
  69. if (newOptions.topBar.testID.hasValue) {
  70. [navigationController rnn_setNavigationBarTestID:newOptions.topBar.testID.get];
  71. }
  72. if (newOptions.topBar.visible.hasValue) {
  73. [navigationController rnn_setNavigationBarVisible:newOptions.topBar.visible.get animated:[newOptions.topBar.animate getWithDefaultValue:YES]];
  74. }
  75. if (newOptions.topBar.hideOnScroll.hasValue) {
  76. [navigationController rnn_hideBarsOnScroll:[newOptions.topBar.hideOnScroll get]];
  77. }
  78. if (newOptions.topBar.noBorder.hasValue) {
  79. [navigationController rnn_setNavigationBarNoBorder:[newOptions.topBar.noBorder get]];
  80. }
  81. if (newOptions.topBar.barStyle.hasValue) {
  82. [navigationController rnn_setBarStyle:[RCTConvert UIBarStyle:newOptions.topBar.barStyle.get]];
  83. }
  84. if (newOptions.topBar.background.translucent.hasValue) {
  85. [navigationController rnn_setNavigationBarTranslucent:[newOptions.topBar.background.translucent get]];
  86. }
  87. if (newOptions.topBar.background.clipToBounds.hasValue) {
  88. [navigationController rnn_setNavigationBarClipsToBounds:[newOptions.topBar.background.clipToBounds get]];
  89. }
  90. if (newOptions.topBar.background.blur.hasValue) {
  91. [navigationController rnn_setNavigationBarBlur:[newOptions.topBar.background.blur get]];
  92. }
  93. if (newOptions.topBar.background.color.hasValue) {
  94. [navigationController setTopBarBackgroundColor:newOptions.topBar.background.color.get];
  95. }
  96. if (newOptions.topBar.largeTitle.visible.hasValue) {
  97. [navigationController rnn_setNavigationBarLargeTitleVisible:newOptions.topBar.largeTitle.visible.get];
  98. }
  99. if (newOptions.topBar.backButton.icon.hasValue || newOptions.topBar.backButton.showTitle.hasValue || newOptions.topBar.backButton.color.hasValue || newOptions.topBar.backButton.title.hasValue) {
  100. [navigationController rnn_setBackButtonIcon:[newOptions.topBar.backButton.icon getWithDefaultValue:nil] withColor:[newOptions.topBar.backButton.color getWithDefaultValue:nil] title:[newOptions.topBar.backButton.showTitle getWithDefaultValue:YES] ? [newOptions.topBar.backButton.title getWithDefaultValue:nil] : @""];
  101. }
  102. if (newOptions.topBar.backButton.color.hasValue) {
  103. [navigationController rnn_setBackButtonColor:newOptions.topBar.backButton.color.get];
  104. }
  105. RNNLargeTitleOptions *largteTitleOptions = newOptions.topBar.largeTitle;
  106. if (largteTitleOptions.color.hasValue || largteTitleOptions.fontSize.hasValue || largteTitleOptions.fontFamily.hasValue) {
  107. [navigationController rnn_setNavigationBarLargeTitleFontFamily:[newOptions.topBar.largeTitle.fontFamily getWithDefaultValue:nil] fontSize:[newOptions.topBar.largeTitle.fontSize getWithDefaultValue:nil] color:[newOptions.topBar.largeTitle.color getWithDefaultValue:nil]];
  108. }
  109. [navigationController rnn_setNavigationBarFontFamily:[newOptions.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[newOptions.topBar.title.fontSize getWithDefaultValue:nil] color:[newOptions.topBar.title.color getWithDefaultValue:nil]];
  110. if (newOptions.topBar.component.name.hasValue) {
  111. [self setCustomNavigationBarView:newOptions perform:nil];
  112. }
  113. if (newOptions.topBar.background.component.name.hasValue) {
  114. [self setCustomNavigationComponentBackground:newOptions perform:nil];
  115. }
  116. }
  117. - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
  118. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  119. dispatch_group_t group = dispatch_group_create();
  120. dispatch_group_enter(group);
  121. dispatch_async(dispatch_get_main_queue(), ^{
  122. [self setCustomNavigationBarView:options perform:^{
  123. dispatch_group_leave(group);
  124. }];
  125. });
  126. dispatch_group_enter(group);
  127. dispatch_async(dispatch_get_main_queue(), ^{
  128. [self setCustomNavigationComponentBackground:options perform:^{
  129. dispatch_group_leave(group);
  130. }];
  131. });
  132. dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
  133. dispatch_async(dispatch_get_main_queue(), ^{
  134. if (readyBlock) {
  135. readyBlock();
  136. }
  137. });
  138. });
  139. }
  140. - (void)setCustomNavigationBarView:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
  141. RNNNavigationController* navigationController = self.bindedViewController;
  142. if (![options.topBar.component.waitForRender getWithDefaultValue:NO] && readyBlock) {
  143. readyBlock();
  144. readyBlock = nil;
  145. }
  146. if (options.topBar.component.name.hasValue) {
  147. NSString* currentChildComponentId = [navigationController getCurrentChild].layoutInfo.componentId;
  148. RCTRootView *reactView = [_componentRegistry createComponentIfNotExists:options.topBar.component parentComponentId:currentChildComponentId reactViewReadyBlock:readyBlock];
  149. if (_customTopBar) {
  150. [_customTopBar removeFromSuperview];
  151. }
  152. _customTopBar = [[RNNCustomTitleView alloc] initWithFrame:navigationController.navigationBar.bounds subView:reactView alignment:@"fill"];
  153. reactView.backgroundColor = UIColor.clearColor;
  154. _customTopBar.backgroundColor = UIColor.clearColor;
  155. [navigationController.navigationBar addSubview:_customTopBar];
  156. } else {
  157. [_customTopBar removeFromSuperview];
  158. _customTopBar = nil;
  159. if (readyBlock) {
  160. readyBlock();
  161. }
  162. }
  163. }
  164. - (void)setCustomNavigationComponentBackground:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
  165. RNNNavigationController* navigationController = self.bindedViewController;
  166. if (![options.topBar.background.component.waitForRender getWithDefaultValue:NO] && readyBlock) {
  167. readyBlock();
  168. readyBlock = nil;
  169. }
  170. if (options.topBar.background.component.name.hasValue) {
  171. NSString* currentChildComponentId = [navigationController getCurrentChild].layoutInfo.componentId;
  172. RNNReactView *reactView = [_componentRegistry createComponentIfNotExists:options.topBar.background.component parentComponentId:currentChildComponentId reactViewReadyBlock:readyBlock];
  173. _customTopBarBackgroundReactView = reactView;
  174. } else {
  175. [_customTopBarBackground removeFromSuperview];
  176. _customTopBarBackground = nil;
  177. if (readyBlock) {
  178. readyBlock();
  179. }
  180. }
  181. }
  182. - (void)presentBackgroundComponent {
  183. RNNNavigationController* navigationController = self.bindedViewController;
  184. if (_customTopBarBackground) {
  185. [_customTopBarBackground removeFromSuperview];
  186. }
  187. RNNCustomTitleView* customTopBarBackground = [[RNNCustomTitleView alloc] initWithFrame:navigationController.navigationBar.bounds subView:_customTopBarBackgroundReactView alignment:@"fill"];
  188. _customTopBarBackground = customTopBarBackground;
  189. [navigationController.navigationBar insertSubview:_customTopBarBackground atIndex:1];
  190. }
  191. - (void)dealloc {
  192. [_componentRegistry removeComponent:self.bindedComponentId];
  193. }
  194. @end