- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
96 lines
2.9 KiB
Plaintext
96 lines
2.9 KiB
Plaintext
/*
|
|
* Copyright (c) Meta Platforms, Inc. and 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"];
|
|
dispatch_async([blobManager executionQueue], ^{
|
|
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"];
|
|
dispatch_async([blobManager executionQueue], ^{
|
|
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;
|
|
}
|