- 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
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
import { shouldBeUseWeb } from './PlatformChecker';
|
|
const SHOULD_BE_USE_WEB = shouldBeUseWeb();
|
|
|
|
/**
|
|
* This symbol is used to represent a mapping from the value to itself.
|
|
*
|
|
* It's used to prevent converting a shareable that's already converted -
|
|
* for example a Shared Value that's in worklet's closure.
|
|
**/
|
|
export const shareableMappingFlag = Symbol('shareable flag');
|
|
|
|
/*
|
|
During a fast refresh, React holds the same instance of a Mutable
|
|
(that's guaranteed by `useRef`) but `shareableCache` gets regenerated and thus
|
|
becoming empty. This happens when editing the file that contains the definition of this cache.
|
|
|
|
Because of it, `makeShareableCloneRecursive` can't find given mapping
|
|
in `shareableCache` for the Mutable and tries to clone it as if it was a regular JS object.
|
|
During cloning we use `Object.entries` to iterate over the keys which throws an error on accessing `_value`.
|
|
For convenience we moved this cache to a separate file so it doesn't scare us with red squiggles.
|
|
*/
|
|
|
|
const cache = SHOULD_BE_USE_WEB ? null : new WeakMap();
|
|
export const shareableMappingCache = SHOULD_BE_USE_WEB ? {
|
|
set() {
|
|
// NOOP
|
|
},
|
|
get() {
|
|
return null;
|
|
}
|
|
} : {
|
|
set(shareable, shareableRef) {
|
|
cache.set(shareable, shareableRef || shareableMappingFlag);
|
|
},
|
|
get: cache.get.bind(cache)
|
|
};
|
|
//# sourceMappingURL=shareableMappingCache.js.map
|