fix(docs-demo): sync admin settings sections with manifest

The demo Settings screen was fed by a frozen snapshot baked into the
externally generated demoDataset.js, so it drifted from the real
manifest: the Remnawave Panel (plus System and Migrations) sections
were missing and trial/checkout/common still showed as top-level
sections instead of subsections.

Generate frontend/src/lib/webapp/settingsManifest.generated.json from
manifest_payload() (the same source the live /admin/settings endpoint
uses) via scripts/export_settings_manifest.py, and build the demo
section structure from it, overlaying realistic demo values per field
key. A pytest drift guard fails if the Python manifest changes without
regenerating the snapshot, so the demo stays in sync going forward.
This commit is contained in:
3252a8
2026-06-02 19:18:11 +03:00
parent 20f1228218
commit 70e6fa382b
4 changed files with 5651 additions and 9 deletions
+35 -9
View File
@@ -1,5 +1,6 @@
import { DEV_MOCK } from "./previewMock.js";
import { DEMO_DATASET } from "./demoDataset.js";
import SETTINGS_MANIFEST_SECTIONS from "./settingsManifest.generated.json";
import { withDemoAvatar, withDemoAvatarDetail, withDemoAvatarTicket } from "./demoAvatars.js";
const DEMO_LANGUAGE_STORAGE_KEY = "rw_minishop_demo_language";
@@ -605,18 +606,43 @@ function filterDemoSupportTickets(items, params) {
return out;
}
function demoSettingsValuesByKey() {
const map = new Map();
for (const section of DEMO_DATASET.settingsSections || []) {
for (const field of section.fields || []) {
map.set(field.key, field);
}
}
return map;
}
function demoSettingsSections(clone) {
const sections = clone(DEMO_DATASET.settingsSections || []);
// Section/field structure comes from the manifest snapshot generated off the
// Python source of truth (scripts/export_settings_manifest.py), so the demo
// stays in sync with the real admin. Realistic values are overlaid per field
// key from the dump-based dataset; fields absent there (e.g. a freshly added
// section) simply show their placeholders.
const demoValues = demoSettingsValuesByKey();
const sections = clone(SETTINGS_MANIFEST_SECTIONS);
for (const section of sections) {
for (const field of section.fields || []) {
if (!demoSettingsChanges.has(field.key)) continue;
const change = demoSettingsChanges.get(field.key);
if (change.deleted) {
field.value = field.default ?? "";
field.overridden = false;
} else {
field.value = change.value;
field.overridden = true;
const demoField = demoValues.get(field.key);
if (demoField) {
if ("value" in demoField) field.value = demoField.value;
if ("overridden" in demoField) field.overridden = demoField.overridden;
if ("updated_at" in demoField) field.updated_at = demoField.updated_at;
if ("source" in demoField) field.source = demoField.source;
if (field.secret && "has_value" in demoField) field.has_value = demoField.has_value;
}
if (demoSettingsChanges.has(field.key)) {
const change = demoSettingsChanges.get(field.key);
if (change.deleted) {
field.value = field.default ?? "";
field.overridden = false;
} else {
field.value = change.value;
field.overridden = true;
}
}
}
}
File diff suppressed because it is too large Load Diff