- 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
40 lines
904 B
Plaintext
40 lines
904 B
Plaintext
// @flow strict
|
|
/**
|
|
* Memoizes the provided three-argument function.
|
|
*/
|
|
export default function memoize3<
|
|
A1: { ... } | $ReadOnlyArray<mixed>,
|
|
A2: { ... } | $ReadOnlyArray<mixed>,
|
|
A3: { ... } | $ReadOnlyArray<mixed>,
|
|
R: mixed,
|
|
>(fn: (A1, A2, A3) => R): (A1, A2, A3) => R {
|
|
let cache0;
|
|
|
|
return function memoized(a1, a2, a3) {
|
|
if (!cache0) {
|
|
cache0 = new WeakMap();
|
|
}
|
|
let cache1 = cache0.get(a1);
|
|
let cache2;
|
|
if (cache1) {
|
|
cache2 = cache1.get(a2);
|
|
if (cache2) {
|
|
const cachedValue = cache2.get(a3);
|
|
if (cachedValue !== undefined) {
|
|
return cachedValue;
|
|
}
|
|
}
|
|
} else {
|
|
cache1 = new WeakMap();
|
|
cache0.set(a1, cache1);
|
|
}
|
|
if (!cache2) {
|
|
cache2 = new WeakMap();
|
|
cache1.set(a2, cache2);
|
|
}
|
|
const newValue = fn(a1, a2, a3);
|
|
cache2.set(a3, newValue);
|
|
return newValue;
|
|
};
|
|
}
|