Feature: Show unread status on threads you're participating in #114
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
Fixes #71
The Problem
In the threads view, it's hard to know which threads have unread comments. The regular room unread logic (based on timestamp) doesn't work for threads because you could have read everything in a recent thread but have unread comments in an older thread.
The Solution
Made the "Last reply [timestamp]" bold and black when there's unread activity in a thread for participating users.
Implementation
1. Thread Model (
app/models/rooms/thread.rb)Added two methods:
participating?(user)- Returns true if user:unread_for_participating?(user)- Checks if the user's membership has unread messages based onunread_attimestamp.2. Threads View (
app/views/messages/_threads.html.erb)3. Utility CSS (
app/assets/stylesheets/application/utilities.css)Added
.fw-800 { font-weight: 800; }to match sidebar bold styling.Visual Result
Testing
AI Disclosure
This PR was developed with AI assistance: