react-native-navigation的迁移库

RNNNavigationOptions.m 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. #import "RNNNavigationOptions.h"
  2. #import <React/RCTConvert.h>
  3. #import "RNNNavigationController.h"
  4. #import "RNNTabBarController.h"
  5. #import "RNNTopBarOptions.h"
  6. #import "RNNSideMenuController.h"
  7. #import "RNNRootViewController.h"
  8. #import "RNNNavigationButtons.h"
  9. const NSInteger BLUR_STATUS_TAG = 78264801;
  10. const NSInteger BLUR_TOPBAR_TAG = 78264802;
  11. const NSInteger TOP_BAR_TRANSPARENT_TAG = 78264803;
  12. @implementation RNNNavigationOptions
  13. -(instancetype)init {
  14. return [self initWithDict:@{}];
  15. }
  16. -(instancetype)initWithDict:(NSDictionary *)options {
  17. self = [super init];
  18. self.statusBarHidden = [options objectForKey:@"statusBarHidden"];
  19. self.screenBackgroundColor = [options objectForKey:@"screenBackgroundColor"];
  20. self.backButtonTransition = [options objectForKey:@"backButtonTransition"];
  21. self.orientation = [options objectForKey:@"orientation"];
  22. self.topBar = [[RNNTopBarOptions alloc] initWithDict:[options objectForKey:@"topBar"]];
  23. self.topTab = [[RNNTopTabOptions alloc] initWithDict:[options objectForKey:@"topTab"]];
  24. self.bottomTabs = [[RNNBottomTabsOptions alloc] initWithDict:[options objectForKey:@"bottomTabs"]];
  25. self.sideMenu = [[RNNSideMenuOptions alloc] initWithDict:[options objectForKey:@"sideMenu"]];
  26. self.backgroundImage = [RCTConvert UIImage:[options objectForKey:@"backgroundImage"]];
  27. self.rootBackgroundImage = [RCTConvert UIImage:[options objectForKey:@"rootBackgroundImage"]];
  28. self.bottomTab = [[RNNBottomTabOptions alloc] initWithDict:[options objectForKey:@"bottomTab"]];
  29. self.overlay = [[RNNOverlayOptions alloc] initWithDict:[options objectForKey:@"overlay"]];
  30. self.animated = [options objectForKey:@"animated"];
  31. self.customTransition = [[RNNTransitionOptions alloc] initWithDict:[options objectForKey:@"customTransition"]];
  32. return self;
  33. }
  34. -(void)mergeWith:(NSDictionary *)otherOptions {
  35. for (id key in otherOptions) {
  36. if ([[self valueForKey:key] isKindOfClass:[RNNOptions class]]) {
  37. RNNOptions* options = [self valueForKey:key];
  38. [options mergeWith:[otherOptions objectForKey:key]];
  39. } else {
  40. [self setValue:[otherOptions objectForKey:key] forKey:key];
  41. }
  42. }
  43. }
  44. -(void)applyOn:(UIViewController*)viewController {
  45. [_defaultOptions applyOn:viewController];
  46. [self.topBar applyOn:viewController];
  47. [self.bottomTabs applyOn:viewController];
  48. [self.topTab applyOn:viewController];
  49. [self.bottomTab applyOn:viewController];
  50. [self.sideMenu applyOn:viewController];
  51. [self.overlay applyOn:viewController];
  52. [self applyOtherOptionsOn:viewController];
  53. }
  54. - (void)applyOtherOptionsOn:(UIViewController*)viewController {
  55. if (self.popGesture) {
  56. viewController.navigationController.interactivePopGestureRecognizer.enabled = [self.popGesture boolValue];
  57. }
  58. if (self.screenBackgroundColor) {
  59. UIColor* screenColor = [RCTConvert UIColor:self.screenBackgroundColor];
  60. viewController.view.backgroundColor = screenColor;
  61. }
  62. if (self.statusBarBlur) {
  63. UIView* curBlurView = [viewController.view viewWithTag:BLUR_STATUS_TAG];
  64. if ([self.statusBarBlur boolValue]) {
  65. if (!curBlurView) {
  66. UIVisualEffectView *blur = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
  67. blur.frame = [[UIApplication sharedApplication] statusBarFrame];
  68. blur.tag = BLUR_STATUS_TAG;
  69. [viewController.view insertSubview:blur atIndex:0];
  70. }
  71. } else {
  72. if (curBlurView) {
  73. [curBlurView removeFromSuperview];
  74. }
  75. }
  76. }
  77. if (self.backgroundImage) {
  78. UIImageView* backgroundImageView = (viewController.view.subviews.count > 0) ? viewController.view.subviews[0] : nil;
  79. if (![backgroundImageView isKindOfClass:[UIImageView class]]) {
  80. backgroundImageView = [[UIImageView alloc] initWithFrame:viewController.view.bounds];
  81. [viewController.view insertSubview:backgroundImageView atIndex:0];
  82. }
  83. backgroundImageView.layer.masksToBounds = YES;
  84. backgroundImageView.image = self.backgroundImage;
  85. [backgroundImageView setContentMode:UIViewContentModeScaleAspectFill];
  86. }
  87. if (self.rootBackgroundImage) {
  88. UIImageView* backgroundImageView = (viewController.navigationController.view.subviews.count > 0) ? viewController.navigationController.view.subviews[0] : nil;
  89. if (![backgroundImageView isKindOfClass:[UIImageView class]]) {
  90. backgroundImageView = [[UIImageView alloc] initWithFrame:viewController.view.bounds];
  91. [viewController.navigationController.view insertSubview:backgroundImageView atIndex:0];
  92. }
  93. backgroundImageView.layer.masksToBounds = YES;
  94. backgroundImageView.image = self.rootBackgroundImage;
  95. [backgroundImageView setContentMode:UIViewContentModeScaleAspectFill];
  96. }
  97. }
  98. - (UIInterfaceOrientationMask)supportedOrientations {
  99. NSArray* orientationsArray = [self.orientation isKindOfClass:[NSString class]] ? @[self.orientation] : self.orientation;
  100. NSUInteger supportedOrientationsMask = 0;
  101. if (!orientationsArray || [self.orientation isEqual:@"default"]) {
  102. return [[UIApplication sharedApplication] supportedInterfaceOrientationsForWindow:[[UIApplication sharedApplication] keyWindow]];
  103. } else {
  104. for (NSString* orientation in orientationsArray) {
  105. if ([orientation isEqualToString:@"all"]) {
  106. supportedOrientationsMask = UIInterfaceOrientationMaskAll;
  107. break;
  108. }
  109. if ([orientation isEqualToString:@"landscape"]) {
  110. supportedOrientationsMask = (supportedOrientationsMask | UIInterfaceOrientationMaskLandscape);
  111. }
  112. if ([orientation isEqualToString:@"portrait"]) {
  113. supportedOrientationsMask = (supportedOrientationsMask | UIInterfaceOrientationMaskPortrait);
  114. }
  115. if ([orientation isEqualToString:@"upsideDown"]) {
  116. supportedOrientationsMask = (supportedOrientationsMask | UIInterfaceOrientationMaskPortraitUpsideDown);
  117. }
  118. }
  119. }
  120. return supportedOrientationsMask;
  121. }
  122. @end