2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTWrapperViewController.h"
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
#import <UIKit/UIScrollView.h>
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTEventDispatcher.h"
|
|
|
|
#import "RCTNavItem.h"
|
|
|
|
#import "RCTUtils.h"
|
2015-03-06 00:36:41 +00:00
|
|
|
#import "RCTViewControllerProtocol.h"
|
2015-03-26 09:58:06 +00:00
|
|
|
#import "UIView+React.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@implementation RCTWrapperViewController
|
|
|
|
{
|
2015-03-06 00:36:41 +00:00
|
|
|
UIView *_wrapperView;
|
2015-02-20 04:10:52 +00:00
|
|
|
UIView *_contentView;
|
|
|
|
RCTEventDispatcher *_eventDispatcher;
|
|
|
|
CGFloat _previousTopLayout;
|
|
|
|
CGFloat _previousBottomLayout;
|
|
|
|
}
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
@synthesize currentTopLayoutGuide = _currentTopLayoutGuide;
|
|
|
|
@synthesize currentBottomLayoutGuide = _currentBottomLayoutGuide;
|
|
|
|
|
|
|
|
- (instancetype)initWithContentView:(UIView *)contentView
|
|
|
|
eventDispatcher:(RCTEventDispatcher *)eventDispatcher
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-06-15 14:53:45 +00:00
|
|
|
RCTAssertParam(contentView);
|
|
|
|
RCTAssertParam(eventDispatcher);
|
|
|
|
|
|
|
|
if ((self = [super initWithNibName:nil bundle:nil])) {
|
2015-02-20 04:10:52 +00:00
|
|
|
_contentView = contentView;
|
|
|
|
_eventDispatcher = eventDispatcher;
|
|
|
|
self.automaticallyAdjustsScrollViewInsets = NO;
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
- (instancetype)initWithNavItem:(RCTNavItem *)navItem
|
|
|
|
eventDispatcher:(RCTEventDispatcher *)eventDispatcher
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-06-15 14:53:45 +00:00
|
|
|
if ((self = [self initWithContentView:navItem eventDispatcher:eventDispatcher])) {
|
2015-02-20 04:10:52 +00:00
|
|
|
_navItem = navItem;
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-08-24 10:14:33 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithNibName:(NSString *)nn bundle:(NSBundle *)nb)
|
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithCoder:(NSCoder *)aDecoder)
|
2015-06-15 14:53:45 +00:00
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
- (void)viewWillLayoutSubviews
|
|
|
|
{
|
|
|
|
[super viewWillLayoutSubviews];
|
|
|
|
|
|
|
|
_currentTopLayoutGuide = self.topLayoutGuide;
|
|
|
|
_currentBottomLayoutGuide = self.bottomLayoutGuide;
|
|
|
|
}
|
|
|
|
|
2015-07-16 11:18:12 +00:00
|
|
|
static UIView *RCTFindNavBarShadowViewInView(UIView *view)
|
|
|
|
{
|
|
|
|
if ([view isKindOfClass:[UIImageView class]] && view.bounds.size.height <= 1) {
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
for (UIView *subview in view.subviews) {
|
|
|
|
UIView *shadowView = RCTFindNavBarShadowViewInView(subview);
|
|
|
|
if (shadowView) {
|
|
|
|
return shadowView;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
- (void)viewWillAppear:(BOOL)animated
|
|
|
|
{
|
|
|
|
[super viewWillAppear:animated];
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
// TODO: find a way to make this less-tightly coupled to navigation controller
|
|
|
|
if ([self.parentViewController isKindOfClass:[UINavigationController class]])
|
|
|
|
{
|
2015-04-09 15:52:25 +00:00
|
|
|
[self.navigationController
|
2015-07-16 11:18:12 +00:00
|
|
|
setNavigationBarHidden:_navItem.navigationBarHidden
|
|
|
|
animated:animated];
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
UINavigationBar *bar = self.navigationController.navigationBar;
|
2015-05-07 14:16:59 +00:00
|
|
|
bar.barTintColor = _navItem.barTintColor;
|
|
|
|
bar.tintColor = _navItem.tintColor;
|
2015-06-26 14:06:51 +00:00
|
|
|
bar.translucent = _navItem.translucent;
|
2015-07-16 11:18:12 +00:00
|
|
|
bar.titleTextAttributes = _navItem.titleTextColor ? @{
|
|
|
|
NSForegroundColorAttributeName: _navItem.titleTextColor
|
|
|
|
} : nil;
|
|
|
|
|
|
|
|
RCTFindNavBarShadowViewInView(bar).hidden = _navItem.shadowHidden;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-05-07 14:16:59 +00:00
|
|
|
UINavigationItem *item = self.navigationItem;
|
|
|
|
item.title = _navItem.title;
|
|
|
|
item.backBarButtonItem = _navItem.backButtonItem;
|
|
|
|
if ((item.leftBarButtonItem = _navItem.leftButtonItem)) {
|
|
|
|
item.leftBarButtonItem.target = self;
|
|
|
|
item.leftBarButtonItem.action = @selector(handleNavLeftButtonTapped);
|
2015-03-06 00:36:41 +00:00
|
|
|
}
|
2015-05-07 14:16:59 +00:00
|
|
|
if ((item.rightBarButtonItem = _navItem.rightButtonItem)) {
|
|
|
|
item.rightBarButtonItem.target = self;
|
|
|
|
item.rightBarButtonItem.action = @selector(handleNavRightButtonTapped);
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)loadView
|
|
|
|
{
|
2015-03-11 02:03:59 +00:00
|
|
|
// Add a wrapper so that the wrapper view managed by the
|
|
|
|
// UINavigationController doesn't end up resetting the frames for
|
2015-03-06 00:36:41 +00:00
|
|
|
//`contentView` which is a react-managed view.
|
|
|
|
_wrapperView = [[UIView alloc] initWithFrame:_contentView.bounds];
|
|
|
|
[_wrapperView addSubview:_contentView];
|
|
|
|
self.view = _wrapperView;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-05-07 14:16:59 +00:00
|
|
|
- (void)handleNavLeftButtonTapped
|
|
|
|
{
|
2015-08-11 13:37:12 +00:00
|
|
|
[_eventDispatcher sendInputEventWithName:@"navLeftButtonTap"
|
2015-05-07 14:16:59 +00:00
|
|
|
body:@{@"target":_navItem.reactTag}];
|
|
|
|
}
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
- (void)handleNavRightButtonTapped
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-08-11 13:37:12 +00:00
|
|
|
[_eventDispatcher sendInputEventWithName:@"navRightButtonTap"
|
2015-03-06 00:36:41 +00:00
|
|
|
body:@{@"target":_navItem.reactTag}];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)didMoveToParentViewController:(UIViewController *)parent
|
|
|
|
{
|
2015-03-06 00:36:41 +00:00
|
|
|
// There's no clear setter for navigation controllers, but did move to parent
|
|
|
|
// view controller provides the desired effect. This is called after a pop
|
|
|
|
// finishes, be it a swipe to go back or a standard tap on the back button
|
2015-02-20 04:10:52 +00:00
|
|
|
[super didMoveToParentViewController:parent];
|
|
|
|
if (parent == nil || [parent isKindOfClass:[UINavigationController class]]) {
|
2015-07-16 11:18:12 +00:00
|
|
|
[self.navigationListener wrapperViewController:self
|
|
|
|
didMoveToNavigationController:(UINavigationController *)parent];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|