- 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
67 lines
2.6 KiB
TypeScript
67 lines
2.6 KiB
TypeScript
import { EventEmitter, EventSubscription } from 'fbemitter';
|
|
import { WebSocketBackingStore } from './WebSocketBackingStore';
|
|
import type { ConnectionInfo, DevToolsPluginClientOptions } from './devtools.types';
|
|
export declare const MESSAGE_PROTOCOL_VERSION = 2;
|
|
export declare const DevToolsPluginMethod = "Expo:DevToolsPlugin";
|
|
/**
|
|
* This client is for the Expo DevTools Plugins to communicate between the app and the DevTools webpage hosted in a browser.
|
|
* All the code should be both compatible with browsers and React Native.
|
|
*/
|
|
export declare abstract class DevToolsPluginClient {
|
|
readonly connectionInfo: ConnectionInfo;
|
|
private readonly options?;
|
|
protected eventEmitter: EventEmitter;
|
|
private static defaultWSStore;
|
|
private readonly wsStore;
|
|
protected isClosed: boolean;
|
|
protected retries: number;
|
|
private readonly useTransportationNext;
|
|
private readonly messageFramePacker;
|
|
constructor(connectionInfo: ConnectionInfo, options?: DevToolsPluginClientOptions | undefined);
|
|
/**
|
|
* Initialize the connection.
|
|
* @hidden
|
|
*/
|
|
initAsync(): Promise<void>;
|
|
/**
|
|
* Close the connection.
|
|
*/
|
|
closeAsync(): Promise<void>;
|
|
/**
|
|
* Send a message to the other end of DevTools.
|
|
* @param method A method name.
|
|
* @param params any extra payload.
|
|
*/
|
|
sendMessage(method: string, params: any): void;
|
|
private sendMessageImplLegacy;
|
|
private sendMessageImplTransportationNext;
|
|
/**
|
|
* Subscribe to a message from the other end of DevTools.
|
|
* @param method Subscribe to a message with a method name.
|
|
* @param listener Listener to be called when a message is received.
|
|
*/
|
|
addMessageListener(method: string, listener: (params: any) => void): EventSubscription;
|
|
/**
|
|
* Subscribe to a message from the other end of DevTools just once.
|
|
* @param method Subscribe to a message with a method name.
|
|
* @param listener Listener to be called when a message is received.
|
|
*/
|
|
addMessageListenerOnce(method: string, listener: (params: any) => void): void;
|
|
/**
|
|
* Returns whether the client is connected to the server.
|
|
*/
|
|
isConnected(): boolean;
|
|
/**
|
|
* The method to create the WebSocket connection.
|
|
*/
|
|
protected connectAsync(): Promise<WebSocket>;
|
|
protected handleMessage: (event: WebSocketMessageEvent) => void;
|
|
private handleMessageImplLegacy;
|
|
private handleMessageImplTransportationNext;
|
|
/**
|
|
* Get the WebSocket backing store. Exposed for testing.
|
|
* @hidden
|
|
*/
|
|
getWebSocketBackingStore(): WebSocketBackingStore;
|
|
}
|
|
//# sourceMappingURL=DevToolsPluginClient.d.ts.map
|