feat(web): instant navigation feedback via loading skeletons#24
Open
fastestdevalive wants to merge 2 commits into
Open
feat(web): instant navigation feedback via loading skeletons#24fastestdevalive wants to merge 2 commits into
fastestdevalive wants to merge 2 commits into
Conversation
- Add loading.tsx to sessions/[id], sessions/[id]/workspace, and terminals/[name] so the URL updates instantly on sidebar click and a skeleton is shown while the page renders — eliminates the frozen UI that appeared while waiting for route transitions - Extract createStubSession into shared lib/stub-session.ts - Fix workspace page to render immediately with a stub session instead of blocking on the API fetch behind a loading guard Refs: fix-link-opening Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This reverts commit cb342bf.
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
loading.tsxtosessions/[id],sessions/[id]/workspace, andterminals/[name]— URL updates instantly on sidebar click and a three-pane skeleton is shown while the page loads, eliminating the frozen UIcreateStubSessioninto a sharedlib/stub-session.tsutilityHow it works
Without
loading.tsx, Next.js App Router holds the old page visible until the new route finishes rendering — the UI appears stuck. Withloading.tsxpresent, Next.js updates the URL instantly and shows the skeleton as an immediate Suspense fallback.Closes fix-link-opening
🤖 Generated with Claude Code