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 "RCTRootView.h"
|
2015-10-26 22:39:06 +00:00
|
|
|
#import "RCTRootViewDelegate.h"
|
|
|
|
#import "RCTRootViewInternal.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
#import <objc/runtime.h>
|
|
|
|
|
2015-05-12 14:44:38 +00:00
|
|
|
#import "RCTAssert.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTBridge.h"
|
|
|
|
#import "RCTEventDispatcher.h"
|
|
|
|
#import "RCTKeyCommands.h"
|
|
|
|
#import "RCTLog.h"
|
2015-06-19 21:59:42 +00:00
|
|
|
#import "RCTPerformanceLogger.h"
|
2015-03-13 00:49:54 +00:00
|
|
|
#import "RCTSourceCode.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTTouchHandler.h"
|
|
|
|
#import "RCTUIManager.h"
|
|
|
|
#import "RCTUtils.h"
|
2015-05-04 17:35:49 +00:00
|
|
|
#import "RCTView.h"
|
2015-03-26 09:58:06 +00:00
|
|
|
#import "UIView+React.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
NSString *const RCTContentDidAppearNotification = @"RCTContentDidAppearNotification";
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
@interface RCTBridge (RCTRootView)
|
|
|
|
|
|
|
|
@property (nonatomic, weak, readonly) RCTBridge *batchedBridge;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
@interface RCTUIManager (RCTRootView)
|
|
|
|
|
|
|
|
- (NSNumber *)allocateRootTag;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
@interface RCTRootContentView : RCTView <RCTInvalidating>
|
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
@property (nonatomic, readonly) BOOL contentHasAppeared;
|
|
|
|
|
2015-08-24 10:14:33 +00:00
|
|
|
- (instancetype)initWithFrame:(CGRect)frame bridge:(RCTBridge *)bridge NS_DESIGNATED_INITIALIZER;
|
2015-05-04 17:35:49 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@implementation RCTRootView
|
|
|
|
{
|
|
|
|
RCTBridge *_bridge;
|
2015-04-02 14:33:21 +00:00
|
|
|
NSString *_moduleName;
|
2015-03-26 01:59:42 +00:00
|
|
|
NSDictionary *_launchOptions;
|
2015-10-30 16:26:22 +00:00
|
|
|
NSDictionary *_initialProperties;
|
2015-05-04 17:35:49 +00:00
|
|
|
RCTRootContentView *_contentView;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-05-26 11:14:31 +00:00
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge
|
2015-04-02 14:33:21 +00:00
|
|
|
moduleName:(NSString *)moduleName
|
2015-08-17 11:38:19 +00:00
|
|
|
initialProperties:(NSDictionary *)initialProperties
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-05-12 14:44:38 +00:00
|
|
|
RCTAssertMainThread();
|
2015-04-02 14:33:21 +00:00
|
|
|
RCTAssert(bridge, @"A bridge instance is required to create an RCTRootView");
|
|
|
|
RCTAssert(moduleName, @"A moduleName is required to create an RCTRootView");
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-06-15 14:53:45 +00:00
|
|
|
if ((self = [super initWithFrame:CGRectZero])) {
|
2015-04-11 22:08:00 +00:00
|
|
|
|
|
|
|
self.backgroundColor = [UIColor whiteColor];
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
_bridge = bridge;
|
|
|
|
_moduleName = moduleName;
|
2015-08-17 11:38:19 +00:00
|
|
|
_initialProperties = [initialProperties copy];
|
2015-10-30 16:26:22 +00:00
|
|
|
_appProperties = [initialProperties copy];
|
2015-05-28 20:16:06 +00:00
|
|
|
_loadingViewFadeDelay = 0.25;
|
|
|
|
_loadingViewFadeDuration = 0.25;
|
2015-10-26 22:39:04 +00:00
|
|
|
_sizeFlexibility = RCTRootViewSizeFlexibilityNone;
|
2015-04-11 22:08:00 +00:00
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
2015-05-04 17:35:49 +00:00
|
|
|
selector:@selector(javaScriptDidLoad:)
|
2015-04-11 22:08:00 +00:00
|
|
|
name:RCTJavaScriptDidLoadNotification
|
|
|
|
object:_bridge];
|
2015-05-28 20:16:06 +00:00
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(hideLoadingView)
|
|
|
|
name:RCTContentDidAppearNotification
|
|
|
|
object:self];
|
2015-08-17 11:38:19 +00:00
|
|
|
if (!_bridge.loading) {
|
2015-05-04 17:35:49 +00:00
|
|
|
[self bundleFinishedLoading:_bridge.batchedBridge];
|
2015-04-11 22:08:00 +00:00
|
|
|
}
|
2015-05-28 20:16:06 +00:00
|
|
|
|
|
|
|
[self showLoadingView];
|
2015-04-02 14:33:21 +00:00
|
|
|
}
|
|
|
|
return self;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:59:42 +00:00
|
|
|
- (instancetype)initWithBundleURL:(NSURL *)bundleURL
|
|
|
|
moduleName:(NSString *)moduleName
|
2015-08-17 11:38:19 +00:00
|
|
|
initialProperties:(NSDictionary *)initialProperties
|
2015-03-26 01:59:42 +00:00
|
|
|
launchOptions:(NSDictionary *)launchOptions
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-04-11 22:08:00 +00:00
|
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:bundleURL
|
|
|
|
moduleProvider:nil
|
|
|
|
launchOptions:launchOptions];
|
2015-04-02 14:33:21 +00:00
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
return [self initWithBridge:bridge moduleName:moduleName initialProperties:initialProperties];
|
2015-04-02 14:33:21 +00:00
|
|
|
}
|
|
|
|
|
2015-08-24 10:14:33 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithFrame:(CGRect)frame)
|
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithCoder:(NSCoder *)aDecoder)
|
2015-06-15 14:53:45 +00:00
|
|
|
|
2015-05-26 11:14:31 +00:00
|
|
|
- (void)setBackgroundColor:(UIColor *)backgroundColor
|
|
|
|
{
|
2015-05-27 09:30:57 +00:00
|
|
|
super.backgroundColor = backgroundColor;
|
2015-05-26 11:14:31 +00:00
|
|
|
_contentView.backgroundColor = backgroundColor;
|
|
|
|
}
|
|
|
|
|
2015-07-31 18:23:29 +00:00
|
|
|
- (UIViewController *)reactViewController
|
2015-04-15 00:51:28 +00:00
|
|
|
{
|
2015-07-31 18:23:29 +00:00
|
|
|
return _reactViewController ?: [super reactViewController];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 00:33:54 +00:00
|
|
|
- (BOOL)canBecomeFirstResponder
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
- (void)setLoadingView:(UIView *)loadingView
|
|
|
|
{
|
|
|
|
_loadingView = loadingView;
|
|
|
|
if (!_contentView.contentHasAppeared) {
|
|
|
|
[self showLoadingView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)showLoadingView
|
|
|
|
{
|
|
|
|
if (_loadingView && !_contentView.contentHasAppeared) {
|
|
|
|
_loadingView.hidden = NO;
|
|
|
|
[self addSubview:_loadingView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)hideLoadingView
|
|
|
|
{
|
|
|
|
if (_loadingView.superview == self && _contentView.contentHasAppeared) {
|
2015-10-06 17:32:04 +00:00
|
|
|
if (_loadingViewFadeDuration > 0) {
|
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(_loadingViewFadeDelay * NSEC_PER_SEC)),
|
|
|
|
dispatch_get_main_queue(), ^{
|
|
|
|
|
|
|
|
[UIView transitionWithView:self
|
|
|
|
duration:_loadingViewFadeDuration
|
|
|
|
options:UIViewAnimationOptionTransitionCrossDissolve
|
|
|
|
animations:^{
|
|
|
|
_loadingView.hidden = YES;
|
|
|
|
} completion:^(__unused BOOL finished) {
|
|
|
|
[_loadingView removeFromSuperview];
|
|
|
|
}];
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_loadingView.hidden = YES;
|
|
|
|
[_loadingView removeFromSuperview];
|
|
|
|
}
|
2015-05-28 20:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
- (void)javaScriptDidLoad:(NSNotification *)notification
|
|
|
|
{
|
2015-08-21 18:33:04 +00:00
|
|
|
RCTAssertMainThread();
|
2015-05-04 17:35:49 +00:00
|
|
|
RCTBridge *bridge = notification.userInfo[@"bridge"];
|
2015-08-21 18:33:04 +00:00
|
|
|
[self bundleFinishedLoading:bridge];
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)bundleFinishedLoading:(RCTBridge *)bridge
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-08-17 11:38:19 +00:00
|
|
|
if (!bridge.valid) {
|
|
|
|
return;
|
|
|
|
}
|
2015-04-10 14:28:10 +00:00
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
[_contentView removeFromSuperview];
|
|
|
|
_contentView = [[RCTRootContentView alloc] initWithFrame:self.bounds bridge:bridge];
|
|
|
|
_contentView.backgroundColor = self.backgroundColor;
|
|
|
|
[self insertSubview:_contentView atIndex:0];
|
|
|
|
|
2015-10-30 16:26:22 +00:00
|
|
|
[self runApplication:bridge];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)runApplication:(RCTBridge *)bridge
|
|
|
|
{
|
2015-08-17 11:38:19 +00:00
|
|
|
NSString *moduleName = _moduleName ?: @"";
|
|
|
|
NSDictionary *appParameters = @{
|
|
|
|
@"rootTag": _contentView.reactTag,
|
2015-10-30 16:26:22 +00:00
|
|
|
@"initialProps": _appProperties ?: @{},
|
2015-08-17 11:38:19 +00:00
|
|
|
};
|
2015-05-28 20:16:06 +00:00
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
[bridge enqueueJSCall:@"AppRegistry.runApplication"
|
|
|
|
args:@[moduleName, appParameters]];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-26 22:39:04 +00:00
|
|
|
- (void)setSizeFlexibility:(RCTRootViewSizeFlexibility)sizeFlexibility
|
|
|
|
{
|
|
|
|
_sizeFlexibility = sizeFlexibility;
|
|
|
|
[self setNeedsLayout];
|
|
|
|
}
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
- (void)layoutSubviews
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-04-02 14:33:21 +00:00
|
|
|
[super layoutSubviews];
|
2015-05-28 20:16:06 +00:00
|
|
|
_contentView.frame = self.bounds;
|
|
|
|
_loadingView.center = (CGPoint){
|
|
|
|
CGRectGetMidX(self.bounds),
|
|
|
|
CGRectGetMidY(self.bounds)
|
|
|
|
};
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 16:26:22 +00:00
|
|
|
- (NSDictionary *)initialProperties
|
|
|
|
{
|
|
|
|
RCTLogWarn(@"Using deprecated 'initialProperties' property. Use 'appProperties' instead.");
|
|
|
|
return _initialProperties;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setAppProperties:(NSDictionary *)appProperties
|
|
|
|
{
|
|
|
|
RCTAssertMainThread();
|
|
|
|
|
|
|
|
if ([_appProperties isEqualToDictionary:appProperties]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_appProperties = [appProperties copy];
|
|
|
|
|
|
|
|
if (_bridge.valid && !_bridge.loading) {
|
|
|
|
[self runApplication:_bridge.batchedBridge];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-26 22:39:06 +00:00
|
|
|
- (void)setIntrinsicSize:(CGSize)intrinsicSize
|
|
|
|
{
|
|
|
|
if (!CGSizeEqualToSize(_intrinsicSize, intrinsicSize)) {
|
|
|
|
_intrinsicSize = intrinsicSize;
|
|
|
|
[_delegate rootViewDidChangeIntrinsicSize:self];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
- (NSNumber *)reactTag
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-04-02 14:33:21 +00:00
|
|
|
return _contentView.reactTag;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
- (void)contentViewInvalidated
|
|
|
|
{
|
|
|
|
[_contentView removeFromSuperview];
|
|
|
|
_contentView = nil;
|
|
|
|
[self showLoadingView];
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
2015-05-12 14:44:38 +00:00
|
|
|
[_contentView invalidate];
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|
2015-04-02 14:33:21 +00:00
|
|
|
|
|
|
|
@implementation RCTUIManager (RCTRootView)
|
|
|
|
|
|
|
|
- (NSNumber *)allocateRootTag
|
|
|
|
{
|
|
|
|
NSNumber *rootTag = objc_getAssociatedObject(self, _cmd) ?: @1;
|
|
|
|
objc_setAssociatedObject(self, _cmd, @(rootTag.integerValue + 10), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
|
|
return rootTag;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2015-05-04 17:35:49 +00:00
|
|
|
|
|
|
|
@implementation RCTRootContentView
|
|
|
|
{
|
|
|
|
__weak RCTBridge *_bridge;
|
|
|
|
RCTTouchHandler *_touchHandler;
|
2015-05-27 09:30:57 +00:00
|
|
|
UIColor *_backgroundColor;
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
|
|
bridge:(RCTBridge *)bridge
|
|
|
|
{
|
2015-08-24 10:14:33 +00:00
|
|
|
if ((self = [super initWithFrame:frame])) {
|
2015-05-04 17:35:49 +00:00
|
|
|
_bridge = bridge;
|
|
|
|
[self setUp];
|
2015-05-27 09:30:57 +00:00
|
|
|
self.layer.backgroundColor = NULL;
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-09-03 19:57:09 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(-(instancetype)initWithFrame:(CGRect)frame)
|
2015-08-24 10:14:33 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(-(instancetype)initWithCoder:(nonnull NSCoder *)aDecoder)
|
|
|
|
|
2015-08-06 22:44:15 +00:00
|
|
|
- (void)insertReactSubview:(id<RCTComponent>)subview atIndex:(NSInteger)atIndex
|
2015-05-28 20:16:06 +00:00
|
|
|
{
|
|
|
|
[super insertReactSubview:subview atIndex:atIndex];
|
2015-06-19 21:59:42 +00:00
|
|
|
RCTPerformanceLoggerEnd(RCTPLTTI);
|
2015-05-28 20:16:06 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
if (!_contentHasAppeared) {
|
|
|
|
_contentHasAppeared = YES;
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:RCTContentDidAppearNotification
|
|
|
|
object:self.superview];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
- (void)setFrame:(CGRect)frame
|
|
|
|
{
|
2015-05-26 11:14:31 +00:00
|
|
|
super.frame = frame;
|
|
|
|
if (self.reactTag && _bridge.isValid) {
|
2015-07-28 14:31:26 +00:00
|
|
|
[_bridge.uiManager setFrame:frame forView:self];
|
2015-05-26 11:14:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setBackgroundColor:(UIColor *)backgroundColor
|
|
|
|
{
|
2015-05-27 09:30:57 +00:00
|
|
|
_backgroundColor = backgroundColor;
|
2015-05-04 17:35:49 +00:00
|
|
|
if (self.reactTag && _bridge.isValid) {
|
2015-05-26 11:14:31 +00:00
|
|
|
[_bridge.uiManager setBackgroundColor:backgroundColor forRootView:self];
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-27 09:30:57 +00:00
|
|
|
- (UIColor *)backgroundColor
|
|
|
|
{
|
|
|
|
return _backgroundColor;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
- (void)setUp
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Every root view that is created must have a unique react tag.
|
|
|
|
* Numbering of these tags goes from 1, 11, 21, 31, etc
|
|
|
|
*
|
|
|
|
* NOTE: Since the bridge persists, the RootViews might be reused, so now
|
|
|
|
* the react tag is assigned every time we load new content.
|
|
|
|
*/
|
|
|
|
self.reactTag = [_bridge.uiManager allocateRootTag];
|
|
|
|
[self addGestureRecognizer:[[RCTTouchHandler alloc] initWithBridge:_bridge]];
|
|
|
|
[_bridge.uiManager registerRootView:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)invalidate
|
|
|
|
{
|
2015-08-14 08:59:42 +00:00
|
|
|
if (self.userInteractionEnabled) {
|
2015-05-12 14:44:38 +00:00
|
|
|
self.userInteractionEnabled = NO;
|
2015-05-28 20:16:06 +00:00
|
|
|
[(RCTRootView *)self.superview contentViewInvalidated];
|
2015-05-12 14:44:38 +00:00
|
|
|
[_bridge enqueueJSCall:@"ReactNative.unmountComponentAtNodeAndRemoveContainer"
|
|
|
|
args:@[self.reactTag]];
|
|
|
|
}
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|