- 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
30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var HasEitherUnicodeFlag = require('./HasEitherUnicodeFlag');
|
|
|
|
var isRegExpRecord = require('../helpers/records/regexp-record');
|
|
|
|
var CharSet = require('../helpers/CharSet');
|
|
|
|
// https://262.ecma-international.org/15.0/#sec-allcharacters
|
|
|
|
module.exports = function AllCharacters(rer) {
|
|
if (!isRegExpRecord(rer)) {
|
|
throw new $TypeError('Assertion failed: `rer` must be a RegExp Record');
|
|
}
|
|
|
|
if (rer['[[UnicodeSets]]'] && rer['[[IgnoreCase]]']) { // step 1
|
|
// 1. Return the CharSet containing all Unicode code points _c_ that do not have a <a href="https://www.unicode.org/reports/tr44/#Simple_Case_Folding">Simple Case Folding</a> mapping (that is, scf(_c_)=_c_).
|
|
return CharSet.getNonSimpleCaseFoldingCodePoints(); // step 1.a
|
|
} else if (HasEitherUnicodeFlag(rer)) { // step 2
|
|
// 1. Return the CharSet containing all code point values.
|
|
return CharSet.getCodePoints(); // step 3.a
|
|
// eslint-disable-next-line no-else-return
|
|
} else { // step 3
|
|
// 1. Return the CharSet containing all code unit values.
|
|
return CharSet.getCodeUnits(); // step 3.a
|
|
}
|
|
};
|