react-native-navigation的迁移库

RNNNavigationControllerPresenter.m 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. if (options.topBar.background.component.name.hasValue) {
  44. [self presentBackgroundComponent];
  45. }
  46. }
  47. - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options {
  48. [super applyOptionsOnWillMoveToParentViewController:options];
  49. RNNNavigationController* navigationController = self.bindedViewController;
  50. [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] : @""];
  51. }
  52. - (void)applyOptionsBeforePopping:(RNNNavigationOptions *)options {
  53. RNNNavigationController* navigationController = self.bindedViewController;
  54. [navigationController setTopBarBackgroundColor:[options.topBar.background.color getWithDefaultValue:nil]];
  55. [navigationController rnn_setNavigationBarFontFamily:[options.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[options.topBar.title.fontSize getWithDefaultValue:@(17)] color:[options.topBar.title.color getWithDefaultValue:[UIColor blackColor]]];
  56. [navigationController rnn_setNavigationBarLargeTitleVisible:[options.topBar.largeTitle.visible getWithDefaultValue:NO]];
  57. }
  58. - (void)mergeOptions:(RNNNavigationOptions *)newOptions currentOptions:(RNNNavigationOptions *)currentOptions defaultOptions:(RNNNavigationOptions *)defaultOptions {
  59. [super mergeOptions:newOptions currentOptions:currentOptions defaultOptions:defaultOptions];
  60. RNNNavigationController* navigationController = self.bindedViewController;
  61. if (newOptions.popGesture.hasValue) {
  62. [navigationController rnn_setInteractivePopGestureEnabled:newOptions.popGesture.get];
  63. }
  64. if (newOptions.rootBackgroundImage.hasValue) {
  65. [navigationController rnn_setRootBackgroundImage:newOptions.rootBackgroundImage.get];
  66. }
  67. if (newOptions.topBar.testID.hasValue) {
  68. [navigationController rnn_setNavigationBarTestID:newOptions.topBar.testID.get];
  69. }
  70. if (newOptions.topBar.visible.hasValue) {
  71. [navigationController rnn_setNavigationBarVisible:newOptions.topBar.visible.get animated:[newOptions.topBar.animate getWithDefaultValue:YES]];
  72. }
  73. if (newOptions.topBar.hideOnScroll.hasValue) {
  74. [navigationController rnn_hideBarsOnScroll:[newOptions.topBar.hideOnScroll get]];
  75. }
  76. if (newOptions.topBar.noBorder.hasValue) {
  77. [navigationController rnn_setNavigationBarNoBorder:[newOptions.topBar.noBorder get]];
  78. }
  79. if (newOptions.topBar.barStyle.hasValue) {
  80. [navigationController rnn_setBarStyle:[RCTConvert UIBarStyle:newOptions.topBar.barStyle.get]];
  81. }
  82. if (newOptions.topBar.background.translucent.hasValue) {
  83. [navigationController rnn_setNavigationBarTranslucent:[newOptions.topBar.background.translucent get]];
  84. }
  85. if (newOptions.topBar.background.clipToBounds.hasValue) {
  86. [navigationController rnn_setNavigationBarClipsToBounds:[newOptions.topBar.background.clipToBounds get]];
  87. }
  88. if (newOptions.topBar.background.blur.hasValue) {
  89. [navigationController rnn_setNavigationBarBlur:[newOptions.topBar.background.blur get]];
  90. }
  91. if (newOptions.topBar.background.color.hasValue) {
  92. [navigationController setTopBarBackgroundColor:newOptions.topBar.background.color.get];
  93. }
  94. if (newOptions.topBar.largeTitle.visible.hasValue) {
  95. [navigationController rnn_setNavigationBarLargeTitleVisible:newOptions.topBar.largeTitle.visible.get];
  96. }
  97. if (newOptions.topBar.backButton.icon.hasValue || newOptions.topBar.backButton.showTitle.hasValue || newOptions.topBar.backButton.color.hasValue || newOptions.topBar.backButton.title.hasValue) {
  98. [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] : @""];
  99. }
  100. if (newOptions.topBar.backButton.color.hasValue) {
  101. [navigationController rnn_setBackButtonColor:newOptions.topBar.backButton.color.get];
  102. }
  103. RNNLargeTitleOptions *largteTitleOptions = newOptions.topBar.largeTitle;
  104. if (largteTitleOptions.color.hasValue || largteTitleOptions.fontSize.hasValue || largteTitleOptions.fontFamily.hasValue) {
  105. [navigationController rnn_setNavigationBarLargeTitleFontFamily:[newOptions.topBar.largeTitle.fontFamily getWithDefaultValue:nil] fontSize:[newOptions.topBar.largeTitle.fontSize getWithDefaultValue:nil] color:[newOptions.topBar.largeTitle.color getWithDefaultValue:nil]];
  106. }
  107. [navigationController rnn_setNavigationBarFontFamily:[newOptions.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[newOptions.topBar.title.fontSize getWithDefaultValue:nil] color:[newOptions.topBar.title.color getWithDefaultValue:nil]];
  108. if (newOptions.topBar.component.name.hasValue) {
  109. [self setCustomNavigationBarView:newOptions perform:nil];
  110. }
  111. if (newOptions.topBar.background.component.name.hasValue) {
  112. [self setCustomNavigationComponentBackground:newOptions perform:nil];
  113. }
  114. }
  115. - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
  116. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  117. dispatch_group_t group = dispatch_group_create();
  118. dispatch_group_enter(group);
  119. dispatch_async(dispatch_get_main_queue(), ^{
  120. [self setCustomNavigationBarView:options perform:^{
  121. dispatch_group_leave(group);
  122. }];
  123. });
  124. dispatch_group_enter(group);
  125. dispatch_async(dispatch_get_main_queue(), ^{
  126. [self setCustomNavigationComponentBackground:options perform:^{
  127. dispatch_group_leave(group);
  128. }];
  129. });
  130. dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
  131. dispatch_async(dispatch_get_main_queue(), ^{
  132. if (readyBlock) {
  133. readyBlock();
  134. }
  135. });
  136. });
  137. }
  138. - (void)setCustomNavigationBarView:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
  139. RNNNavigationController* navigationController = self.bindedViewController;
  140. if (![options.topBar.component.waitForRender getWithDefaultValue:NO] && readyBlock) {
  141. readyBlock();
  142. readyBlock = nil;
  143. }
  144. if (options.topBar.component.name.hasValue) {
  145. NSString* currentChildComponentId = [navigationController getCurrentChild].layoutInfo.componentId;
  146. RCTRootView *reactView = [_componentRegistry createComponentIfNotExists:options.topBar.component parentComponentId:currentChildComponentId reactViewReadyBlock:readyBlock];
  147. if (_customTopBar) {
  148. [_customTopBar removeFromSuperview];
  149. }
  150. _customTopBar = [[RNNCustomTitleView alloc] initWithFrame:navigationController.navigationBar.bounds subView:reactView alignment:@"fill"];
  151. reactView.backgroundColor = UIColor.clearColor;
  152. _customTopBar.backgroundColor = UIColor.clearColor;
  153. [navigationController.navigationBar addSubview:_customTopBar];
  154. } else {
  155. [_customTopBar removeFromSuperview];
  156. _customTopBar = nil;
  157. if (readyBlock) {
  158. readyBlock();
  159. }
  160. }
  161. }
  162. - (void)setCustomNavigationComponentBackground:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
  163. RNNNavigationController* navigationController = self.bindedViewController;
  164. if (![options.topBar.background.component.waitForRender getWithDefaultValue:NO] && readyBlock) {
  165. readyBlock();
  166. readyBlock = nil;
  167. }
  168. if (options.topBar.background.component.name.hasValue) {
  169. NSString* currentChildComponentId = [navigationController getCurrentChild].layoutInfo.componentId;
  170. RNNReactView *reactView = [_componentRegistry createComponentIfNotExists:options.topBar.background.component parentComponentId:currentChildComponentId reactViewReadyBlock:readyBlock];
  171. _customTopBarBackgroundReactView = reactView;
  172. } else {
  173. [_customTopBarBackground removeFromSuperview];
  174. _customTopBarBackground = nil;
  175. if (readyBlock) {
  176. readyBlock();
  177. }
  178. }
  179. }
  180. - (void)presentBackgroundComponent {
  181. RNNNavigationController* navigationController = self.bindedViewController;
  182. if (_customTopBarBackground) {
  183. [_customTopBarBackground removeFromSuperview];
  184. }
  185. RNNCustomTitleView* customTopBarBackground = [[RNNCustomTitleView alloc] initWithFrame:navigationController.navigationBar.bounds subView:_customTopBarBackgroundReactView alignment:@"fill"];
  186. _customTopBarBackground = customTopBarBackground;
  187. [navigationController.navigationBar insertSubview:_customTopBarBackground atIndex:1];
  188. }
  189. - (void)dealloc {
  190. [_componentRegistry removeComponent:self.bindedComponentId];
  191. }
  192. @end