- 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
71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
'use strict';
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const uniqueString = require('unique-string');
|
|
const tempDir = require('temp-dir');
|
|
const isStream = require('is-stream');
|
|
const del = require('del');
|
|
const stream = require('stream');
|
|
const {promisify} = require('util');
|
|
|
|
const pipeline = promisify(stream.pipeline);
|
|
const {writeFile} = fs.promises;
|
|
|
|
const getPath = (prefix = '') => path.join(tempDir, prefix + uniqueString());
|
|
|
|
const writeStream = async (filePath, data) => pipeline(data, fs.createWriteStream(filePath));
|
|
|
|
const createTask = (tempyFunction, {extraArguments = 0} = {}) => async (...arguments_) => {
|
|
const [callback, options] = arguments_.slice(extraArguments);
|
|
const result = await tempyFunction(...arguments_.slice(0, extraArguments), options);
|
|
await callback(result);
|
|
await del(result, {force: true});
|
|
};
|
|
|
|
module.exports.file = options => {
|
|
options = {
|
|
...options
|
|
};
|
|
|
|
if (options.name) {
|
|
if (options.extension !== undefined && options.extension !== null) {
|
|
throw new Error('The `name` and `extension` options are mutually exclusive');
|
|
}
|
|
|
|
return path.join(module.exports.directory(), options.name);
|
|
}
|
|
|
|
return getPath() + (options.extension === undefined || options.extension === null ? '' : '.' + options.extension.replace(/^\./, ''));
|
|
};
|
|
|
|
module.exports.file.task = createTask(module.exports.file);
|
|
|
|
module.exports.directory = ({prefix = ''} = {}) => {
|
|
const directory = getPath(prefix);
|
|
fs.mkdirSync(directory);
|
|
return directory;
|
|
};
|
|
|
|
module.exports.directory.task = createTask(module.exports.directory);
|
|
|
|
module.exports.write = async (data, options) => {
|
|
const filename = module.exports.file(options);
|
|
const write = isStream(data) ? writeStream : writeFile;
|
|
await write(filename, data);
|
|
return filename;
|
|
};
|
|
|
|
module.exports.write.task = createTask(module.exports.write, {extraArguments: 1});
|
|
|
|
module.exports.writeSync = (data, options) => {
|
|
const filename = module.exports.file(options);
|
|
fs.writeFileSync(filename, data);
|
|
return filename;
|
|
};
|
|
|
|
Object.defineProperty(module.exports, 'root', {
|
|
get() {
|
|
return tempDir;
|
|
}
|
|
});
|