- 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
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { COLUMN, SOURCES_INDEX, SOURCE_LINE, SOURCE_COLUMN } from './sourcemap-segment';
|
|
import { sortComparator } from './sort';
|
|
|
|
import type { ReverseSegment, SourceMapSegment } from './sourcemap-segment';
|
|
|
|
export type Source = ReverseSegment[][];
|
|
|
|
// Rebuilds the original source files, with mappings that are ordered by source line/column instead
|
|
// of generated line/column.
|
|
export default function buildBySources(
|
|
decoded: readonly SourceMapSegment[][],
|
|
memos: unknown[],
|
|
): Source[] {
|
|
const sources: Source[] = memos.map(() => []);
|
|
|
|
for (let i = 0; i < decoded.length; i++) {
|
|
const line = decoded[i];
|
|
for (let j = 0; j < line.length; j++) {
|
|
const seg = line[j];
|
|
if (seg.length === 1) continue;
|
|
|
|
const sourceIndex = seg[SOURCES_INDEX];
|
|
const sourceLine = seg[SOURCE_LINE];
|
|
const sourceColumn = seg[SOURCE_COLUMN];
|
|
|
|
const source = sources[sourceIndex];
|
|
const segs = (source[sourceLine] ||= []);
|
|
segs.push([sourceColumn, i, seg[COLUMN]]);
|
|
}
|
|
}
|
|
|
|
for (let i = 0; i < sources.length; i++) {
|
|
const source = sources[i];
|
|
for (let j = 0; j < source.length; j++) {
|
|
const line = source[j];
|
|
if (line) line.sort(sortComparator);
|
|
}
|
|
}
|
|
|
|
return sources;
|
|
}
|