310 lines
8.0 KiB
Objective-C
310 lines
8.0 KiB
Objective-C
/**
|
|
* 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.
|
|
*/
|
|
|
|
#import "RCTRootView.h"
|
|
|
|
#import <objc/runtime.h>
|
|
|
|
#import "RCTAssert.h"
|
|
#import "RCTBridge.h"
|
|
#import "RCTContextExecutor.h"
|
|
#import "RCTEventDispatcher.h"
|
|
#import "RCTKeyCommands.h"
|
|
#import "RCTLog.h"
|
|
#import "RCTSourceCode.h"
|
|
#import "RCTTouchHandler.h"
|
|
#import "RCTUIManager.h"
|
|
#import "RCTUtils.h"
|
|
#import "RCTView.h"
|
|
#import "RCTWebViewExecutor.h"
|
|
#import "UIView+React.h"
|
|
|
|
NSString *const RCTContentDidAppearNotification = @"RCTContentDidAppearNotification";
|
|
|
|
@interface RCTBridge (RCTRootView)
|
|
|
|
@property (nonatomic, weak, readonly) RCTBridge *batchedBridge;
|
|
|
|
@end
|
|
|
|
@interface RCTUIManager (RCTRootView)
|
|
|
|
- (NSNumber *)allocateRootTag;
|
|
|
|
@end
|
|
|
|
@interface RCTRootContentView : RCTView <RCTInvalidating>
|
|
|
|
@property (nonatomic, readonly) BOOL contentHasAppeared;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame bridge:(RCTBridge *)bridge;
|
|
|
|
@end
|
|
|
|
@implementation RCTRootView
|
|
{
|
|
RCTBridge *_bridge;
|
|
NSString *_moduleName;
|
|
NSDictionary *_launchOptions;
|
|
RCTRootContentView *_contentView;
|
|
}
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge
|
|
moduleName:(NSString *)moduleName
|
|
{
|
|
RCTAssertMainThread();
|
|
RCTAssert(bridge, @"A bridge instance is required to create an RCTRootView");
|
|
RCTAssert(moduleName, @"A moduleName is required to create an RCTRootView");
|
|
|
|
if ((self = [super init])) {
|
|
|
|
self.backgroundColor = [UIColor whiteColor];
|
|
|
|
_bridge = bridge;
|
|
_moduleName = moduleName;
|
|
_loadingViewFadeDelay = 0.25;
|
|
_loadingViewFadeDuration = 0.25;
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(javaScriptDidLoad:)
|
|
name:RCTJavaScriptDidLoadNotification
|
|
object:_bridge];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(hideLoadingView)
|
|
name:RCTContentDidAppearNotification
|
|
object:self];
|
|
if (!_bridge.batchedBridge.isLoading) {
|
|
[self bundleFinishedLoading:_bridge.batchedBridge];
|
|
}
|
|
|
|
[self showLoadingView];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithBundleURL:(NSURL *)bundleURL
|
|
moduleName:(NSString *)moduleName
|
|
launchOptions:(NSDictionary *)launchOptions
|
|
{
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:bundleURL
|
|
moduleProvider:nil
|
|
launchOptions:launchOptions];
|
|
|
|
return [self initWithBridge:bridge moduleName:moduleName];
|
|
}
|
|
|
|
- (void)setBackgroundColor:(UIColor *)backgroundColor
|
|
{
|
|
super.backgroundColor = backgroundColor;
|
|
_contentView.backgroundColor = backgroundColor;
|
|
}
|
|
|
|
- (UIViewController *)backingViewController
|
|
{
|
|
return _backingViewController ?: [super backingViewController];
|
|
}
|
|
|
|
- (BOOL)canBecomeFirstResponder
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
RCT_IMPORT_METHOD(AppRegistry, runApplication)
|
|
RCT_IMPORT_METHOD(ReactNative, unmountComponentAtNodeAndRemoveContainer)
|
|
|
|
- (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) {
|
|
|
|
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:^(BOOL finished) {
|
|
[_loadingView removeFromSuperview];
|
|
}];
|
|
});
|
|
}
|
|
}
|
|
|
|
- (void)javaScriptDidLoad:(NSNotification *)notification
|
|
{
|
|
RCTBridge *bridge = notification.userInfo[@"bridge"];
|
|
[self bundleFinishedLoading:bridge];
|
|
}
|
|
|
|
- (void)bundleFinishedLoading:(RCTBridge *)bridge
|
|
{
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
if (!bridge.isValid) {
|
|
return;
|
|
}
|
|
|
|
[_contentView removeFromSuperview];
|
|
_contentView = [[RCTRootContentView alloc] initWithFrame:self.bounds
|
|
bridge:bridge];
|
|
_contentView.backgroundColor = self.backgroundColor;
|
|
[self insertSubview:_contentView atIndex:0];
|
|
|
|
NSString *moduleName = _moduleName ?: @"";
|
|
NSDictionary *appParameters = @{
|
|
@"rootTag": _contentView.reactTag,
|
|
@"initialProps": _initialProperties ?: @{},
|
|
};
|
|
|
|
[bridge enqueueJSCall:@"AppRegistry.runApplication"
|
|
args:@[moduleName, appParameters]];
|
|
});
|
|
}
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
[super layoutSubviews];
|
|
_contentView.frame = self.bounds;
|
|
_loadingView.center = (CGPoint){
|
|
CGRectGetMidX(self.bounds),
|
|
CGRectGetMidY(self.bounds)
|
|
};
|
|
}
|
|
|
|
- (NSNumber *)reactTag
|
|
{
|
|
return _contentView.reactTag;
|
|
}
|
|
|
|
- (void)contentViewInvalidated
|
|
{
|
|
[_contentView removeFromSuperview];
|
|
_contentView = nil;
|
|
[self showLoadingView];
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
[_contentView invalidate];
|
|
}
|
|
|
|
@end
|
|
|
|
@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
|
|
|
|
@implementation RCTRootContentView
|
|
{
|
|
__weak RCTBridge *_bridge;
|
|
RCTTouchHandler *_touchHandler;
|
|
UIColor *_backgroundColor;
|
|
}
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
bridge:(RCTBridge *)bridge
|
|
{
|
|
if ((self = [super init])) {
|
|
_bridge = bridge;
|
|
[self setUp];
|
|
self.frame = frame;
|
|
self.layer.backgroundColor = NULL;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)insertReactSubview:(id<RCTViewNodeProtocol>)subview atIndex:(NSInteger)atIndex
|
|
{
|
|
[super insertReactSubview:subview atIndex:atIndex];
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
if (!_contentHasAppeared) {
|
|
_contentHasAppeared = YES;
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:RCTContentDidAppearNotification
|
|
object:self.superview];
|
|
}
|
|
});
|
|
}
|
|
|
|
- (void)setFrame:(CGRect)frame
|
|
{
|
|
super.frame = frame;
|
|
if (self.reactTag && _bridge.isValid) {
|
|
[_bridge.uiManager setFrame:frame forRootView:self];
|
|
}
|
|
}
|
|
|
|
- (void)setBackgroundColor:(UIColor *)backgroundColor
|
|
{
|
|
_backgroundColor = backgroundColor;
|
|
if (self.reactTag && _bridge.isValid) {
|
|
[_bridge.uiManager setBackgroundColor:backgroundColor forRootView:self];
|
|
}
|
|
}
|
|
|
|
- (UIColor *)backgroundColor
|
|
{
|
|
return _backgroundColor;
|
|
}
|
|
|
|
- (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];
|
|
}
|
|
|
|
- (BOOL)isValid
|
|
{
|
|
return self.userInteractionEnabled;
|
|
}
|
|
|
|
- (void)invalidate
|
|
{
|
|
if (self.isValid) {
|
|
self.userInteractionEnabled = NO;
|
|
[(RCTRootView *)self.superview contentViewInvalidated];
|
|
[_bridge enqueueJSCall:@"ReactNative.unmountComponentAtNodeAndRemoveContainer"
|
|
args:@[self.reactTag]];
|
|
}
|
|
}
|
|
|
|
@end
|