feat(web): bootstrap workspace from URL on first paint#84
Draft
kumarabhirup wants to merge 2 commits into
Draft
Conversation
This seeds the workspace shell from server-loaded route data so reloads land on the correct tab and content immediately instead of flashing home first.
4 tasks
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
app/page.tsxfromsearchParamsand pass aninitialSnapshotinto the client shell so the first paint opens the correct file, object, app, browse view, or chat routeworkspace-content.tsxanduse-workspace-watcher.tsfrom that snapshot so reloads stop flashing the home hero and the watcher skips the redundant first fetch/workspaceredirect with a server redirect while preserving deep-link query paramsWhy
The workspace currently renders the Home tab first and only later hydrates into the URL-selected content after fetching the tree and then fetching the payload. This change makes the incoming URL the source of truth for first paint so reloads and deep links open in one pass.
Journey
Approaches considered and decisions made
page.tsx, which keeps server boot and API responses in sync.Test plan
/?path=companyand confirm thecompanyview renders on first paint with the correct active tabhidden=1deep link and confirm both resolve on first paint