Fix DM presence indicator never updating live (#63)

The sidebar shows every DM's online/offline dot at once, but the only
existing signal for a presence change (member_updated) is broadcast to
a room's own channel, which Presence only delivers to a connection that
currently has that specific room joined -- never true for a DM sitting
unopened in the sidebar. Add a dedicated per-user broadcast
(dm_presence_update) sent to each of a user's DM partners on their own
per-user channel whenever their global online/offline state changes, so
the sidebar dot updates without needing that DM to be the open room.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-27 20:41:57 -06:00
co-authored by Claude Sonnet 5
parent d42bf114dd
commit 4cc3823adf
7 changed files with 142 additions and 5 deletions
+21
View File
@@ -244,6 +244,27 @@ async def list_member_rooms(
]
async def list_dm_partner_ids(db: AsyncSession, user_id: uuid.UUID) -> list[uuid.UUID]:
"""Every user this user_id shares a DM with (#63) -- used to know who
needs telling about a global online/offline transition, since Presence
gates room-channel delivery on actually having that specific room
joined right now (only ever the one room currently open in the UI), so
a DM sitting unopened in the sidebar would otherwise never hear about
its partner's status changing at all."""
result = await db.execute(
select(RoomMembership.user_id)
.join(Room, Room.id == RoomMembership.room_id)
.where(
Room.is_dm.is_(True),
RoomMembership.user_id != user_id,
RoomMembership.room_id.in_(
select(RoomMembership.room_id).where(RoomMembership.user_id == user_id)
),
)
)
return [row[0] for row in result.all()]
async def get_room(db: AsyncSession, room_id: uuid.UUID) -> Room:
room = await db.get(Room, room_id)
if room is None: