mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
1490ab12ef
Summary: Includes React Native and its dependencies Fresco, Metro, and Yoga. Excludes samples/examples/docs. find: ^(?:( *)|( *(?:[\*~#]|::))( )? *)?Copyright (?:\(c\) )?(\d{4})\b.+Facebook[\s\S]+?BSD[\s\S]+?(?:this source tree|the same directory)\.$ replace: $1$2$3Copyright (c) $4-present, Facebook, Inc.\n$2\n$1$2$3This source code is licensed under the MIT license found in the\n$1$2$3LICENSE file in the root directory of this source tree. Reviewed By: TheSavior, yungsters Differential Revision: D7007050 fbshipit-source-id: 37dd6bf0ffec0923bfc99c260bb330683f35553e
70 lines
2.1 KiB
Objective-C
70 lines
2.1 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
|
|
#import "RCTFileReaderModule.h"
|
|
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTConvert.h>
|
|
|
|
#import "RCTBlobManager.h"
|
|
|
|
|
|
@implementation RCTFileReaderModule
|
|
|
|
RCT_EXPORT_MODULE(FileReaderModule)
|
|
|
|
@synthesize bridge = _bridge;
|
|
|
|
RCT_EXPORT_METHOD(readAsText:(NSDictionary<NSString *, id> *)blob
|
|
encoding:(NSString *)encoding
|
|
resolve:(RCTPromiseResolveBlock)resolve
|
|
reject:(RCTPromiseRejectBlock)reject)
|
|
{
|
|
RCTBlobManager *blobManager = [[self bridge] moduleForClass:[RCTBlobManager class]];
|
|
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 = [[self bridge] moduleForClass:[RCTBlobManager class]];
|
|
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);
|
|
}
|
|
}
|
|
|
|
@end
|