- 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
82 lines
1.8 KiB
JavaScript
82 lines
1.8 KiB
JavaScript
import {IS_IDENTIFIER_CHAR, IS_IDENTIFIER_START} from "../parser/util/identifier";
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar
|
|
// Hard-code a list of reserved words rather than trying to use keywords or contextual keywords
|
|
// from the parser, since currently there are various exceptions, like `package` being reserved
|
|
// but unused and various contextual keywords being reserved. Note that we assume that all code
|
|
// compiled by Sucrase is in a module, so strict mode words and await are all considered reserved
|
|
// here.
|
|
const RESERVED_WORDS = new Set([
|
|
// Reserved keywords as of ECMAScript 2015
|
|
"break",
|
|
"case",
|
|
"catch",
|
|
"class",
|
|
"const",
|
|
"continue",
|
|
"debugger",
|
|
"default",
|
|
"delete",
|
|
"do",
|
|
"else",
|
|
"export",
|
|
"extends",
|
|
"finally",
|
|
"for",
|
|
"function",
|
|
"if",
|
|
"import",
|
|
"in",
|
|
"instanceof",
|
|
"new",
|
|
"return",
|
|
"super",
|
|
"switch",
|
|
"this",
|
|
"throw",
|
|
"try",
|
|
"typeof",
|
|
"var",
|
|
"void",
|
|
"while",
|
|
"with",
|
|
"yield",
|
|
// Future reserved keywords
|
|
"enum",
|
|
"implements",
|
|
"interface",
|
|
"let",
|
|
"package",
|
|
"private",
|
|
"protected",
|
|
"public",
|
|
"static",
|
|
"await",
|
|
// Literals that cannot be used as identifiers
|
|
"false",
|
|
"null",
|
|
"true",
|
|
]);
|
|
|
|
/**
|
|
* Determine if the given name is a legal variable name.
|
|
*
|
|
* This is needed when transforming TypeScript enums; if an enum key is a valid
|
|
* variable name, it might be referenced later in the enum, so we need to
|
|
* declare a variable.
|
|
*/
|
|
export default function isIdentifier(name) {
|
|
if (name.length === 0) {
|
|
return false;
|
|
}
|
|
if (!IS_IDENTIFIER_START[name.charCodeAt(0)]) {
|
|
return false;
|
|
}
|
|
for (let i = 1; i < name.length; i++) {
|
|
if (!IS_IDENTIFIER_CHAR[name.charCodeAt(i)]) {
|
|
return false;
|
|
}
|
|
}
|
|
return !RESERVED_WORDS.has(name);
|
|
}
|