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"
|
2016-07-22 16:50:48 +00:00
|
|
|
#import "RCTBridge.h"
|
2016-08-10 14:41:54 +00:00
|
|
|
#import "RCTBridge+Private.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#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"
|
2016-02-03 15:10:52 +00:00
|
|
|
#import "RCTProfile.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
NSString *const RCTContentDidAppearNotification = @"RCTContentDidAppearNotification";
|
|
|
|
|
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;
|
2016-01-21 21:43:58 +00:00
|
|
|
@property (nonatomic, readonly, strong) RCTTouchHandler *touchHandler;
|
|
|
|
|
2016-02-12 16:31:54 +00:00
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
|
|
bridge:(RCTBridge *)bridge
|
2016-04-20 17:52:25 +00:00
|
|
|
reactTag:(NSNumber *)reactTag
|
|
|
|
sizeFlexiblity:(RCTRootViewSizeFlexibility)sizeFlexibility 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-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
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
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
|
|
|
|
2016-05-14 00:14:59 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(RCTProfileTagAlways, @"-[RCTRootView init]", nil);
|
2016-02-03 15: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-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;
|
2016-04-14 21:26:20 +00:00
|
|
|
self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
|
2015-04-11 22:08:00 +00:00
|
|
|
|
2016-02-12 16:31:54 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(bridgeDidReload)
|
|
|
|
name:RCTJavaScriptWillStartLoadingNotification
|
|
|
|
object:_bridge];
|
|
|
|
|
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];
|
2016-02-12 16:31:54 +00:00
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
if (!_bridge.loading) {
|
2016-08-10 14:41:54 +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
|
|
|
}
|
2016-02-03 15:10:52 +00:00
|
|
|
|
2016-05-14 00:14:59 +00:00
|
|
|
RCT_PROFILE_END_EVENT(RCTProfileTagAlways, @"", nil);
|
2016-02-03 15:10:52 +00:00
|
|
|
|
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
|
2016-07-07 19:36:56 +00:00
|
|
|
duration:self->_loadingViewFadeDuration
|
2015-10-06 17:32:04 +00:00
|
|
|
options:UIViewAnimationOptionTransitionCrossDissolve
|
|
|
|
animations:^{
|
2016-07-07 19:36:56 +00:00
|
|
|
self->_loadingView.hidden = YES;
|
2015-10-06 17:32:04 +00:00
|
|
|
} completion:^(__unused BOOL finished) {
|
2016-07-07 19:36:56 +00:00
|
|
|
[self->_loadingView removeFromSuperview];
|
2015-10-06 17:32:04 +00:00
|
|
|
}];
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_loadingView.hidden = YES;
|
|
|
|
[_loadingView removeFromSuperview];
|
|
|
|
}
|
2015-05-28 20:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 16:31:54 +00:00
|
|
|
- (NSNumber *)reactTag
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2016-02-12 16:31:54 +00:00
|
|
|
if (!super.reactTag) {
|
|
|
|
/**
|
|
|
|
* 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 the
|
|
|
|
* react tag must be re-assigned every time a new UIManager is created.
|
|
|
|
*/
|
|
|
|
self.reactTag = [_bridge.uiManager allocateRootTag];
|
|
|
|
}
|
|
|
|
return super.reactTag;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)bridgeDidReload
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2016-02-12 16:31:54 +00:00
|
|
|
// Clear the reactTag so it can be re-assigned
|
|
|
|
self.reactTag = nil;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
- (void)javaScriptDidLoad:(NSNotification *)notification
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2016-08-10 14:41:54 +00:00
|
|
|
|
|
|
|
// Use the (batched) bridge that's sent in the notification payload, so the
|
|
|
|
// RCTRootContentView is scoped to the right bridge
|
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];
|
2016-02-12 16:31:54 +00:00
|
|
|
_contentView = [[RCTRootContentView alloc] initWithFrame:self.bounds
|
|
|
|
bridge:bridge
|
2016-04-20 17:52:25 +00:00
|
|
|
reactTag:self.reactTag
|
|
|
|
sizeFlexiblity:self.sizeFlexibility];
|
2016-02-03 15:10:52 +00:00
|
|
|
[self runApplication:bridge];
|
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
_contentView.backgroundColor = self.backgroundColor;
|
|
|
|
[self insertSubview:_contentView atIndex:0];
|
2015-10-30 16:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (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
|
|
|
|
2016-08-02 18:06:19 +00:00
|
|
|
[bridge enqueueJSCall:@"AppRegistry"
|
|
|
|
method:@"runApplication"
|
|
|
|
args:@[moduleName, appParameters]
|
|
|
|
completion:NULL];
|
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
|
|
|
- (void)setAppProperties:(NSDictionary *)appProperties
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2015-10-30 16:26:22 +00:00
|
|
|
|
|
|
|
if ([_appProperties isEqualToDictionary:appProperties]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_appProperties = [appProperties copy];
|
|
|
|
|
2015-11-11 20:02:23 +00:00
|
|
|
if (_contentView && _bridge.valid && !_bridge.loading) {
|
2016-07-22 16:50:48 +00:00
|
|
|
[self runApplication:_bridge];
|
2015-10-30 16:26:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-26 22:39:06 +00:00
|
|
|
- (void)setIntrinsicSize:(CGSize)intrinsicSize
|
|
|
|
{
|
2015-11-13 16:25:16 +00:00
|
|
|
BOOL oldSizeHasAZeroDimension = _intrinsicSize.height == 0 || _intrinsicSize.width == 0;
|
|
|
|
BOOL newSizeHasAZeroDimension = intrinsicSize.height == 0 || intrinsicSize.width == 0;
|
|
|
|
BOOL bothSizesHaveAZeroDimension = oldSizeHasAZeroDimension && newSizeHasAZeroDimension;
|
|
|
|
|
|
|
|
BOOL sizesAreEqual = CGSizeEqualToSize(_intrinsicSize, intrinsicSize);
|
|
|
|
|
|
|
|
_intrinsicSize = intrinsicSize;
|
|
|
|
|
|
|
|
// Don't notify the delegate if the content remains invisible or its size has not changed
|
|
|
|
if (bothSizesHaveAZeroDimension || sizesAreEqual) {
|
|
|
|
return;
|
2015-10-26 22:39:06 +00:00
|
|
|
}
|
2015-11-13 16:25:16 +00:00
|
|
|
|
|
|
|
[_delegate rootViewDidChangeIntrinsicSize:self];
|
2015-10-26 22:39:06 +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
|
|
|
}
|
|
|
|
|
2016-01-21 21:43:58 +00:00
|
|
|
- (void)cancelTouches
|
|
|
|
{
|
|
|
|
[[_contentView touchHandler] cancel];
|
|
|
|
}
|
|
|
|
|
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;
|
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
|
2016-02-12 16:31:54 +00:00
|
|
|
reactTag:(NSNumber *)reactTag
|
2016-04-20 17:52:25 +00:00
|
|
|
sizeFlexiblity:(RCTRootViewSizeFlexibility)sizeFlexibility
|
2015-05-04 17:35:49 +00:00
|
|
|
{
|
2015-08-24 10:14:33 +00:00
|
|
|
if ((self = [super initWithFrame:frame])) {
|
2015-05-04 17:35:49 +00:00
|
|
|
_bridge = bridge;
|
2016-02-12 16:31:54 +00:00
|
|
|
self.reactTag = reactTag;
|
|
|
|
_touchHandler = [[RCTTouchHandler alloc] initWithBridge:_bridge];
|
|
|
|
[self addGestureRecognizer:_touchHandler];
|
2016-04-20 17:52:25 +00:00
|
|
|
[_bridge.uiManager registerRootView:self withSizeFlexibility:sizeFlexibility];
|
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)
|
|
|
|
|
2016-06-07 07:08:16 +00:00
|
|
|
- (void)insertReactSubview:(UIView *)subview atIndex:(NSInteger)atIndex
|
2015-05-28 20:16:06 +00:00
|
|
|
{
|
|
|
|
[super insertReactSubview:subview atIndex:atIndex];
|
2016-07-22 16:50:48 +00:00
|
|
|
[_bridge.performanceLogger markStopForTag:RCTPLTTI];
|
2015-05-28 20:16:06 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2016-07-07 19:36:56 +00:00
|
|
|
if (!self->_contentHasAppeared) {
|
|
|
|
self->_contentHasAppeared = YES;
|
2015-05-28 20:16:06 +00:00
|
|
|
[[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) {
|
2016-03-21 10:20:49 +00:00
|
|
|
[_bridge.uiManager setBackgroundColor:backgroundColor forView: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)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];
|
2016-08-02 18:06:19 +00:00
|
|
|
[_bridge enqueueJSCall:@"AppRegistry"
|
|
|
|
method:@"unmountApplicationComponentAtRootTag"
|
|
|
|
args:@[self.reactTag]
|
|
|
|
completion:NULL];
|
2015-05-12 14:44:38 +00:00
|
|
|
}
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|