react-native-navigation的迁移库

RNNNavigationControllerPresenter.m 11KB

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