- 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
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var hasSymbols = require('has-symbols')();
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
var callBound = require('call-bound');
|
|
var isString = require('is-string');
|
|
|
|
var $iterator = GetIntrinsic('%Symbol.iterator%', true);
|
|
var $stringSlice = callBound('String.prototype.slice');
|
|
var $String = GetIntrinsic('%String%');
|
|
|
|
var IsArray = require('./IsArray');
|
|
|
|
module.exports = function getIteratorMethod(ES, iterable) {
|
|
var usingIterator;
|
|
if (hasSymbols) {
|
|
usingIterator = ES.GetMethod(iterable, $iterator);
|
|
} else if (IsArray(iterable)) {
|
|
usingIterator = function () {
|
|
var i = -1;
|
|
var arr = this;
|
|
return {
|
|
next: function () {
|
|
i += 1;
|
|
return {
|
|
done: i >= arr.length,
|
|
value: arr[i]
|
|
};
|
|
}
|
|
};
|
|
};
|
|
} else if (isString(iterable)) {
|
|
usingIterator = function () {
|
|
var i = 0;
|
|
return {
|
|
next: function () {
|
|
var nextIndex = ES.AdvanceStringIndex($String(iterable), i, true);
|
|
var value = $stringSlice(iterable, i, nextIndex);
|
|
i = nextIndex;
|
|
var done = nextIndex > iterable.length;
|
|
return {
|
|
done: done,
|
|
value: done ? void undefined : value
|
|
};
|
|
}
|
|
};
|
|
};
|
|
}
|
|
return usingIterator;
|
|
};
|