feat(chat): add /chats page with All chats sidebar nav#7
Merged
Conversation
Replace inline "Your chats" recent-list in sidebar with a dedicated All Chats nav item (mirrors Gather's pattern). Adds /chats route backed by BaseTable with title/last-updated columns and hover-underline on chat title consistent with other entity list pages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
anujeet98
approved these changes
Jul 14, 2026
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
All chatsas a first-class sidebar nav item (replaces inline "Your chats" recent-list)/chatsroute backed byBaseTablewith title and last-updated columnshover:underlineconsistent with Contacts, Companies, etc.Changes
Sidebar (
application-layout.tsx)All chatsnav item pointing to/chatswithChatBubbleLeftIconuseChatshook call and inline "Your chats" section — replaced by dedicated pageNew:
/chatspageapps/web/src/app/(app)/chats/page.tsx— thin page shell, sets<title>Chats</title>apps/web/src/components/Chat/ChatsList.tsx—BaseTablewith two columns: Title (linked, hover-underline) and Last updated (relative time: Today / Yesterday / N days ago / date). Empty state with link to/chat.Test plan
/chats/chat(exact match)/chatsrenders all chats in table; loading state shown while fetching/chat/:id/chat/:id(underline on hover)