GT2/Ejectable/node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactNativeAdapter.m

303 lines
8.6 KiB
Mathematica
Raw Normal View History

2021-08-16 00:14:59 +00:00
// Copyright 2018-present 650 Industries. All rights reserved.
#import <JavaScriptCore/JavaScriptCore.h>
#import <UMReactNativeAdapter/UMReactNativeAdapter.h>
#import <React/RCTUIManager.h>
#import <React/RCTBridge+Private.h>
#import <React/RCTAppState.h>
#import <React/RCTImageLoader.h>
@interface UMReactNativeAdapter ()
@property (nonatomic, weak) RCTBridge *bridge;
@property (nonatomic, assign) BOOL isForegrounded;
@property (nonatomic, strong) NSPointerArray *lifecycleListeners;
@end
@interface RCTBridge ()
- (JSGlobalContextRef)jsContextRef;
- (void *)runtime;
- (void)dispatchBlock:(dispatch_block_t)block queue:(dispatch_queue_t)queue;
@end
@implementation UMReactNativeAdapter
UM_REGISTER_MODULE();
+ (NSString *)moduleName
{
return nil;
}
+ (const NSArray<Protocol *> *)exportedInterfaces
{
return @[@protocol(UMAppLifecycleService), @protocol(UMUIManager), @protocol(UMJavaScriptContextProvider)];
}
# pragma mark - Lifecycle methods
- (instancetype)init
{
if (self = [super init]) {
_isForegrounded = false;
_lifecycleListeners = [NSPointerArray weakObjectsPointerArray];
}
return self;
}
- (void)setModuleRegistry:(UMModuleRegistry *)moduleRegistry
{
if (moduleRegistry) {
[self startObserving];
}
}
- (void)dealloc
{
[self stopObserving];
}
# pragma mark - Public API
- (void)addUIBlock:(void (^)(NSDictionary<id, UIView *> *))block
{
__weak UMReactNativeAdapter *weakSelf = self;
dispatch_async(_bridge.uiManager.methodQueue, ^{
__strong UMReactNativeAdapter *strongSelf = weakSelf;
if (strongSelf) {
[strongSelf.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
block(viewRegistry);
}];
}
});
}
- (void)addUIBlock:(void (^)(id))block forView:(id)viewId ofClass:(Class)klass
{
[self addUIBlock:^(UIView *view) {
if (![view isKindOfClass:klass]) {
block(nil);
} else {
block(view);
}
} forView:viewId];
}
- (void)addUIBlock:(void (^)(id))block forView:(id)viewId implementingProtocol:(Protocol *)protocol
{
[self addUIBlock:^(UIView *view) {
if (![view.class conformsToProtocol:protocol]) {
block(nil);
} else {
block(view);
}
} forView:viewId];
}
- (void)dispatchOnClientThread:(dispatch_block_t)block
{
[self.bridge dispatchBlock:block queue:RCTJSThread];
}
- (void)executeUIBlock:(void (^)(NSDictionary<id,UIView *> *))block {
__weak UMReactNativeAdapter *weakSelf = self;
dispatch_async(_bridge.uiManager.methodQueue, ^{
__strong UMReactNativeAdapter *strongSelf = weakSelf;
if (strongSelf) {
[strongSelf.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
block(viewRegistry);
}];
[strongSelf.bridge.uiManager setNeedsLayout];
}
});
}
- (void)executeUIBlock:(void (^)(id))block forView:(id)viewId implementingProtocol:(Protocol *)protocol {
[self executeUIBlock:^(UIView *view) {
if (![view.class conformsToProtocol:protocol]) {
block(nil);
} else {
block(view);
}
} forView:viewId];
}
- (void)executeUIBlock:(void (^)(id))block forView:(id)viewId ofClass:(Class)klass {
[self executeUIBlock:^(UIView *view) {
if (![view isKindOfClass:klass]) {
block(nil);
} else {
block(view);
}
} forView:viewId];
}
- (void)setBridge:(RCTBridge *)bridge
{
_bridge = bridge;
}
- (void)registerAppLifecycleListener:(id<UMAppLifecycleListener>)listener
{
[_lifecycleListeners addPointer:(__bridge void * _Nullable)(listener)];
}
- (void)unregisterAppLifecycleListener:(id<UMAppLifecycleListener>)listener
{
for (int i = 0; i < _lifecycleListeners.count; i++) {
id pointer = [_lifecycleListeners pointerAtIndex:i];
if (pointer == (__bridge void * _Nullable)(listener) || !pointer) {
[_lifecycleListeners removePointerAtIndex:i];
i--;
}
}
// -(void)compact doesn't work, that's why we have this `|| !pointer` above
// http://www.openradar.me/15396578
[_lifecycleListeners compact];
}
# pragma mark - UMJavaScriptContextProvider
- (JSGlobalContextRef)javaScriptContextRef
{
if ([_bridge respondsToSelector:@selector(jsContextRef)]) {
return _bridge.jsContextRef;
} else if (_bridge.runtime) {
// In react-native 0.59 vm is abstracted by JSI and all JSC specific references are removed
// To access jsc context we are extracting specific offset in jsi::Runtime, JSGlobalContextRef
// is first field inside Runtime class and in memory it's preceded only by pointer to virtual method table.
// WARNING: This is temporary solution that may break with new react-native releases.
return *(((JSGlobalContextRef *)(_bridge.runtime)) + 1);
}
return nil;
}
- (void *)javaScriptRuntimePointer
{
if ([_bridge respondsToSelector:@selector(runtime)]) {
return _bridge.runtime;
} else {
return nil;
}
}
# pragma mark - App state observing
- (void)startObserving
{
for (NSString *name in @[UIApplicationDidBecomeActiveNotification,
UIApplicationDidEnterBackgroundNotification,
UIApplicationDidFinishLaunchingNotification,
UIApplicationWillResignActiveNotification,
UIApplicationWillEnterForegroundNotification,
RCTContentDidAppearNotification,
RCTBridgeWillReloadNotification]) {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleAppStateDidChange:)
name:name
object:nil];
}
}
- (void)handleAppStateDidChange:(NSNotification *)notification
{
if ([notification.name isEqualToString:RCTContentDidAppearNotification]) {
[self notifyAboutContentDidAppear];
} else if ([notification.name isEqualToString:RCTBridgeWillReloadNotification]) {
[self notifyAboutContentWillReload];
} else if (
_isForegrounded && (
[notification.name isEqualToString:UIApplicationWillResignActiveNotification] ||
[notification.name isEqualToString:UIApplicationWillEnterForegroundNotification] ||
RCTSharedApplication().applicationState == UIApplicationStateBackground
)
) {
[self setAppStateToBackground];
} else if (!_isForegrounded && RCTSharedApplication().applicationState == UIApplicationStateActive) {
[self setAppStateToForeground];
}
}
- (void)setAppStateToBackground
{
if (_isForegrounded) {
[[_lifecycleListeners allObjects] enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
[obj onAppBackgrounded];
}];
_isForegrounded = false;
}
}
- (void)setAppStateToForeground
{
if (!_isForegrounded) {
[[_lifecycleListeners allObjects] enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
[obj onAppForegrounded];
}];
_isForegrounded = true;
}
}
- (void)notifyAboutContentDidAppear
{
[[_lifecycleListeners allObjects] enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
if ([obj respondsToSelector:@selector(onAppContentDidAppear)]) {
[obj performSelector:@selector(onAppContentDidAppear)];
}
}];
}
- (void)notifyAboutContentWillReload
{
[[_lifecycleListeners allObjects] enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
if ([obj respondsToSelector:@selector(onAppContentWillReload)]) {
[obj performSelector:@selector(onAppContentWillReload)];
}
}];
}
- (void)stopObserving
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
# pragma mark - Internal methods
- (void)addUIBlock:(void (^)(UIView *view))block forView:(id)viewId
{
__weak UMReactNativeAdapter *weakSelf = self;
dispatch_async(_bridge.uiManager.methodQueue, ^{
__strong UMReactNativeAdapter *strongSelf = weakSelf;
if (strongSelf) {
[strongSelf.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
UIView *view = viewRegistry[viewId];
block(view);
}];
}
});
}
- (void)executeUIBlock:(void (^)(UIView *view))block forView:(id)viewId
{
__weak UMReactNativeAdapter *weakSelf = self;
dispatch_async(_bridge.uiManager.methodQueue, ^{
__strong UMReactNativeAdapter *strongSelf = weakSelf;
if (strongSelf) {
[strongSelf.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
UIView *view = viewRegistry[viewId];
block(view);
}];
[strongSelf.bridge.uiManager setNeedsLayout];
}
});
}
@end