- 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
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = literalTemplate;
|
|
var _options = require("./options.js");
|
|
var _parse = require("./parse.js");
|
|
var _populate = require("./populate.js");
|
|
function literalTemplate(formatter, tpl, opts) {
|
|
const {
|
|
metadata,
|
|
names
|
|
} = buildLiteralData(formatter, tpl, opts);
|
|
return arg => {
|
|
const defaultReplacements = {};
|
|
arg.forEach((replacement, i) => {
|
|
defaultReplacements[names[i]] = replacement;
|
|
});
|
|
return arg => {
|
|
const replacements = (0, _options.normalizeReplacements)(arg);
|
|
if (replacements) {
|
|
Object.keys(replacements).forEach(key => {
|
|
if (hasOwnProperty.call(defaultReplacements, key)) {
|
|
throw new Error("Unexpected replacement overlap.");
|
|
}
|
|
});
|
|
}
|
|
return formatter.unwrap((0, _populate.default)(metadata, replacements ? Object.assign(replacements, defaultReplacements) : defaultReplacements));
|
|
};
|
|
};
|
|
}
|
|
function buildLiteralData(formatter, tpl, opts) {
|
|
let prefix = "BABEL_TPL$";
|
|
const raw = tpl.join("");
|
|
do {
|
|
prefix = "$$" + prefix;
|
|
} while (raw.includes(prefix));
|
|
const {
|
|
names,
|
|
code
|
|
} = buildTemplateCode(tpl, prefix);
|
|
const metadata = (0, _parse.default)(formatter, formatter.code(code), {
|
|
parser: opts.parser,
|
|
placeholderWhitelist: new Set(names.concat(opts.placeholderWhitelist ? Array.from(opts.placeholderWhitelist) : [])),
|
|
placeholderPattern: opts.placeholderPattern,
|
|
preserveComments: opts.preserveComments,
|
|
syntacticPlaceholders: opts.syntacticPlaceholders
|
|
});
|
|
return {
|
|
metadata,
|
|
names
|
|
};
|
|
}
|
|
function buildTemplateCode(tpl, prefix) {
|
|
const names = [];
|
|
let code = tpl[0];
|
|
for (let i = 1; i < tpl.length; i++) {
|
|
const value = `${prefix}${i - 1}`;
|
|
names.push(value);
|
|
code += value + tpl[i];
|
|
}
|
|
return {
|
|
names,
|
|
code
|
|
};
|
|
}
|
|
|
|
//# sourceMappingURL=literal.js.map
|