- 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
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var callBound = require('call-bound');
|
|
var forEach = require('../helpers/forEach');
|
|
var isLeadingSurrogate = require('../helpers/isLeadingSurrogate');
|
|
var isTrailingSurrogate = require('../helpers/isTrailingSurrogate');
|
|
|
|
var $charCodeAt = callBound('String.prototype.charCodeAt');
|
|
var $strSplit = callBound('String.prototype.split');
|
|
|
|
var StringToCodePoints = require('./StringToCodePoints');
|
|
var UnicodeEscape = require('./UnicodeEscape');
|
|
var UTF16EncodeCodePoint = require('./UTF16EncodeCodePoint');
|
|
|
|
var hasOwn = require('hasown');
|
|
|
|
// https://262.ecma-international.org/12.0/#sec-quotejsonstring
|
|
|
|
var escapes = {
|
|
'\u0008': '\\b',
|
|
'\u0009': '\\t',
|
|
'\u000A': '\\n',
|
|
'\u000C': '\\f',
|
|
'\u000D': '\\r',
|
|
'\u0022': '\\"',
|
|
'\u005c': '\\\\'
|
|
};
|
|
|
|
module.exports = function QuoteJSONString(value) {
|
|
if (typeof value !== 'string') {
|
|
throw new $TypeError('Assertion failed: `value` must be a String');
|
|
}
|
|
var product = '"';
|
|
if (value) {
|
|
forEach($strSplit(StringToCodePoints(value), ''), function (C) {
|
|
if (hasOwn(escapes, C)) {
|
|
product += escapes[C];
|
|
} else {
|
|
var cCharCode = $charCodeAt(C, 0);
|
|
if (cCharCode < 0x20 || isLeadingSurrogate(cCharCode) || isTrailingSurrogate(cCharCode)) {
|
|
product += UnicodeEscape(C);
|
|
} else {
|
|
product += UTF16EncodeCodePoint(cCharCode);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
product += '"';
|
|
return product;
|
|
};
|