mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
03bd7d799e
Summary:
## Summary
Please check out D21035209.
## Changes
- Codemod all ObjC NativeModule `getTurboModuleWithJsInvoker:nativeInvoker:perfLogger` methods to `getTurboModule:(const ObjCTurboModule::Args)`
## Script
```
var withSpaces = (...args) => args.join('\s*')
var regexString = withSpaces(
'-',
'\(',
'std::shared_ptr',
'<',
'(?<turboModuleClass>(facebook::react::|react::|::|)TurboModule)',
'>',
'\)',
'getTurboModuleWithJsInvoker',
':',
'\(',
'std::shared_ptr',
'<',
'(?<fbNamespace>(facebook::react::|react::|::|))CallInvoker',
'>',
'\)',
'(?<jsInvokerInstance>[A-Za-z0-9]+)',
'nativeInvoker',
':',
'\(',
'std::shared_ptr',
'<',
'(facebook::react::|react::|::|)CallInvoker',
'>',
'\)',
'(?<nativeInvokerInstance>[A-Za-z0-9]+)',
'perfLogger',
':',
'\(',
'id',
'<',
'RCTTurboModulePerformanceLogger',
'>',
'\)',
'(?<perfLoggerInstance>[A-Za-z0-9]+)',
'{',
'return',
'std::make_shared',
'<',
'(?<specName>(facebook::react::|react::|::|)Native[%A-Za-z0-9]+SpecJSI)',
'>',
'\(',
'self',
',',
'\k<jsInvokerInstance>',
',',
'\k<nativeInvokerInstance>',
',',
'\k<perfLoggerInstance>',
'\)',
';',
'}',
)
var replaceString = `- (std::shared_ptr<$<turboModuleClass>>) getTurboModule:(const $<fbNamespace>ObjCTurboModule::InitParams &)params
{
return std::make_shared<$<specName>>(params);
}`
const exec = require('../lib/exec');
const abspath = require('../lib/abspath');
const relpath = require('../lib/relpath');
const readFile = (filename) => require('fs').readFileSync(filename, 'utf8');
const writeFile = (filename, content) => require('fs').writeFileSync(filename, content);
function main() {
const tmFiles = exec('cd ~/fbsource && xbgs -n 10000 -l getTurboModuleWithJsInvoker:').split('\n').filter(Boolean);
tmFiles
.filter((filename) => !filename.includes('microsoft-fork-of-react-native'))
.map(abspath)
.forEach((filename) => {
const source = readFile(filename);
const newSource = source.replace(new RegExp(regexString, 'g'), replaceString);
if (source == newSource) {
console.log(relpath(filename));
}
writeFile(filename, newSource);
});
}
if (!module.parent) {
main();
}
```
## Re-generating diff
```
> hg revert -r .^ --all
> node index.js # run script
```
Changelog: [iOS][Changed] - Make all ObjC NativeModules create TurboModules using ObjCTurboModule::Args
Reviewed By: PeteTheHeat
Differential Revision: D21036265
fbshipit-source-id: 404bcc548d1775ef23d793527606d02fe384a0a2
213 lines
5.9 KiB
Plaintext
213 lines
5.9 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 "RCTStatusBarManager.h"
|
|
#import "CoreModulesPlugins.h"
|
|
|
|
#import <React/RCTEventDispatcher.h>
|
|
#import <React/RCTLog.h>
|
|
#import <React/RCTUtils.h>
|
|
|
|
#if !TARGET_OS_TV
|
|
#import <FBReactNativeSpec/FBReactNativeSpec.h>
|
|
|
|
@implementation RCTConvert (UIStatusBar)
|
|
|
|
+ (UIStatusBarStyle)UIStatusBarStyle:(id)json RCT_DYNAMIC
|
|
{
|
|
static NSDictionary *mapping;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
if (@available(iOS 13.0, *)) {
|
|
mapping = @{
|
|
@"default" : @(UIStatusBarStyleDefault),
|
|
@"light-content" : @(UIStatusBarStyleLightContent),
|
|
#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_13_0) && \
|
|
__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
|
|
@"dark-content" : @(UIStatusBarStyleDarkContent)
|
|
#else
|
|
@"dark-content": @(UIStatusBarStyleDefault)
|
|
#endif
|
|
};
|
|
|
|
} else {
|
|
mapping = @{
|
|
@"default" : @(UIStatusBarStyleDefault),
|
|
@"light-content" : @(UIStatusBarStyleLightContent),
|
|
@"dark-content" : @(UIStatusBarStyleDefault)
|
|
};
|
|
}
|
|
});
|
|
return _RCT_CAST(
|
|
UIStatusBarStyle,
|
|
[RCTConvertEnumValue("UIStatusBarStyle", mapping, @(UIStatusBarStyleDefault), json) integerValue]);
|
|
}
|
|
|
|
RCT_ENUM_CONVERTER(
|
|
UIStatusBarAnimation,
|
|
(@{
|
|
@"none" : @(UIStatusBarAnimationNone),
|
|
@"fade" : @(UIStatusBarAnimationFade),
|
|
@"slide" : @(UIStatusBarAnimationSlide),
|
|
}),
|
|
UIStatusBarAnimationNone,
|
|
integerValue);
|
|
|
|
@end
|
|
#endif
|
|
|
|
#if !TARGET_OS_TV
|
|
|
|
@interface RCTStatusBarManager () <NativeStatusBarManagerIOSSpec>
|
|
@end
|
|
|
|
#endif
|
|
|
|
@implementation RCTStatusBarManager
|
|
|
|
static BOOL RCTViewControllerBasedStatusBarAppearance()
|
|
{
|
|
static BOOL value;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
value =
|
|
[[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UIViewControllerBasedStatusBarAppearance"]
|
|
?: @YES boolValue];
|
|
});
|
|
|
|
return value;
|
|
}
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
+ (BOOL)requiresMainQueueSetup
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (NSArray<NSString *> *)supportedEvents
|
|
{
|
|
return @[ @"statusBarFrameDidChange", @"statusBarFrameWillChange" ];
|
|
}
|
|
|
|
#if !TARGET_OS_TV
|
|
|
|
- (void)startObserving
|
|
{
|
|
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
|
[nc addObserver:self
|
|
selector:@selector(applicationDidChangeStatusBarFrame:)
|
|
name:UIApplicationDidChangeStatusBarFrameNotification
|
|
object:nil];
|
|
[nc addObserver:self
|
|
selector:@selector(applicationWillChangeStatusBarFrame:)
|
|
name:UIApplicationWillChangeStatusBarFrameNotification
|
|
object:nil];
|
|
}
|
|
|
|
- (void)stopObserving
|
|
{
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
}
|
|
|
|
- (dispatch_queue_t)methodQueue
|
|
{
|
|
return dispatch_get_main_queue();
|
|
}
|
|
|
|
- (void)emitEvent:(NSString *)eventName forNotification:(NSNotification *)notification
|
|
{
|
|
CGRect frame = [notification.userInfo[UIApplicationStatusBarFrameUserInfoKey] CGRectValue];
|
|
NSDictionary *event = @{
|
|
@"frame" : @{
|
|
@"x" : @(frame.origin.x),
|
|
@"y" : @(frame.origin.y),
|
|
@"width" : @(frame.size.width),
|
|
@"height" : @(frame.size.height),
|
|
},
|
|
};
|
|
[self sendEventWithName:eventName body:event];
|
|
}
|
|
|
|
- (void)applicationDidChangeStatusBarFrame:(NSNotification *)notification
|
|
{
|
|
[self emitEvent:@"statusBarFrameDidChange" forNotification:notification];
|
|
}
|
|
|
|
- (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification
|
|
{
|
|
[self emitEvent:@"statusBarFrameWillChange" forNotification:notification];
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(getHeight : (RCTResponseSenderBlock)callback)
|
|
{
|
|
callback(@[ @{
|
|
@"height" : @(RCTSharedApplication().statusBarFrame.size.height),
|
|
} ]);
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(setStyle : (NSString *)style animated : (BOOL)animated)
|
|
{
|
|
UIStatusBarStyle statusBarStyle = [RCTConvert UIStatusBarStyle:style];
|
|
if (RCTViewControllerBasedStatusBarAppearance()) {
|
|
RCTLogError(@"RCTStatusBarManager module requires that the \
|
|
UIViewControllerBasedStatusBarAppearance key in the Info.plist is set to NO");
|
|
} else {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
[RCTSharedApplication() setStatusBarStyle:statusBarStyle animated:animated];
|
|
}
|
|
#pragma clang diagnostic pop
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(setHidden : (BOOL)hidden withAnimation : (NSString *)withAnimation)
|
|
{
|
|
UIStatusBarAnimation animation = [RCTConvert UIStatusBarAnimation:withAnimation];
|
|
if (RCTViewControllerBasedStatusBarAppearance()) {
|
|
RCTLogError(@"RCTStatusBarManager module requires that the \
|
|
UIViewControllerBasedStatusBarAppearance key in the Info.plist is set to NO");
|
|
} else {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
[RCTSharedApplication() setStatusBarHidden:hidden withAnimation:animation];
|
|
#pragma clang diagnostic pop
|
|
}
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(setNetworkActivityIndicatorVisible : (BOOL)visible)
|
|
{
|
|
RCTSharedApplication().networkActivityIndicatorVisible = visible;
|
|
}
|
|
|
|
- (facebook::react::ModuleConstants<JS::NativeStatusBarManagerIOS::Constants>)getConstants
|
|
{
|
|
return facebook::react::typedConstants<JS::NativeStatusBarManagerIOS::Constants>({
|
|
.HEIGHT = RCTSharedApplication().statusBarFrame.size.height,
|
|
.DEFAULT_BACKGROUND_COLOR = folly::none,
|
|
});
|
|
}
|
|
|
|
- (facebook::react::ModuleConstants<JS::NativeStatusBarManagerIOS::Constants>)constantsToExport
|
|
{
|
|
return (facebook::react::ModuleConstants<JS::NativeStatusBarManagerIOS::Constants>)[self getConstants];
|
|
}
|
|
|
|
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:
|
|
(const facebook::react::ObjCTurboModule::InitParams &)params
|
|
{
|
|
return std::make_shared<facebook::react::NativeStatusBarManagerIOSSpecJSI>(params);
|
|
}
|
|
|
|
#endif // TARGET_OS_TV
|
|
|
|
@end
|
|
|
|
Class RCTStatusBarManagerCls(void)
|
|
{
|
|
return RCTStatusBarManager.class;
|
|
}
|