mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
6ba2aeefa8
Summary: This def breaks a reference cycle in logbox causing a memory leak in development. Changelog: [iOS] [Fix] LogBox - Fix dependency cycle Reviewed By: PeteTheHeat Differential Revision: D19768068 fbshipit-source-id: 518b9c66499aa092465a9213f955965bffeebd88
160 lines
3.5 KiB
Plaintext
160 lines
3.5 KiB
Plaintext
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RCTLogBox.h"
|
|
|
|
#import <FBReactNativeSpec/FBReactNativeSpec.h>
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTRootView.h>
|
|
#import <React/RCTConvert.h>
|
|
#import <React/RCTDefines.h>
|
|
#import <React/RCTErrorInfo.h>
|
|
#import <React/RCTEventDispatcher.h>
|
|
#import <React/RCTJSStackFrame.h>
|
|
#import <React/RCTRedBoxSetEnabled.h>
|
|
#import <React/RCTReloadCommand.h>
|
|
#import <React/RCTRedBoxSetEnabled.h>
|
|
#import <React/RCTSurface.h>
|
|
#import <React/RCTUtils.h>
|
|
|
|
#import <objc/runtime.h>
|
|
|
|
#import "CoreModulesPlugins.h"
|
|
|
|
#if RCT_DEV_MENU
|
|
|
|
@class RCTLogBoxView;
|
|
|
|
@interface RCTLogBoxView : UIView
|
|
@end
|
|
|
|
@implementation RCTLogBoxView
|
|
{
|
|
UIViewController *_rootViewController;
|
|
RCTSurface *_surface;
|
|
}
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame bridge:(RCTBridge *)bridge
|
|
{
|
|
if ((self = [super initWithFrame:frame])) {
|
|
self.backgroundColor = [UIColor clearColor];
|
|
|
|
_surface = [[RCTSurface alloc] initWithBridge:bridge moduleName:@"LogBox" initialProperties:@{}];
|
|
|
|
[_surface start];
|
|
[_surface setSize:frame.size];
|
|
|
|
if (![_surface synchronouslyWaitForStage:RCTSurfaceStageSurfaceDidInitialMounting timeout:1]) {
|
|
RCTLogInfo(@"Failed to mount LogBox within 1s");
|
|
}
|
|
|
|
_rootViewController = [UIViewController new];
|
|
_rootViewController.view = (UIView *)_surface.view;
|
|
_rootViewController.view.backgroundColor = [UIColor clearColor];
|
|
_rootViewController.modalPresentationStyle = UIModalPresentationFullScreen;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
// Dismiss by deallocating the window.
|
|
// This will also handle JS reload, otherwise the LogBox view would be stuck on top.
|
|
[_rootViewController.view resignFirstResponder];
|
|
[_rootViewController dismissViewControllerAnimated:NO completion:NULL];
|
|
}
|
|
|
|
- (void)show
|
|
{
|
|
__weak __typeof(self) weakSelf = self;
|
|
[RCTSharedApplication().delegate.window.rootViewController presentViewController:_rootViewController animated:NO completion:^{
|
|
__strong __typeof(self) strongSelf = weakSelf;
|
|
if (strongSelf) {
|
|
[strongSelf->_rootViewController.view becomeFirstResponder];
|
|
}
|
|
}];
|
|
}
|
|
|
|
@end
|
|
|
|
@interface RCTLogBox () <NativeLogBoxSpec>
|
|
@end
|
|
|
|
@implementation RCTLogBox
|
|
{
|
|
RCTLogBoxView *_view;
|
|
}
|
|
|
|
@synthesize bridge = _bridge;
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
+ (BOOL)requiresMainQueueSetup
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(show)
|
|
{
|
|
if (RCTRedBoxGetEnabled()) {
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
if (!self->_view) {
|
|
self->_view = [[RCTLogBoxView alloc] initWithFrame:[UIScreen mainScreen].bounds bridge: self->_bridge];
|
|
}
|
|
[self->_view show];
|
|
});
|
|
}
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(hide)
|
|
{
|
|
if (RCTRedBoxGetEnabled()) {
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
self->_view = nil;
|
|
});
|
|
}
|
|
}
|
|
|
|
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModuleWithJsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker
|
|
{
|
|
return std::make_shared<facebook::react::NativeLogBoxSpecJSI>(self, jsInvoker);
|
|
}
|
|
|
|
@end
|
|
|
|
#else // Disabled
|
|
|
|
@interface RCTLogBox() <NativeLogBoxSpec>
|
|
@end
|
|
|
|
@implementation RCTLogBox
|
|
|
|
+ (NSString *)moduleName
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
- (void)show {
|
|
// noop
|
|
}
|
|
|
|
- (void)hide {
|
|
// noop
|
|
}
|
|
|
|
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModuleWithJsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker
|
|
{
|
|
return std::make_shared<facebook::react::NativeLogBoxSpecJSI>(self, jsInvoker);
|
|
}
|
|
@end
|
|
|
|
#endif
|
|
|
|
Class RCTLogBoxCls(void) {
|
|
return RCTLogBox.class;
|
|
}
|