react-native-navigation的迁移库

RNNNavigationControllerPresenter.m 11KB

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