- 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
80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
/// <reference types="node" />
|
|
import * as childProcess from 'child_process';
|
|
import * as fs from 'fs';
|
|
import { ChildProcess } from 'child_process';
|
|
declare type JSONLike = {
|
|
[property: string]: JSONLike;
|
|
} | readonly JSONLike[] | string | number | boolean | null;
|
|
export interface Options {
|
|
startingUrl?: string;
|
|
chromeFlags?: Array<string>;
|
|
prefs?: Record<string, JSONLike>;
|
|
port?: number;
|
|
handleSIGINT?: boolean;
|
|
chromePath?: string;
|
|
userDataDir?: string | boolean;
|
|
logLevel?: 'verbose' | 'info' | 'error' | 'warn' | 'silent';
|
|
ignoreDefaultFlags?: boolean;
|
|
connectionPollInterval?: number;
|
|
maxConnectionRetries?: number;
|
|
envVars?: {
|
|
[key: string]: string | undefined;
|
|
};
|
|
}
|
|
export interface LaunchedChrome {
|
|
pid: number;
|
|
port: number;
|
|
process: ChildProcess;
|
|
kill: () => void;
|
|
}
|
|
export interface ModuleOverrides {
|
|
fs?: typeof fs;
|
|
spawn?: typeof childProcess.spawn;
|
|
}
|
|
declare function launch(opts?: Options): Promise<LaunchedChrome>;
|
|
/** Returns Chrome installation path that chrome-launcher will launch by default. */
|
|
declare function getChromePath(): string;
|
|
declare function killAll(): Array<Error>;
|
|
declare class Launcher {
|
|
private opts;
|
|
private tmpDirandPidFileReady;
|
|
private pidFile;
|
|
private startingUrl;
|
|
private outFile?;
|
|
private errFile?;
|
|
private chromePath?;
|
|
private ignoreDefaultFlags?;
|
|
private chromeFlags;
|
|
private prefs;
|
|
private requestedPort?;
|
|
private connectionPollInterval;
|
|
private maxConnectionRetries;
|
|
private fs;
|
|
private spawn;
|
|
private useDefaultProfile;
|
|
private envVars;
|
|
chromeProcess?: childProcess.ChildProcess;
|
|
userDataDir?: string;
|
|
port?: number;
|
|
pid?: number;
|
|
constructor(opts?: Options, moduleOverrides?: ModuleOverrides);
|
|
private get flags();
|
|
static defaultFlags(): string[];
|
|
/** Returns the highest priority chrome installation. */
|
|
static getFirstInstallation(): string | undefined;
|
|
/** Returns all available chrome installations in decreasing priority order. */
|
|
static getInstallations(): string[];
|
|
makeTmpDir(): string;
|
|
prepare(): void;
|
|
private setBrowserPrefs;
|
|
launch(): Promise<void>;
|
|
private spawnProcess;
|
|
private cleanup;
|
|
private isDebuggerReady;
|
|
waitUntilReady(): Promise<void>;
|
|
kill(): void;
|
|
destroyTmp(): void;
|
|
}
|
|
export default Launcher;
|
|
export { Launcher, launch, killAll, getChromePath };
|