feat(graph): Slide node type — present decks straight from the mesh#205
Merged
Conversation
New built-in NodeType 'Slide' (SlideContent { Content, Notes, Background,
Transition }): any parent node is a deck, Slide children order by MeshNode
order. Content area renders a 16:9 stage (theme-aware gradient, Background
override, fluid type; body is Markdown so raw HTML/SVG passes through) plus
a presenter bar (Prev / 'Slide n / N' / Deck / Present / Next). Clicking the
stage advances to the next slide (host.UpdateArea RedirectControl — the
post-save mechanism from CodeLayoutAreas); Present area is the chrome-free
variant with a corner counter that stays in Present mode across advances;
Notes area carries speaker notes + a preview stage.
Sibling resolution is the live CodeLayoutAreas.Overview query pattern
(namespace + nodeType:Slide, ordered by Order). All chrome is framework
controls. Registered in AddGraph; SlideContent on WithGraphTypes (short
name); projector-screen icon shipped.
Tests (Monolith): SlideContent short-$type round-trip; 3-slide deck
structural nav (out-of-order Order respected, counter, clickable stage);
Present chrome-free assertions. Release -warnaserror 0/0.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Test Results (shard 1)1 314 tests - 82 1 314 ✅ - 81 4m 38s ⏱️ - 1m 56s Results for commit 58abbf8. ± Comparison against base commit ecb5c91. This pull request removes 82 tests. |
Test Results (shard 2) 15 files ± 0 15 suites ±0 7m 29s ⏱️ -14s Results for commit 58abbf8. ± Comparison against base commit ecb5c91. This pull request removes 139 tests. |
Test Results 54 files ± 0 54 suites ±0 17m 57s ⏱️ - 2m 20s Results for commit 58abbf8. ± Comparison against base commit ecb5c91. This pull request removes 221 tests. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
For the Agentic Engineering training: a built-in
SlideNodeType. Deck = any parent with Slide children (ordered byorder). 16:9 stage with per-slide background, markdown/HTML/SVG body, presenter bar, click-the-stage (or Next) advances via the standard redirect mechanism, chrome-freePresentarea for full-screen presenting (advance stays in Present mode),Notesarea for speaker notes.Verified: Release
-warnaserror0/0; 3/3 structural/serialization tests (out-of-orderorderrespected; Present has no buttons; stage clickable).🤖 Generated with Claude Code