- 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
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
'use strict';
|
|
|
|
var $SyntaxError = require('es-errors/syntax');
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var GetValueFromBuffer = require('./GetValueFromBuffer');
|
|
var IsDetachedBuffer = require('./IsDetachedBuffer');
|
|
var IsInteger = require('./IsInteger');
|
|
|
|
var isNegativeZero = require('math-intrinsics/isNegativeZero');
|
|
|
|
var typedArrayLength = require('typed-array-length');
|
|
var typedArrayBuffer = require('typed-array-buffer');
|
|
var typedArrayByteOffset = require('typed-array-byte-offset');
|
|
var whichTypedArray = require('which-typed-array');
|
|
|
|
var tableTAO = require('./tables/typed-array-objects');
|
|
|
|
// https://262.ecma-international.org/8.0/#sec-integerindexedelementget
|
|
|
|
module.exports = function IntegerIndexedElementGet(O, index) {
|
|
if (typeof index !== 'number') {
|
|
throw new $TypeError('`index` must be a Number'); // step 1
|
|
}
|
|
var arrayTypeName = whichTypedArray(O); // step 10
|
|
if (!arrayTypeName) {
|
|
throw new $TypeError('`O` must be a TypedArray'); // step 2
|
|
}
|
|
if (arrayTypeName === 'BigInt64Array' || arrayTypeName === 'BigUint64Array') {
|
|
throw new $SyntaxError('BigInt64Array and BigUint64Array do not exist until ES2020');
|
|
}
|
|
|
|
var buffer = typedArrayBuffer(O); // step 3
|
|
|
|
if (IsDetachedBuffer(buffer)) {
|
|
throw new $TypeError('`O` has a detached buffer'); // step 4
|
|
}
|
|
|
|
if (!IsInteger(index) || isNegativeZero(index)) {
|
|
return void undefined; // steps 5 - 6
|
|
}
|
|
|
|
var length = typedArrayLength(O); // step 7
|
|
|
|
if (index < 0 || index >= length) {
|
|
return void undefined; // step 8
|
|
}
|
|
|
|
var offset = typedArrayByteOffset(O); // step 9
|
|
|
|
var elementType = tableTAO.name['$' + arrayTypeName]; // step 13
|
|
|
|
var elementSize = tableTAO.size['$' + elementType]; // step 11
|
|
|
|
var indexedPosition = (index * elementSize) + offset; // step 12
|
|
|
|
return GetValueFromBuffer(buffer, indexedPosition, elementType, true, 'Unordered'); // step 14
|
|
};
|