- 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
1.6 KiB
TypeScript
Executable File
61 lines
1.6 KiB
TypeScript
Executable File
export class Sorter<T> {
|
|
|
|
/**
|
|
* An array of the topologically sorted nodes. This list is renewed upon each call to topo.add().
|
|
*/
|
|
nodes: T[];
|
|
|
|
/**
|
|
* Adds a node or list of nodes to be added and topologically sorted
|
|
*
|
|
* @param nodes - A mixed value or array of mixed values to be added as nodes to the topologically sorted list.
|
|
* @param options - Optional sorting information about the nodes.
|
|
*
|
|
* @returns Returns an array of the topologically sorted nodes.
|
|
*/
|
|
add(nodes: T | T[], options?: Options): T[];
|
|
|
|
/**
|
|
* Merges another Sorter object into the current object.
|
|
*
|
|
* @param others - The other object or array of objects to be merged into the current one.
|
|
*
|
|
* @returns Returns an array of the topologically sorted nodes.
|
|
*/
|
|
merge(others: Sorter<T> | Sorter<T>[]): T[];
|
|
|
|
/**
|
|
* Sorts the nodes array (only required if the manual option is used when adding items)
|
|
*/
|
|
sort(): T[];
|
|
}
|
|
|
|
|
|
export interface Options {
|
|
|
|
/**
|
|
* The sorting group the added items belong to
|
|
*/
|
|
readonly group?: string;
|
|
|
|
/**
|
|
* The group or groups the added items must come before
|
|
*/
|
|
readonly before?: string | string[];
|
|
|
|
/**
|
|
* The group or groups the added items must come after
|
|
*/
|
|
readonly after?: string | string[];
|
|
|
|
/**
|
|
* A number used to sort items with equal before/after requirements
|
|
*/
|
|
readonly sort?: number;
|
|
|
|
/**
|
|
* If true, the array is not sorted automatically until sort() is called
|
|
*/
|
|
readonly manual?: boolean;
|
|
}
|