mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
df0bfec201
Summary: All NativeModules that used to use the bridge to require other NativeModules now require other NativeModules via the Venice-compatible RCTModuleRegistry abstraction. Therefore, we can safely get rid of synthesize bridge = _bridge from them. ## How did I generate this diff? 1. Search for all NativeModules that have `synthesize bridge =` 2. Remove the `synthesize bridge = _bridge` from each NativeModule, and if it doesn't contain `_bridge`, `setBridge:`, or `elf.bridge`, add it to this codemod. Changelog: [Internal] Reviewed By: PeteTheHeat Differential Revision: D25551295 fbshipit-source-id: 585d50ad55cb9ab083e430b07e1cf30e31f0d3c5
85 lines
2.5 KiB
Plaintext
85 lines
2.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 <React/RCTFileReaderModule.h>
|
|
|
|
#import <FBReactNativeSpec/FBReactNativeSpec.h>
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTConvert.h>
|
|
|
|
#import <React/RCTBlobManager.h>
|
|
|
|
#import "RCTBlobPlugins.h"
|
|
|
|
@interface RCTFileReaderModule() <NativeFileReaderModuleSpec>
|
|
@end
|
|
|
|
@implementation RCTFileReaderModule
|
|
|
|
RCT_EXPORT_MODULE(FileReaderModule)
|
|
|
|
@synthesize moduleRegistry = _moduleRegistry;
|
|
|
|
RCT_EXPORT_METHOD(readAsText:(NSDictionary<NSString *, id> *)blob
|
|
encoding:(NSString *)encoding
|
|
resolve:(RCTPromiseResolveBlock)resolve
|
|
reject:(RCTPromiseRejectBlock)reject)
|
|
{
|
|
RCTBlobManager *blobManager = [_moduleRegistry moduleForName:"BlobModule"];
|
|
NSData *data = [blobManager resolve:blob];
|
|
|
|
if (data == nil) {
|
|
reject(RCTErrorUnspecified,
|
|
[NSString stringWithFormat:@"Unable to resolve data for blob: %@", [RCTConvert NSString:blob[@"blobId"]]], nil);
|
|
} else {
|
|
NSStringEncoding stringEncoding;
|
|
|
|
if (encoding == nil) {
|
|
stringEncoding = NSUTF8StringEncoding;
|
|
} else {
|
|
stringEncoding = CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef) encoding));
|
|
}
|
|
|
|
NSString *text = [[NSString alloc] initWithData:data encoding:stringEncoding];
|
|
|
|
resolve(text);
|
|
}
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(readAsDataURL:(NSDictionary<NSString *, id> *)blob
|
|
resolve:(RCTPromiseResolveBlock)resolve
|
|
reject:(RCTPromiseRejectBlock)reject)
|
|
{
|
|
RCTBlobManager *blobManager = [_moduleRegistry moduleForName:"BlobModule"];
|
|
NSData *data = [blobManager resolve:blob];
|
|
|
|
if (data == nil) {
|
|
reject(RCTErrorUnspecified,
|
|
[NSString stringWithFormat:@"Unable to resolve data for blob: %@", [RCTConvert NSString:blob[@"blobId"]]], nil);
|
|
} else {
|
|
NSString *type = [RCTConvert NSString:blob[@"type"]];
|
|
NSString *text = [NSString stringWithFormat:@"data:%@;base64,%@",
|
|
type != nil && [type length] > 0 ? type : @"application/octet-stream",
|
|
[data base64EncodedStringWithOptions:0]];
|
|
|
|
resolve(text);
|
|
}
|
|
}
|
|
|
|
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const facebook::react::ObjCTurboModule::InitParams &)params
|
|
{
|
|
return std::make_shared<facebook::react::NativeFileReaderModuleSpecJSI>(params);
|
|
}
|
|
|
|
@end
|
|
|
|
Class RCTFileReaderModuleCls(void)
|
|
{
|
|
return RCTFileReaderModule.class;
|
|
}
|