- 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
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var jitter_factory_1 = require("../jitter/jitter.factory");
|
|
var Delay = /** @class */ (function () {
|
|
function Delay(options) {
|
|
this.options = options;
|
|
this.attempt = 0;
|
|
}
|
|
Delay.prototype.apply = function () {
|
|
var _this = this;
|
|
return new Promise(function (resolve) { return setTimeout(resolve, _this.jitteredDelay); });
|
|
};
|
|
Delay.prototype.setAttemptNumber = function (attempt) {
|
|
this.attempt = attempt;
|
|
};
|
|
Object.defineProperty(Delay.prototype, "jitteredDelay", {
|
|
get: function () {
|
|
var jitter = jitter_factory_1.JitterFactory(this.options);
|
|
return jitter(this.delay);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Delay.prototype, "delay", {
|
|
get: function () {
|
|
var constant = this.options.startingDelay;
|
|
var base = this.options.timeMultiple;
|
|
var power = this.numOfDelayedAttempts;
|
|
var delay = constant * Math.pow(base, power);
|
|
return Math.min(delay, this.options.maxDelay);
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(Delay.prototype, "numOfDelayedAttempts", {
|
|
get: function () {
|
|
return this.attempt;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
return Delay;
|
|
}());
|
|
exports.Delay = Delay;
|
|
//# sourceMappingURL=delay.base.js.map
|