Inbox tabs, reaction reactor names, and recents-ordering fix#24
Open
clickclacknvrwhack wants to merge 1 commit into
Open
Conversation
Web UI + backend improvements from a working session: - Tabs: organize threads into Recent / Archive / custom tabs. Adds a `tab` column on conversations and a `tabs` table, tab CRUD + bulk-move API endpoints, a sidebar tab bar, and a multi-select mode to move threads (archive included) in bulk. - Reaction tooltips now name who reacted (cross-platform) instead of a bare count. Captures reactor participant IDs for Google Messages and resolves actors (incl. WhatsApp/Signal) to names, falling back to a count for historical reactions with no reactor data. - Recents ordering: contentless messages (e.g. an emoji reaction made in a group that arrives as an empty stub in the reactor's 1:1 thread) no longer float a conversation to the top. Adds MessageHasContent / AdvanceConversationRecency, a startup repair for already-affected conversations, and TDD coverage. - UI fix: right-click context-menu text is now readable in light mode. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Web UI + backend improvements from a working session.
1. Conversation tabs + multi-select archive
Organize threads into Recent / Archive / custom tabs.
tabcolumn onconversations+ atabstable (with startup-safe migration)./api/tabs,/api/conversations/move, per-conversation/tab).2. Reaction tooltips name the reactor
Hovering a reaction pill now shows who reacted (or a list) instead of a bare count.
3. Recents-ordering fix (contentless messages)
An emoji reaction made in a group can arrive as an empty stub message in the reactor's 1:1 thread; that stub was floating the 1:1 to the top of recents.
MessageHasContent+AdvanceConversationRecency: only content-bearing messages advance inbox recency, and recency never moves backward.RepairContentlessRecency) corrects already-affected conversations while leaving legitimately metadata-ahead ones untouched.4. Light-mode menu fix
Right-click context-menu text was dark-on-dark (unreadable) in light mode; pinned to a readable smokey-white on the always-dark menu.
Testing
internal/db/recency_test.go(red → green) for the content rule, recency advancement, and the repair.internal/client/extract_test.gofor reactor-actor capture.go build ./...andgo test ./...pass.Notes
om-binbuild artifact and a local.claude/launch.jsonare added to.gitignore.