- 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
73 lines
1.5 KiB
JavaScript
73 lines
1.5 KiB
JavaScript
'use strict'
|
|
|
|
const { LRUCache } = require('lru-cache')
|
|
|
|
const MEMOIZED = new LRUCache({
|
|
max: 500,
|
|
maxSize: 50 * 1024 * 1024, // 50MB
|
|
ttl: 3 * 60 * 1000, // 3 minutes
|
|
sizeCalculation: (entry, key) => key.startsWith('key:') ? entry.data.length : entry.length,
|
|
})
|
|
|
|
module.exports.clearMemoized = clearMemoized
|
|
|
|
function clearMemoized () {
|
|
const old = {}
|
|
MEMOIZED.forEach((v, k) => {
|
|
old[k] = v
|
|
})
|
|
MEMOIZED.clear()
|
|
return old
|
|
}
|
|
|
|
module.exports.put = put
|
|
|
|
function put (cache, entry, data, opts) {
|
|
pickMem(opts).set(`key:${cache}:${entry.key}`, { entry, data })
|
|
putDigest(cache, entry.integrity, data, opts)
|
|
}
|
|
|
|
module.exports.put.byDigest = putDigest
|
|
|
|
function putDigest (cache, integrity, data, opts) {
|
|
pickMem(opts).set(`digest:${cache}:${integrity}`, data)
|
|
}
|
|
|
|
module.exports.get = get
|
|
|
|
function get (cache, key, opts) {
|
|
return pickMem(opts).get(`key:${cache}:${key}`)
|
|
}
|
|
|
|
module.exports.get.byDigest = getDigest
|
|
|
|
function getDigest (cache, integrity, opts) {
|
|
return pickMem(opts).get(`digest:${cache}:${integrity}`)
|
|
}
|
|
|
|
class ObjProxy {
|
|
constructor (obj) {
|
|
this.obj = obj
|
|
}
|
|
|
|
get (key) {
|
|
return this.obj[key]
|
|
}
|
|
|
|
set (key, val) {
|
|
this.obj[key] = val
|
|
}
|
|
}
|
|
|
|
function pickMem (opts) {
|
|
if (!opts || !opts.memoize) {
|
|
return MEMOIZED
|
|
} else if (opts.memoize.get && opts.memoize.set) {
|
|
return opts.memoize
|
|
} else if (typeof opts.memoize === 'object') {
|
|
return new ObjProxy(opts.memoize)
|
|
} else {
|
|
return MEMOIZED
|
|
}
|
|
}
|