Compare commits

5 Commits

Author SHA1 Message Date
19a63069b2 Improve mobile navigation and responsive layout
All checks were successful
Build Authoring Service / build (push) Successful in 9s
2026-07-23 23:08:27 +01:00
1a49838b58 updates
All checks were successful
Build Authoring Service / build (push) Successful in 8s
2026-07-14 12:38:20 +01:00
2f0009df56 adding more things
All checks were successful
Build Authoring Service / build (push) Successful in 9s
2026-07-10 10:28:47 +01:00
8329c00fcc testing
All checks were successful
Build Authoring Service / build (push) Successful in 8s
2026-07-09 17:06:10 +01:00
4dd619d02c Merge pull request 'Improvements' (#1) from zq/work/constellation-fix into main
All checks were successful
Build Authoring Service / build (push) Successful in 9s
Reviewed-on: #1
2026-07-09 16:36:26 +01:00
5 changed files with 1039 additions and 192 deletions

View File

@@ -6,7 +6,7 @@ The hidden ecosystem has one friendly source of truth:
The live site still consumes generated constants in: The live site still consumes generated constants in:
- `assets/scripts/hidden-details.js` in `org_web` - `assets/scripts/features/hidden-details.js` in `org_web`
## Canonical Content ## Canonical Content

View File

@@ -48,7 +48,7 @@ POSTS_DIR = ROOT / "posts"
LIMA_DIR = ROOT / "lima" LIMA_DIR = ROOT / "lima"
IMAGE_ASSETS_DIR = ROOT / "assets" / "images" IMAGE_ASSETS_DIR = ROOT / "assets" / "images"
HZONE_ASSETS_DIR = IMAGE_ASSETS_DIR / "hzone" HZONE_ASSETS_DIR = IMAGE_ASSETS_DIR / "hzone"
HIDDEN_DETAILS_JS = ROOT / "assets" / "scripts" / "hidden-details.js" HIDDEN_DETAILS_JS = ROOT / "assets" / "scripts" / "features" / "hidden-details.js"
HIDDEN_CONTENT_JSON = ROOT / "assets" / "content" / "hidden-details.json" HIDDEN_CONTENT_JSON = ROOT / "assets" / "content" / "hidden-details.json"
HIDDEN_BACKUP_DIR = Path(os.environ.get("AUTHOR_HIDDEN_BACKUP_DIR", APP_ROOT / "backups" / "hidden-details")).expanduser().resolve() HIDDEN_BACKUP_DIR = Path(os.environ.get("AUTHOR_HIDDEN_BACKUP_DIR", APP_ROOT / "backups" / "hidden-details")).expanduser().resolve()
EXCLUDED_CONTENT_DIR_NAMES = { EXCLUDED_CONTENT_DIR_NAMES = {

View File

@@ -410,6 +410,77 @@ def normalize_hidden_story(raw: dict[str, Any], entries: list[dict[str, Any]] |
} }
def normalize_life_arc(raw: dict[str, Any], entries: list[dict[str, Any]] | None = None, stories: list[dict[str, Any]] | None = None, existing: dict[str, Any] | None = None) -> dict[str, Any]:
today = datetime.now().date().isoformat()
arc = existing.copy() if existing else {}
arc.update(raw)
title = str(normalize_character_text_refs(arc.get("title") or "")).strip()
if not title:
raise ValueError("Every life arc needs a title.")
arc_id = slugify(str(arc.get("id") or f"arc-{title}"))
if not arc_id.startswith("arc-"):
arc_id = f"arc-{arc_id}"
entry_ids = {entry["id"] for entry in entries or []}
story_ids = {story["id"] for story in stories or []}
chapters = []
for index, raw_chapter in enumerate(arc.get("chapters", [])):
if not isinstance(raw_chapter, dict):
continue
chapter_title = str(normalize_character_text_refs(raw_chapter.get("title") or f"Chapter {index + 1}")).strip()
chapter_id = slugify(str(raw_chapter.get("id") or f"{arc_id}-chapter-{index + 1}-{chapter_title}"))
if not chapter_id.startswith("chapter-"):
chapter_id = f"chapter-{chapter_id}"
moments = []
for moment_index, raw_moment in enumerate(raw_chapter.get("moments", [])):
if not isinstance(raw_moment, dict):
raw_moment = {"text": str(raw_moment)}
text = str(normalize_character_text_refs(raw_moment.get("text") or raw_moment.get("content") or "")).strip()
lesson = str(normalize_character_text_refs(raw_moment.get("lesson") or "")).strip()
if not text and not lesson:
continue
moment_id = slugify(str(raw_moment.get("id") or f"{chapter_id}-moment-{moment_index + 1}"))
if not moment_id.startswith("moment-"):
moment_id = f"moment-{moment_id}"
linked_entry_id = str(raw_moment.get("linkedEntryId") or "").strip()
linked_story_id = str(raw_moment.get("linkedStoryId") or "").strip()
moments.append({
"id": moment_id,
"date": str(raw_moment.get("date") or ""),
"kind": str(raw_moment.get("kind") or "moment"),
"text": text,
"feeling": str(normalize_character_text_refs(raw_moment.get("feeling") or "")).strip(),
"lesson": lesson,
"metric": str(raw_moment.get("metric") or ""),
"sourcePointer": str(raw_moment.get("sourcePointer") or ""),
"visibility": str(raw_moment.get("visibility") or "private"),
"linkedEntryId": linked_entry_id if linked_entry_id in entry_ids else "",
"linkedStoryId": linked_story_id if linked_story_id in story_ids else "",
})
chapters.append({
"id": chapter_id,
"title": chapter_title,
"timeframe": str(normalize_character_text_refs(raw_chapter.get("timeframe") or "")).strip(),
"tone": str(raw_chapter.get("tone") or arc.get("tone") or "warm"),
"purpose": str(normalize_character_text_refs(raw_chapter.get("purpose") or "")).strip(),
"storyDraft": str(normalize_character_text_refs(raw_chapter.get("storyDraft") or "")).replace("\r\n", "\n"),
"linkedStoryId": str(raw_chapter.get("linkedStoryId") or "") if str(raw_chapter.get("linkedStoryId") or "") in story_ids else "",
"moments": moments,
})
return {
"id": arc_id,
"title": title,
"domain": str(normalize_character_text_refs(arc.get("domain") or "")).strip(),
"summary": str(normalize_character_text_refs(arc.get("summary") or "")).strip(),
"tone": str(arc.get("tone") or "warm"),
"themes": [str(normalize_character_text_refs(item)).strip() for item in arc.get("themes", []) if str(item).strip()],
"orgWebConnection": str(normalize_character_text_refs(arc.get("orgWebConnection") or "")).strip(),
"visibility": str(arc.get("visibility") or "private"),
"chapters": chapters,
"createdDate": str(arc.get("createdDate") or today),
"modifiedDate": today,
}
def migrate_hidden_stories(entries: list[dict[str, Any]]) -> list[dict[str, Any]]: def migrate_hidden_stories(entries: list[dict[str, Any]]) -> list[dict[str, Any]]:
story_groups: dict[str, dict[str, Any]] = {} story_groups: dict[str, dict[str, Any]] = {}
@@ -471,19 +542,23 @@ def load_hidden_store() -> dict[str, Any]:
data = json.loads(HIDDEN_CONTENT_JSON.read_text(encoding="utf-8")) data = json.loads(HIDDEN_CONTENT_JSON.read_text(encoding="utf-8"))
entries = data.get("entries", []) entries = data.get("entries", [])
stories = data.get("stories", []) stories = data.get("stories", [])
life_arcs = data.get("lifeArcs", [])
else: else:
entries = migrate_hidden_entries_from_js() entries = migrate_hidden_entries_from_js()
stories = [] stories = []
life_arcs = []
migrated = True migrated = True
data = { data = {
"schemaVersion": 2, "schemaVersion": 2,
"generatedFrom": "assets/scripts/hidden-details.js", "generatedFrom": "assets/scripts/features/hidden-details.js",
"generatedAt": datetime.now().isoformat(timespec="seconds"), "generatedAt": datetime.now().isoformat(timespec="seconds"),
"entries": entries, "entries": entries,
"stories": stories, "stories": stories,
"lifeArcs": life_arcs,
} }
normalized = [normalize_hidden_entry(entry, entry) for entry in entries] normalized = [normalize_hidden_entry(entry, entry) for entry in entries]
normalized_stories = [normalize_hidden_story(story, normalized, story) for story in stories] normalized_stories = [normalize_hidden_story(story, normalized, story) for story in stories]
normalized_life_arcs = [normalize_life_arc(arc, normalized, normalized_stories, arc) for arc in life_arcs]
migrated_relationships = False migrated_relationships = False
if not normalized_stories: if not normalized_stories:
normalized_stories = migrate_hidden_stories(normalized) normalized_stories = migrate_hidden_stories(normalized)
@@ -508,6 +583,7 @@ def load_hidden_store() -> dict[str, Any]:
"layers": HIDDEN_LAYER_DEPTHS, "layers": HIDDEN_LAYER_DEPTHS,
"entries": normalized, "entries": normalized,
"stories": normalized_stories, "stories": normalized_stories,
"lifeArcs": normalized_life_arcs,
"recommendations": hidden_architecture_recommendations(), "recommendations": hidden_architecture_recommendations(),
} }
@@ -554,7 +630,7 @@ def validate_hidden_integrity(entries: list[dict[str, Any]], stories: list[dict[
def hidden_architecture_recommendations() -> dict[str, Any]: def hidden_architecture_recommendations() -> dict[str, Any]:
return { return {
"storage": "Use assets/content/hidden-details.json as the friendly source of truth for reusable memories, first-class stories, and story-only sections, then regenerate the editable constants in assets/scripts/hidden-details.js.", "storage": "Use assets/content/hidden-details.json as the friendly source of truth for reusable memories, first-class stories, and story-only sections, then regenerate the editable constants in assets/scripts/features/hidden-details.js.",
"backups": "Every save writes timestamped backups for both JSON and JS under backups/hidden-details/.", "backups": "Every save writes timestamped backups for both JSON and JS under backups/hidden-details/.",
"versioning": "Commit the JSON and generated JS together so the live site and authoring history stay aligned.", "versioning": "Commit the JSON and generated JS together so the live site and authoring history stay aligned.",
"collaboration": "For simultaneous editing, resolve conflicts by entry id and story id rather than by whole-file ownership.", "collaboration": "For simultaneous editing, resolve conflicts by entry id and story id rather than by whole-file ownership.",
@@ -695,12 +771,20 @@ def save_hidden_store(payload: dict[str, Any]) -> dict[str, Any]:
entries = [normalize_hidden_entry(entry, current.get(str(entry.get("id", "")))) for entry in payload.get("entries", [])] entries = [normalize_hidden_entry(entry, current.get(str(entry.get("id", "")))) for entry in payload.get("entries", [])]
current_stories = {story["id"]: story for story in loaded.get("stories", [])} current_stories = {story["id"]: story for story in loaded.get("stories", [])}
stories = [normalize_hidden_story(story, entries, current_stories.get(str(story.get("id", "")))) for story in payload.get("stories", loaded.get("stories", []))] stories = [normalize_hidden_story(story, entries, current_stories.get(str(story.get("id", "")))) for story in payload.get("stories", loaded.get("stories", []))]
current_life_arcs = {arc["id"]: arc for arc in loaded.get("lifeArcs", [])}
life_arcs = [
normalize_life_arc(arc, entries, stories, current_life_arcs.get(str(arc.get("id", ""))))
for arc in payload.get("lifeArcs", loaded.get("lifeArcs", []))
]
ids = [entry["id"] for entry in entries] ids = [entry["id"] for entry in entries]
if len(ids) != len(set(ids)): if len(ids) != len(set(ids)):
raise ValueError("Entry ids must be unique.") raise ValueError("Entry ids must be unique.")
story_ids = [story["id"] for story in stories] story_ids = [story["id"] for story in stories]
if len(story_ids) != len(set(story_ids)): if len(story_ids) != len(set(story_ids)):
raise ValueError("Story ids must be unique.") raise ValueError("Story ids must be unique.")
life_arc_ids = [arc["id"] for arc in life_arcs]
if len(life_arc_ids) != len(set(life_arc_ids)):
raise ValueError("Life arc ids must be unique.")
stamp = datetime.now().strftime("%Y%m%d-%H%M%S") stamp = datetime.now().strftime("%Y%m%d-%H%M%S")
backup_hidden_file(HIDDEN_DETAILS_JS, stamp) backup_hidden_file(HIDDEN_DETAILS_JS, stamp)
backup_hidden_file(HIDDEN_CONTENT_JSON, stamp) backup_hidden_file(HIDDEN_CONTENT_JSON, stamp)
@@ -712,6 +796,7 @@ def save_hidden_store(payload: dict[str, Any]) -> dict[str, Any]:
"generatedAt": datetime.now().isoformat(timespec="seconds"), "generatedAt": datetime.now().isoformat(timespec="seconds"),
"entries": entries, "entries": entries,
"stories": stories, "stories": stories,
"lifeArcs": life_arcs,
}, },
ensure_ascii=False, ensure_ascii=False,
indent=2, indent=2,

File diff suppressed because it is too large Load Diff

View File

@@ -11,6 +11,7 @@ sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
import authoring_service.build as build_server import authoring_service.build as build_server
import authoring_service.config as config_server import authoring_service.config as config_server
import authoring_service.content as server import authoring_service.content as server
import authoring_service.hidden as hidden_server
import authoring_service.utils as utils_server import authoring_service.utils as utils_server
@@ -128,6 +129,73 @@ class UtilityTests(AuthoringServerTestCase):
self.assertEqual(page_path, "lima/index.md") self.assertEqual(page_path, "lima/index.md")
class HiddenLifeArcTests(unittest.TestCase):
def setUp(self):
self.tmp = tempfile.TemporaryDirectory()
self.root = Path(self.tmp.name)
self.content_json = self.root / "assets" / "content" / "hidden-details.json"
self.hidden_js = self.root / "assets" / "scripts" / "features" / "hidden-details.js"
self.backup_dir = self.root / "backups" / "hidden-details"
self.content_json.parent.mkdir(parents=True)
self.hidden_js.parent.mkdir(parents=True)
self.hidden_js.write_text(
"(function(){\n"
" // -----------------------------\n"
" // EDITABLE CONTENT\n"
" const familyLayers = [];\n"
" // -----------------------------\n"
" // STATE HELPERS\n"
"})();\n",
encoding="utf-8",
)
self.content_json.write_text('{"schemaVersion":3,"entries":[],"stories":[],"lifeArcs":[]}', encoding="utf-8")
self.patchers = [
mock.patch.object(hidden_server, "ROOT", self.root),
mock.patch.object(hidden_server, "HIDDEN_CONTENT_JSON", self.content_json),
mock.patch.object(hidden_server, "HIDDEN_DETAILS_JS", self.hidden_js),
mock.patch.object(hidden_server, "HIDDEN_BACKUP_DIR", self.backup_dir),
]
for patcher in self.patchers:
patcher.start()
def tearDown(self):
for patcher in reversed(self.patchers):
patcher.stop()
self.tmp.cleanup()
def test_save_hidden_store_preserves_life_arcs(self):
saved = hidden_server.save_hidden_store({
"entries": [],
"stories": [],
"lifeArcs": [{
"title": "Gym Journey",
"domain": "fitness",
"themes": ["consistency", "strength"],
"visibility": "private",
"chapters": [{
"title": "Starting Again",
"timeframe": "Summer 2026",
"purpose": "becoming someone who returns",
"storyDraft": "The first victory was returning.",
"moments": [{
"date": "2026-07-09",
"kind": "milestone",
"text": "First week back in the gym.",
"feeling": "steady",
"metric": "3 sessions",
"sourcePointer": "Obsidian: Gym",
}],
}],
}],
})
self.assertEqual(saved["lifeArcs"][0]["title"], "Gym Journey")
self.assertEqual(saved["lifeArcs"][0]["chapters"][0]["moments"][0]["metric"], "3 sessions")
reloaded = hidden_server.load_hidden_store()
self.assertEqual(reloaded["lifeArcs"][0]["themes"], ["consistency", "strength"])
self.assertEqual(reloaded["lifeArcs"][0]["chapters"][0]["storyDraft"], "The first victory was returning.")
class PageRenderingTests(AuthoringServerTestCase): class PageRenderingTests(AuthoringServerTestCase):
def test_render_org_writes_metadata_and_body(self): def test_render_org_writes_metadata_and_body(self):
rendered = server.render_org( rendered = server.render_org(