- 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
61 lines
2.0 KiB
JavaScript
61 lines
2.0 KiB
JavaScript
'use strict';
|
|
|
|
var ReactExports = require('react');
|
|
var traditional = require('zustand/traditional');
|
|
|
|
function _extends() {
|
|
return _extends = Object.assign ? Object.assign.bind() : function (n) {
|
|
for (var e = 1; e < arguments.length; e++) {
|
|
var t = arguments[e];
|
|
for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
|
}
|
|
return n;
|
|
}, _extends.apply(null, arguments);
|
|
}
|
|
|
|
var createElement = ReactExports.createElement,
|
|
reactCreateContext = ReactExports.createContext,
|
|
useContext = ReactExports.useContext,
|
|
useMemo = ReactExports.useMemo,
|
|
useRef = ReactExports.useRef;
|
|
function createContext() {
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
console.warn("[DEPRECATED] `context` will be removed in a future version. Instead use `import { createStore, useStore } from 'zustand'`. See: https://github.com/pmndrs/zustand/discussions/1180.");
|
|
}
|
|
var ZustandContext = reactCreateContext(undefined);
|
|
var Provider = function Provider(_ref) {
|
|
var createStore = _ref.createStore,
|
|
children = _ref.children;
|
|
var storeRef = useRef();
|
|
if (!storeRef.current) {
|
|
storeRef.current = createStore();
|
|
}
|
|
return createElement(ZustandContext.Provider, {
|
|
value: storeRef.current
|
|
}, children);
|
|
};
|
|
var useContextStore = function useContextStore(selector, equalityFn) {
|
|
var store = useContext(ZustandContext);
|
|
if (!store) {
|
|
throw new Error('Seems like you have not used zustand provider as an ancestor.');
|
|
}
|
|
return traditional.useStoreWithEqualityFn(store, selector, equalityFn);
|
|
};
|
|
var useStoreApi = function useStoreApi() {
|
|
var store = useContext(ZustandContext);
|
|
if (!store) {
|
|
throw new Error('Seems like you have not used zustand provider as an ancestor.');
|
|
}
|
|
return useMemo(function () {
|
|
return _extends({}, store);
|
|
}, [store]);
|
|
};
|
|
return {
|
|
Provider: Provider,
|
|
useStore: useContextStore,
|
|
useStoreApi: useStoreApi
|
|
};
|
|
}
|
|
|
|
module.exports = createContext;
|