- 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
88 lines
3.0 KiB
JavaScript
88 lines
3.0 KiB
JavaScript
'use strict';
|
|
|
|
var identity = require('../nodes/identity.js');
|
|
var stringify = require('./stringify.js');
|
|
var stringifyComment = require('./stringifyComment.js');
|
|
|
|
function stringifyDocument(doc, options) {
|
|
const lines = [];
|
|
let hasDirectives = options.directives === true;
|
|
if (options.directives !== false && doc.directives) {
|
|
const dir = doc.directives.toString(doc);
|
|
if (dir) {
|
|
lines.push(dir);
|
|
hasDirectives = true;
|
|
}
|
|
else if (doc.directives.docStart)
|
|
hasDirectives = true;
|
|
}
|
|
if (hasDirectives)
|
|
lines.push('---');
|
|
const ctx = stringify.createStringifyContext(doc, options);
|
|
const { commentString } = ctx.options;
|
|
if (doc.commentBefore) {
|
|
if (lines.length !== 1)
|
|
lines.unshift('');
|
|
const cs = commentString(doc.commentBefore);
|
|
lines.unshift(stringifyComment.indentComment(cs, ''));
|
|
}
|
|
let chompKeep = false;
|
|
let contentComment = null;
|
|
if (doc.contents) {
|
|
if (identity.isNode(doc.contents)) {
|
|
if (doc.contents.spaceBefore && hasDirectives)
|
|
lines.push('');
|
|
if (doc.contents.commentBefore) {
|
|
const cs = commentString(doc.contents.commentBefore);
|
|
lines.push(stringifyComment.indentComment(cs, ''));
|
|
}
|
|
// top-level block scalars need to be indented if followed by a comment
|
|
ctx.forceBlockIndent = !!doc.comment;
|
|
contentComment = doc.contents.comment;
|
|
}
|
|
const onChompKeep = contentComment ? undefined : () => (chompKeep = true);
|
|
let body = stringify.stringify(doc.contents, ctx, () => (contentComment = null), onChompKeep);
|
|
if (contentComment)
|
|
body += stringifyComment.lineComment(body, '', commentString(contentComment));
|
|
if ((body[0] === '|' || body[0] === '>') &&
|
|
lines[lines.length - 1] === '---') {
|
|
// Top-level block scalars with a preceding doc marker ought to use the
|
|
// same line for their header.
|
|
lines[lines.length - 1] = `--- ${body}`;
|
|
}
|
|
else
|
|
lines.push(body);
|
|
}
|
|
else {
|
|
lines.push(stringify.stringify(doc.contents, ctx));
|
|
}
|
|
if (doc.directives?.docEnd) {
|
|
if (doc.comment) {
|
|
const cs = commentString(doc.comment);
|
|
if (cs.includes('\n')) {
|
|
lines.push('...');
|
|
lines.push(stringifyComment.indentComment(cs, ''));
|
|
}
|
|
else {
|
|
lines.push(`... ${cs}`);
|
|
}
|
|
}
|
|
else {
|
|
lines.push('...');
|
|
}
|
|
}
|
|
else {
|
|
let dc = doc.comment;
|
|
if (dc && chompKeep)
|
|
dc = dc.replace(/^\n+/, '');
|
|
if (dc) {
|
|
if ((!chompKeep || contentComment) && lines[lines.length - 1] !== '')
|
|
lines.push('');
|
|
lines.push(stringifyComment.indentComment(commentString(dc), ''));
|
|
}
|
|
}
|
|
return lines.join('\n') + '\n';
|
|
}
|
|
|
|
exports.stringifyDocument = stringifyDocument;
|