123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
-
-
-
-
-
-
-
- @interface RNNNavigationControllerPresenter() {
- RNNReactComponentRegistry* _componentRegistry
- UIView* _customTopBar
- UIView* _customTopBarBackground
- RNNReactView* _customTopBarBackgroundReactView
- }
-
- @end
- @implementation RNNNavigationControllerPresenter
-
- - (instancetype)initWithComponentRegistry:(RNNReactComponentRegistry *)componentRegistry {
- self = [super init]
- _componentRegistry = componentRegistry
- return self
- }
-
- - (void)applyOptions:(RNNNavigationOptions *)options {
- [super applyOptions:options]
-
- RNNNavigationController* navigationController = self.boundViewController;
-
- self.interactivePopGestureDelegate = [InteractivePopGestureDelegate new]
- self.interactivePopGestureDelegate.navigationController = navigationController
- self.interactivePopGestureDelegate.originalDelegate = navigationController.interactivePopGestureRecognizer.delegate
- navigationController.interactivePopGestureRecognizer.delegate = self.interactivePopGestureDelegate
-
- [navigationController rnn_setInteractivePopGestureEnabled:[options.popGesture getWithDefaultValue:YES]]
- [navigationController rnn_setRootBackgroundImage:[options.rootBackgroundImage getWithDefaultValue:nil]]
- [navigationController rnn_setNavigationBarTestID:[options.topBar.testID getWithDefaultValue:nil]]
- [navigationController rnn_setNavigationBarVisible:[options.topBar.visible getWithDefaultValue:YES] animated:[options.topBar.animate getWithDefaultValue:YES]]
- [navigationController rnn_hideBarsOnScroll:[options.topBar.hideOnScroll getWithDefaultValue:NO]]
- [navigationController rnn_setNavigationBarNoBorder:[options.topBar.noBorder getWithDefaultValue:NO]]
- [navigationController rnn_setBarStyle:[RCTConvert UIBarStyle:[options.topBar.barStyle getWithDefaultValue:@"default"]]]
- [navigationController rnn_setNavigationBarTranslucent:[options.topBar.background.translucent getWithDefaultValue:NO]]
- [navigationController rnn_setNavigationBarClipsToBounds:[options.topBar.background.clipToBounds getWithDefaultValue:NO]]
- [navigationController rnn_setNavigationBarBlur:[options.topBar.background.blur getWithDefaultValue:NO]]
- [navigationController setTopBarBackgroundColor:[options.topBar.background.color getWithDefaultValue:nil]]
- [navigationController rnn_setNavigationBarLargeTitleVisible:[options.topBar.largeTitle.visible getWithDefaultValue:NO]]
- [navigationController rnn_setNavigationBarLargeTitleFontFamily:[options.topBar.largeTitle.fontFamily getWithDefaultValue:nil] fontSize:[options.topBar.largeTitle.fontSize getWithDefaultValue:nil] color:[options.topBar.largeTitle.color getWithDefaultValue:nil]]
- [navigationController rnn_setNavigationBarFontFamily:[options.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[options.topBar.title.fontSize getWithDefaultValue:nil] color:[options.topBar.title.color getWithDefaultValue:nil]]
- [navigationController rnn_setBackButtonColor:[options.topBar.backButton.color getWithDefaultValue:nil]]
- }
-
- - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options {
- [super applyOptionsOnWillMoveToParentViewController:options]
- }
-
- - (void)applyOptionsOnViewDidLayoutSubviews:(RNNNavigationOptions *)options {
- if (options.topBar.background.component.name.hasValue) {
- [self presentBackgroundComponent]
- }
- }
-
- - (void)applyOptionsBeforePopping:(RNNNavigationOptions *)options {
- RNNNavigationController* navigationController = self.boundViewController;
- [navigationController setTopBarBackgroundColor:[options.topBar.background.color getWithDefaultValue:nil]]
- [navigationController rnn_setNavigationBarFontFamily:[options.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[options.topBar.title.fontSize getWithDefaultValue:nil] color:[options.topBar.title.color getWithDefaultValue:[UIColor blackColor]]];
- [navigationController rnn_setNavigationBarLargeTitleVisible:[options.topBar.largeTitle.visible getWithDefaultValue:NO]]
- }
-
- - (void)mergeOptions:(RNNNavigationOptions *)newOptions currentOptions:(RNNNavigationOptions *)currentOptions defaultOptions:(RNNNavigationOptions *)defaultOptions {
- [super mergeOptions:newOptions currentOptions:currentOptions defaultOptions:defaultOptions]
-
- RNNNavigationController* navigationController = self.boundViewController;
-
- if (newOptions.popGesture.hasValue) {
- [navigationController rnn_setInteractivePopGestureEnabled:newOptions.popGesture.get]
- }
-
- if (newOptions.rootBackgroundImage.hasValue) {
- [navigationController rnn_setRootBackgroundImage:newOptions.rootBackgroundImage.get]
- }
-
- if (newOptions.topBar.testID.hasValue) {
- [navigationController rnn_setNavigationBarTestID:newOptions.topBar.testID.get]
- }
-
- if (newOptions.topBar.visible.hasValue) {
- [navigationController rnn_setNavigationBarVisible:newOptions.topBar.visible.get animated:[newOptions.topBar.animate getWithDefaultValue:YES]]
- }
-
- if (newOptions.topBar.hideOnScroll.hasValue) {
- [navigationController rnn_hideBarsOnScroll:[newOptions.topBar.hideOnScroll get]]
- }
-
- if (newOptions.topBar.noBorder.hasValue) {
- [navigationController rnn_setNavigationBarNoBorder:[newOptions.topBar.noBorder get]]
- }
-
- if (newOptions.topBar.barStyle.hasValue) {
- [navigationController rnn_setBarStyle:[RCTConvert UIBarStyle:newOptions.topBar.barStyle.get]];
- }
-
- if (newOptions.topBar.background.translucent.hasValue) {
- [navigationController rnn_setNavigationBarTranslucent:[newOptions.topBar.background.translucent get]]
- }
-
- if (newOptions.topBar.background.clipToBounds.hasValue) {
- [navigationController rnn_setNavigationBarClipsToBounds:[newOptions.topBar.background.clipToBounds get]]
- }
-
- if (newOptions.topBar.background.blur.hasValue) {
- [navigationController rnn_setNavigationBarBlur:[newOptions.topBar.background.blur get]]
- }
-
- if (newOptions.topBar.background.color.hasValue) {
- [navigationController setTopBarBackgroundColor:newOptions.topBar.background.color.get];
- }
-
- if (newOptions.topBar.largeTitle.visible.hasValue) {
- [navigationController rnn_setNavigationBarLargeTitleVisible:newOptions.topBar.largeTitle.visible.get]
- }
-
- if (newOptions.topBar.backButton.color.hasValue) {
- [navigationController rnn_setBackButtonColor:newOptions.topBar.backButton.color.get];
- }
-
-
- RNNLargeTitleOptions *largteTitleOptions = newOptions.topBar.largeTitle
- if (largteTitleOptions.color.hasValue || largteTitleOptions.fontSize.hasValue || largteTitleOptions.fontFamily.hasValue) {
- [navigationController rnn_setNavigationBarLargeTitleFontFamily:[newOptions.topBar.largeTitle.fontFamily getWithDefaultValue:nil] fontSize:[newOptions.topBar.largeTitle.fontSize getWithDefaultValue:nil] color:[newOptions.topBar.largeTitle.color getWithDefaultValue:nil]]
- }
-
- [navigationController rnn_setNavigationBarFontFamily:[newOptions.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[newOptions.topBar.title.fontSize getWithDefaultValue:nil] color:[newOptions.topBar.title.color getWithDefaultValue:nil]]
-
- if (newOptions.topBar.component.name.hasValue) {
- [self setCustomNavigationBarView:newOptions perform:nil]
- }
-
- if (newOptions.topBar.background.component.name.hasValue) {
- [self setCustomNavigationComponentBackground:newOptions perform:nil]
- }
- }
-
- - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
- dispatch_group_t group = dispatch_group_create();
-
- dispatch_group_enter(group);
- dispatch_async(dispatch_get_main_queue(), ^{
- [self setCustomNavigationBarView:options perform:^{
- dispatch_group_leave(group);
- }]
- })
-
- dispatch_group_enter(group);
- dispatch_async(dispatch_get_main_queue(), ^{
- [self setCustomNavigationComponentBackground:options perform:^{
- dispatch_group_leave(group);
- }]
- })
-
- dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
-
- dispatch_async(dispatch_get_main_queue(), ^{
- if (readyBlock) {
- readyBlock()
- }
- })
- })
- }
-
- - (void)setCustomNavigationBarView:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
- RNNNavigationController* navigationController = self.boundViewController;
- if (![options.topBar.component.waitForRender getWithDefaultValue:NO] && readyBlock) {
- readyBlock()
- readyBlock = nil
- }
- if (options.topBar.component.name.hasValue) {
- NSString* currentChildComponentId = [navigationController getCurrentChild].layoutInfo.componentId
- RCTRootView *reactView = [_componentRegistry createComponentIfNotExists:options.topBar.component parentComponentId:currentChildComponentId reactViewReadyBlock:readyBlock]
-
- if (_customTopBar) {
- [_customTopBar removeFromSuperview]
- }
- _customTopBar = [[RNNCustomTitleView alloc] initWithFrame:navigationController.navigationBar.bounds subView:reactView alignment:@"fill"]
- reactView.backgroundColor = UIColor.clearColor
- _customTopBar.backgroundColor = UIColor.clearColor
- [navigationController.navigationBar addSubview:_customTopBar];
- } else {
- [_customTopBar removeFromSuperview]
- _customTopBar = nil
- if (readyBlock) {
- readyBlock()
- }
- }
- }
-
- - (void)setCustomNavigationComponentBackground:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock {
- RNNNavigationController* navigationController = self.boundViewController;
- if (![options.topBar.background.component.waitForRender getWithDefaultValue:NO] && readyBlock) {
- readyBlock()
- readyBlock = nil
- }
- if (options.topBar.background.component.name.hasValue) {
- NSString* currentChildComponentId = [navigationController getCurrentChild].layoutInfo.componentId
- RNNReactView *reactView = [_componentRegistry createComponentIfNotExists:options.topBar.background.component parentComponentId:currentChildComponentId reactViewReadyBlock:readyBlock]
- _customTopBarBackgroundReactView = reactView
-
- } else {
- [_customTopBarBackground removeFromSuperview]
- _customTopBarBackground = nil
- if (readyBlock) {
- readyBlock()
- }
- }
- }
-
- - (void)presentBackgroundComponent {
- RNNNavigationController* navigationController = self.boundViewController;
- if (_customTopBarBackground) {
- [_customTopBarBackground removeFromSuperview]
- }
- RNNCustomTitleView* customTopBarBackground = [[RNNCustomTitleView alloc] initWithFrame:navigationController.navigationBar.bounds subView:_customTopBarBackgroundReactView alignment:@"fill"]
- _customTopBarBackground = customTopBarBackground
-
- [navigationController.navigationBar insertSubview:_customTopBarBackground atIndex:1]
- }
-
- - (void)dealloc {
- [_componentRegistry removeComponent:self.boundComponentId];
- }
-
- @end
|