Show hidden thread status in sidebar#1517
Merged
juliusmarminge merged 2 commits intomainfrom Mar 29, 2026
Merged
Conversation
- Track hidden threads in sidebar thread grouping - Reuse thread status pills for visible and collapsed threads - Cover hidden-thread visibility in logic tests
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
- Render the hidden-thread status as a compact icon in the sidebar - Keep the status accessible with label text and tooltip
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.
I was surprised when I clicked a project which had a indicator but then couldn't see what thread, turned out it was under the 'Show more' fold. This makes that more discoverable:
CleanShot.2026-03-28.at.23.25.27.mp4
What Changed
Why
UI Changes
Checklist
Note
Show aggregate status of hidden threads on the sidebar 'Show more' button
getVisibleThreadsForProjectin Sidebar.logic.ts to return ahiddenThreadsarray alongsidevisibleThreads.ThreadStatusLabelcomponent in Sidebar.tsx that renders a status pill in compact (dot) or full (dot + label) form, used for both thread rows and the new hidden-thread indicator.resolveProjectStatusIndicator.Maponce and reuse it across thread rows and project-level aggregation.Macroscope summarized d21cd8f.
Note
Low Risk
Low risk UI/UX change that only affects sidebar thread rendering and a local helper’s return shape; no auth, persistence, or network behavior changes.
Overview
Makes hidden thread activity more discoverable in the sidebar by surfacing an aggregated status indicator on the collapsed project thread list’s “Show more” row.
getVisibleThreadsForProjectnow also returnshiddenThreads, and the sidebar reuses precomputed per-thread status pills (via aMap) to compute both the project-level indicator and a new hidden-threads indicator. A smallThreadStatusLabelcomponent centralizes status-pill rendering (including a compact dot-only variant), and tests were updated to assert correcthiddenThreadsoutput.Written by Cursor Bugbot for commit d21cd8f. This will update automatically on new commits. Configure here.