- 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
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var IsDetachedBuffer = require('./IsDetachedBuffer');
|
|
var IsFixedLengthArrayBuffer = require('./IsFixedLengthArrayBuffer');
|
|
|
|
var isDataViewWithBufferWitnessRecord = require('../helpers/records/data-view-with-buffer-witness-record');
|
|
|
|
var dataViewBuffer = require('data-view-buffer');
|
|
var dataViewByteLength = require('data-view-byte-length');
|
|
var dataViewByteOffset = require('data-view-byte-offset');
|
|
|
|
// https://262.ecma-international.org/15.0/#sec-isviewoutofbounds
|
|
|
|
module.exports = function IsViewOutOfBounds(viewRecord) {
|
|
if (!isDataViewWithBufferWitnessRecord(viewRecord)) {
|
|
throw new $TypeError('Assertion failed: `viewRecord` must be a DataView With Buffer Witness Record');
|
|
}
|
|
|
|
var view = viewRecord['[[Object]]']; // step 1
|
|
|
|
var bufferByteLength = viewRecord['[[CachedBufferByteLength]]']; // step 2
|
|
|
|
if (IsDetachedBuffer(dataViewBuffer(view)) !== (bufferByteLength === 'DETACHED')) {
|
|
// step 3
|
|
throw new $TypeError('Assertion failed: `IsDetachedBuffer(dataViewBuffer(view))` must be true if and only if `bufferByteLength === ~DETACHED~');
|
|
}
|
|
|
|
if (bufferByteLength === 'DETACHED') {
|
|
return true; // step 4
|
|
}
|
|
|
|
var byteOffsetStart = dataViewByteOffset(view); // step 5
|
|
|
|
var isFixed = IsFixedLengthArrayBuffer(dataViewBuffer(view));
|
|
|
|
var viewByteLength = isFixed ? dataViewByteLength(view) : 'AUTO'; // view.[[ByteLength]]
|
|
var byteOffsetEnd = viewByteLength === 'AUTO' ? bufferByteLength : byteOffsetStart + viewByteLength; // steps 6 - 7
|
|
|
|
if (byteOffsetStart > bufferByteLength || byteOffsetEnd > bufferByteLength) {
|
|
return true; // step 8
|
|
}
|
|
|
|
// 9. NOTE: 0-length DataViews are not considered out-of-bounds.
|
|
|
|
return false; // step 10
|
|
};
|