- 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
76 lines
2.4 KiB
Objective-C
76 lines
2.4 KiB
Objective-C
/*
|
|
* 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 <Foundation/Foundation.h>
|
|
#import "RCTPLTag.h"
|
|
|
|
@interface RCTPerformanceLogger : NSObject
|
|
|
|
/**
|
|
* Starts measuring a metric with the given tag.
|
|
* Overrides previous value if the measurement has been already started.
|
|
* If RCTProfile is enabled it also begins appropriate async event.
|
|
* All work is scheduled on the background queue so this doesn't block current thread.
|
|
*/
|
|
- (void)markStartForTag:(RCTPLTag)tag;
|
|
|
|
/**
|
|
* Stops measuring a metric with given tag.
|
|
* Checks if RCTPerformanceLoggerStart() has been called before
|
|
* and doesn't do anything and log a message if it hasn't.
|
|
* If RCTProfile is enabled it also ends appropriate async event.
|
|
* All work is scheduled on the background queue so this doesn't block current thread.
|
|
*/
|
|
- (void)markStopForTag:(RCTPLTag)tag;
|
|
|
|
/**
|
|
* Sets given value for a metric with given tag.
|
|
* All work is scheduled on the background queue so this doesn't block current thread.
|
|
*/
|
|
- (void)setValue:(int64_t)value forTag:(RCTPLTag)tag;
|
|
|
|
/**
|
|
* Adds given value to the current value for a metric with given tag.
|
|
* All work is scheduled on the background queue so this doesn't block current thread.
|
|
*/
|
|
- (void)addValue:(int64_t)value forTag:(RCTPLTag)tag;
|
|
|
|
/**
|
|
* Starts an additional measurement for a metric with given tag.
|
|
* It doesn't override previous measurement, instead it'll append a new value
|
|
* to the old one.
|
|
* All work is scheduled on the background queue so this doesn't block current thread.
|
|
*/
|
|
- (void)appendStartForTag:(RCTPLTag)tag;
|
|
|
|
/**
|
|
* Stops measurement and appends the result to the metric with given tag.
|
|
* Checks if RCTPerformanceLoggerAppendStart() has been called before
|
|
* and doesn't do anything and log a message if it hasn't.
|
|
* All work is scheduled on the background queue so this doesn't block current thread.
|
|
*/
|
|
- (void)appendStopForTag:(RCTPLTag)tag;
|
|
|
|
/**
|
|
* Returns an array with values for all tags.
|
|
* Use RCTPLTag to go over the array, there's a pair of values
|
|
* for each tag: start and stop (with indexes 2 * tag and 2 * tag + 1).
|
|
*/
|
|
- (NSArray<NSNumber *> *)valuesForTags;
|
|
|
|
/**
|
|
* Returns a duration in ms (stop_time - start_time) for given RCTPLTag.
|
|
*/
|
|
- (int64_t)durationForTag:(RCTPLTag)tag;
|
|
|
|
/**
|
|
* Returns a value for given RCTPLTag.
|
|
*/
|
|
- (int64_t)valueForTag:(RCTPLTag)tag;
|
|
|
|
@end
|