react-native-navigation的迁移库

RNNRootViewController.m 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. #import "RNNRootViewController.h"
  2. #import <React/RCTConvert.h>
  3. #import "RNNAnimator.h"
  4. #import "RNNCustomTitleView.h"
  5. #import "RNNPushAnimation.h"
  6. @interface RNNRootViewController()
  7. @property (nonatomic, strong) NSString* componentName;
  8. @property (nonatomic) BOOL _statusBarHidden;
  9. @property (nonatomic) BOOL isExternalComponent;
  10. @end
  11. @implementation RNNRootViewController
  12. -(instancetype)initWithName:(NSString*)name
  13. withOptions:(RNNNavigationOptions*)options
  14. withComponentId:(NSString*)componentId
  15. rootViewCreator:(id<RNNRootViewCreator>)creator
  16. eventEmitter:(RNNEventEmitter*)eventEmitter
  17. isExternalComponent:(BOOL)isExternalComponent {
  18. self = [super init];
  19. self.componentId = componentId;
  20. self.componentName = name;
  21. self.options = options;
  22. self.eventEmitter = eventEmitter;
  23. self.animator = [[RNNAnimator alloc] initWithTransitionOptions:self.options.customTransition];
  24. self.creator = creator;
  25. self.isExternalComponent = isExternalComponent;
  26. if (!self.isExternalComponent) {
  27. self.view = [creator createRootView:self.componentName rootViewId:self.componentId];
  28. }
  29. [[NSNotificationCenter defaultCenter] addObserver:self
  30. selector:@selector(onJsReload)
  31. name:RCTJavaScriptWillStartLoadingNotification
  32. object:nil];
  33. self.navigationController.delegate = self;
  34. return self;
  35. }
  36. -(void)viewWillAppear:(BOOL)animated{
  37. [super viewWillAppear:animated];
  38. [self.options applyOn:self];
  39. [self setCustomNavigationTitleView];
  40. [self setCustomNavigationBarView];
  41. [self setCustomNavigationComponentBackground];
  42. }
  43. -(void)viewDidAppear:(BOOL)animated {
  44. [super viewDidAppear:animated];
  45. [self.eventEmitter sendComponentDidAppear:self.componentId componentName:self.componentName];
  46. }
  47. - (void)viewWillDisappear:(BOOL)animated {
  48. [super viewWillDisappear:animated];
  49. }
  50. -(void)viewDidDisappear:(BOOL)animated {
  51. [super viewDidDisappear:animated];
  52. [self.eventEmitter sendComponentDidDisappear:self.componentId componentName:self.componentName];
  53. }
  54. - (void)viewDidLoad {
  55. [super viewDidLoad];
  56. }
  57. - (void)mergeOptions:(NSDictionary *)options {
  58. [self.options mergeIfEmptyWith:options];
  59. }
  60. - (void)setCustomNavigationTitleView {
  61. if (self.options.topBar.title.component) {
  62. RCTRootView *reactView = (RCTRootView*)[_creator createRootView:self.options.topBar.title.component rootViewId:self.options.topBar.title.component];
  63. RNNCustomTitleView *titleView = [[RNNCustomTitleView alloc] initWithFrame:self.navigationController.navigationBar.bounds subView:reactView alignment:self.options.topBar.title.componentAlignment];
  64. reactView.backgroundColor = UIColor.clearColor;
  65. titleView.backgroundColor = UIColor.clearColor;
  66. self.navigationItem.titleView = titleView;
  67. }
  68. }
  69. - (void)setCustomNavigationBarView {
  70. if (self.options.topBar.componentName) {
  71. RCTRootView *reactView = (RCTRootView*)[_creator createRootView:self.options.topBar.componentName rootViewId:@"navBar"];
  72. RNNCustomTitleView *titleView = [[RNNCustomTitleView alloc] initWithFrame:self.navigationController.navigationBar.bounds subView:reactView alignment:@"fill"];
  73. reactView.backgroundColor = UIColor.clearColor;
  74. titleView.backgroundColor = UIColor.clearColor;
  75. [self.navigationController.navigationBar addSubview:titleView];
  76. }
  77. }
  78. - (void)setCustomNavigationComponentBackground {
  79. if (self.options.topBar.backgroundComponentName) {
  80. RCTRootView *reactView = (RCTRootView*)[_creator createRootView:self.options.topBar.backgroundComponentName rootViewId:@"navBarBackground"];
  81. RNNCustomTitleView *titleView = [[RNNCustomTitleView alloc] initWithFrame:self.navigationController.navigationBar.bounds subView:reactView alignment:@"fill"];
  82. [self.navigationController.navigationBar insertSubview:titleView atIndex:1];
  83. }
  84. }
  85. -(BOOL)isCustomTransitioned {
  86. return self.options.customTransition.animations != nil;
  87. }
  88. - (BOOL)isAnimated {
  89. return self.options.animated ? [self.options.animated boolValue] : YES;
  90. }
  91. - (BOOL)isCustomViewController {
  92. return self.isExternalComponent;
  93. }
  94. - (BOOL)prefersStatusBarHidden {
  95. if ([self.options.statusBarHidden boolValue]) {
  96. return YES;
  97. } else if ([self.options.statusBarHideWithTopBar boolValue]) {
  98. return self.navigationController.isNavigationBarHidden;
  99. }
  100. return NO;
  101. }
  102. - (UIStatusBarStyle)preferredStatusBarStyle {
  103. if (self.options.statusBarStyle && [self.options.statusBarStyle isEqualToString:@"light"]) {
  104. return UIStatusBarStyleLightContent;
  105. } else {
  106. return UIStatusBarStyleDefault;
  107. }
  108. }
  109. - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
  110. return self.options.supportedOrientations;
  111. }
  112. - (BOOL)hidesBottomBarWhenPushed
  113. {
  114. if (self.options.bottomTabs && self.options.bottomTabs.visible) {
  115. return ![self.options.bottomTabs.visible boolValue];
  116. }
  117. return NO;
  118. }
  119. - (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated{
  120. RNNRootViewController* vc = (RNNRootViewController*)viewController;
  121. if (![vc.options.backButtonTransition isEqualToString:@"custom"]){
  122. navigationController.delegate = nil;
  123. }
  124. }
  125. - (id<UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
  126. animationControllerForOperation:(UINavigationControllerOperation)operation
  127. fromViewController:(UIViewController*)fromVC
  128. toViewController:(UIViewController*)toVC {
  129. {
  130. if (self.animator) {
  131. return self.animator;
  132. } else if (operation == UINavigationControllerOperationPush && self.options.animations.push) {
  133. return [[RNNPushAnimation alloc] initWithScreenTransition:self.options.animations.push];
  134. } else if (operation == UINavigationControllerOperationPop && self.options.animations.pop) {
  135. return [[RNNPushAnimation alloc] initWithScreenTransition:self.options.animations.pop];
  136. } else {
  137. return nil;
  138. }
  139. }
  140. return nil;
  141. }
  142. - (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source {
  143. return [[RNNModalAnimation alloc] initWithScreenTransition:self.options.animations.showModal isDismiss:NO];
  144. }
  145. - (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed {
  146. return [[RNNModalAnimation alloc] initWithScreenTransition:self.options.animations.dismissModal isDismiss:YES];
  147. }
  148. -(void)applyTabBarItem {
  149. [self.options.bottomTab applyOn:self];
  150. }
  151. -(void)applyTopTabsOptions {
  152. [self.options.topTab applyOn:self];
  153. }
  154. /**
  155. * fix for #877, #878
  156. */
  157. -(void)onJsReload {
  158. [self cleanReactLeftovers];
  159. }
  160. /**
  161. * fix for #880
  162. */
  163. -(void)dealloc {
  164. [self cleanReactLeftovers];
  165. }
  166. -(void)cleanReactLeftovers {
  167. [[NSNotificationCenter defaultCenter] removeObserver:self];
  168. [[NSNotificationCenter defaultCenter] removeObserver:self.view];
  169. self.view = nil;
  170. }
  171. @end