Stream branching and seeding stages during sandbox prep#4
Open
exekias wants to merge 1 commit into
Open
Conversation
Branch preparation previously ran as one opaque server-side step behind a static spinner. Move the create/seed work into a streaming NDJSON endpoint that emits distinct "branching" and "seeding" phase events, so the user can watch what's happening behind the scenes on first load and on reset. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Summary
Branch preparation previously ran as a single opaque server-side step behind a static "Forking a fresh Postgres branch…" spinner — the user couldn't tell whether the branch was being forked or seeded. This differentiates the two stages and streams them live.
/api/lessons/[slug]/prepare) that emits distinctbranching→seeding→ready(orerror) phase events.SandboxSection) now only does the fast "is a ready branch present?" check, so it streams in quickly; creation is client-driven (after hydration), which is what enables the live progress.Lessons-.-Learn-Postgres.mp4
Changed
lib/branch-manager.ts—ensureBranchForLesson/resetBranchForLessonaccept an optionalonPhasecallback; newgetReadyBranch()for the fast existence check.app/api/lessons/[slug]/prepare/route.ts(new) — streaming endpoint, handles create and reset.components/lesson/SandboxBootstrap.tsx,SandboxPrepProgress.tsx,usePrepareStream.ts(new) — client bootstrapper, shared checklist UI, and the NDJSON-reading hook.SandboxSection.tsx/SandboxPanel.tsx/SandboxLoading.tsx— updated to the new flow.app/api/lessons/[slug]/reset/route.ts(its only caller now uses/prepare).Test plan
tsc --noEmit,eslint, andnext buildpass.🤖 Generated with Claude Code