- 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
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
const {dirname} = require('path')
|
|
|
|
const mkdirpManual = (path, opts, made) => {
|
|
opts.recursive = false
|
|
const parent = dirname(path)
|
|
if (parent === path) {
|
|
return opts.mkdirAsync(path, opts).catch(er => {
|
|
// swallowed by recursive implementation on posix systems
|
|
// any other error is a failure
|
|
if (er.code !== 'EISDIR')
|
|
throw er
|
|
})
|
|
}
|
|
|
|
return opts.mkdirAsync(path, opts).then(() => made || path, er => {
|
|
if (er.code === 'ENOENT')
|
|
return mkdirpManual(parent, opts)
|
|
.then(made => mkdirpManual(path, opts, made))
|
|
if (er.code !== 'EEXIST' && er.code !== 'EROFS')
|
|
throw er
|
|
return opts.statAsync(path).then(st => {
|
|
if (st.isDirectory())
|
|
return made
|
|
else
|
|
throw er
|
|
}, () => { throw er })
|
|
})
|
|
}
|
|
|
|
const mkdirpManualSync = (path, opts, made) => {
|
|
const parent = dirname(path)
|
|
opts.recursive = false
|
|
|
|
if (parent === path) {
|
|
try {
|
|
return opts.mkdirSync(path, opts)
|
|
} catch (er) {
|
|
// swallowed by recursive implementation on posix systems
|
|
// any other error is a failure
|
|
if (er.code !== 'EISDIR')
|
|
throw er
|
|
else
|
|
return
|
|
}
|
|
}
|
|
|
|
try {
|
|
opts.mkdirSync(path, opts)
|
|
return made || path
|
|
} catch (er) {
|
|
if (er.code === 'ENOENT')
|
|
return mkdirpManualSync(path, opts, mkdirpManualSync(parent, opts, made))
|
|
if (er.code !== 'EEXIST' && er.code !== 'EROFS')
|
|
throw er
|
|
try {
|
|
if (!opts.statSync(path).isDirectory())
|
|
throw er
|
|
} catch (_) {
|
|
throw er
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = {mkdirpManual, mkdirpManualSync}
|