Add editor component search loading skeleton#2468
Merged
Mbeaulne merged 1 commit intoJun 29, 2026
Merged
Conversation
🎩 PreviewA preview build has been created at: |
Collaborator
Author
7 tasks
e457ad3 to
c102a63
Compare
8 tasks
c102a63 to
bb5303a
Compare
This was referenced Jun 29, 2026
morgan-wowk
approved these changes
Jun 29, 2026
Collaborator
Author
bb5303a to
8bed990
Compare
8 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.

Description
Improves the component search UX with two key additions:
Search skeleton loading state — While a search query is debouncing or pending, a skeleton placeholder (5 rows with icon, title, and subtitle bones) replaces the previous spinner-in-header approach, giving users a clearer sense of incoming results.
AI rerank progress indicator — When AI reranking is active, an animated inline status message cycles through verbs ("Scanning", "Comparing", "Scoring", "Ranking") every 1.2 seconds to communicate that the AI is working, rather than showing a bare spinner.
Additionally, component icons in the sidebar now reflect their source kind with distinct colors:
published→ emeraldregistered→ tealuser/ owned → orangeComponents with a
published_byfield now display a "Published by {author}" subtitle beneath the component name.Related Issue and Pull requests
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
published_byvalue display the "Published by …" subtitle.Additional Comments
The
isSearchingflag is derived by comparing the local (immediate) input value against the deferred committed query, so the skeleton is shown for the full debounce window without requiring any extra async state.