- 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
78 lines
2.0 KiB
Plaintext
78 lines
2.0 KiB
Plaintext
//
|
|
// RNMapsGoogleMapView.mm
|
|
//
|
|
//
|
|
// Created by Salah Ghanim on 23.11.24.
|
|
// Copyright © 2024 react-native-maps. All rights reserved.
|
|
//
|
|
#include "RNMapsDefines.h"
|
|
|
|
#if HAVE_GOOGLE_MAPS == 0
|
|
|
|
#if __has_include(<ReactNativeMaps/generated/RNMapsAirModuleDelegate.h>)
|
|
#import <ReactNativeMaps/generated/RNMapsHostViewDelegate.h>
|
|
#import <ReactNativeMaps/generated/ComponentDescriptors.h>
|
|
#import <ReactNativeMaps/generated/EventEmitters.h>
|
|
#import <ReactNativeMaps/generated/Props.h>
|
|
#import <ReactNativeMaps/generated/RCTComponentViewHelpers.h>
|
|
#else
|
|
#import "../../generated/RNMapsSpecs/ComponentDescriptors.h"
|
|
#import "../../generated/RNMapsSpecs/EventEmitters.h"
|
|
#import "../../generated/RNMapsSpecs/Props.h"
|
|
#import "../../generated/RNMapsSpecs/RCTComponentViewHelpers.h"
|
|
#import "../../generated/RNMapsHostViewDelegate.h"
|
|
#endif
|
|
#import "RCTFabricComponentsPlugins.h"
|
|
#import <React/RCTConversions.h>
|
|
#import "PlaceHolderGoogleMapView.h"
|
|
|
|
using namespace facebook::react;
|
|
|
|
|
|
@implementation RNMapsGoogleMapView
|
|
|
|
|
|
#pragma mark - JS Commands
|
|
- (void)animateToRegion:(NSString *)regionJSON duration:(NSInteger)duration{
|
|
}
|
|
- (void)setCamera:(NSString *)cameraJSON{
|
|
}
|
|
|
|
- (void)animateCamera:(NSString *)cameraJSON duration:(NSInteger)duration{
|
|
}
|
|
|
|
- (void)fitToElements:(NSString *)edgePaddingJSON animated:(BOOL)animated {
|
|
}
|
|
|
|
- (void)fitToSuppliedMarkers:(NSString *)markersJSON edgePaddingJSON:(NSString *)edgePaddingJSON animated:(BOOL)animated {
|
|
}
|
|
- (void)fitToCoordinates:(NSString *)coordinatesJSON edgePaddingJSON:(NSString *)edgePaddingJSON animated:(BOOL)animated {
|
|
|
|
}
|
|
- (void) setIndoorActiveLevelIndex:(NSInteger)activeLevelIndex
|
|
{
|
|
|
|
}
|
|
|
|
#pragma mark - Native commands
|
|
|
|
- (void)handleCommand:(const NSString *)commandName args:(const NSArray *)args
|
|
{
|
|
}
|
|
|
|
|
|
+ (ComponentDescriptorProvider)componentDescriptorProvider
|
|
{
|
|
return concreteComponentDescriptorProvider<RNMapsGoogleMapViewComponentDescriptor>();
|
|
}
|
|
|
|
|
|
@end
|
|
|
|
Class<RCTComponentViewProtocol> RNMapsGoogleMapViewCls(void)
|
|
{
|
|
return RNMapsGoogleMapView.class;
|
|
}
|
|
|
|
#endif
|