feat: track session types and display activity in project subtitles#220
Merged
feat: track session types and display activity in project subtitles#220
Conversation
Register actual session types (commit, note, review) instead of 'other' when starting sessions in BranchCard and RemoteBranchCard. Add getRunningSessionTypes() to ProjectStateStore to retrieve the types of all running sessions for a given project. Add projectSubtitle() utility that builds descriptive subtitles combining repo count with active session activity, e.g.: - "1 repo" - "2 repos · making a commit" - "1 repo · making a commit and a note" - "2 repos · pushing changes" Update ProjectsList and ProjectsSidebar to use projectSubtitle() for card and sidebar item subtitles.
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.
Track session types for running sessions and display activity summaries in project card subtitles.
Changes
projectStateStore: AddgetRunningSessionTypes()method that returns session types for all running sessions in a project, delegating type lookups to the unified session registry.BranchCard/RemoteBranchCard: Register sessions with their actual session type instead of hardcoded'other'.utils.ts: Addpluralize(),sessionTypeLabel(), andprojectSubtitle()helpers that build human-readable activity descriptions (e.g. "2 repos · making a commit and a note").ProjectsList/ProjectsSidebar: Replace static location text and plain repo counts with the newprojectSubtitle()that shows repo count plus any active session activity.