Phase 1: auth, room CRUD, WebSocket chat, PWA frontend

Invite-only FastAPI + SQLAlchemy(async) + Postgres backend (session-cookie
auth via CLI-provisioned accounts, open-room CRUD, single-instance /ws/chat)
and a React + Vite PWA frontend (login, room list, chat view). Backend tests
pass against a local Postgres DB. See README.md and backend/README.md for
setup, and ARCHITECTURE.md for the full phased design.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-13 20:01:17 -06:00
co-authored by Claude Sonnet 5
parent 8ac35062dc
commit 99aa029c0d
77 changed files with 9042 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
import { useEffect, useRef } from 'react'
import type { ChatMessageEnvelope, Message } from '../types'
interface DisplayMessage {
id: string
username: string
content: string
created_at: string
}
interface MessageListProps {
messages: (Message | ChatMessageEnvelope)[]
usernames: Record<string, string>
}
export function MessageList({ messages, usernames }: MessageListProps) {
const bottomRef = useRef<HTMLDivElement>(null)
useEffect(() => {
bottomRef.current?.scrollIntoView({ block: 'end' })
}, [messages.length])
const display: DisplayMessage[] = messages.map((m) => ({
id: m.id,
content: m.content,
created_at: m.created_at,
username: 'username' in m ? m.username : usernames[m.user_id] ?? m.user_id,
}))
return (
<div style={{ flex: 1, overflowY: 'auto', padding: '0.5rem' }}>
{display.map((m) => (
<div key={m.id} style={{ marginBottom: '0.5rem' }}>
<strong>{m.username}</strong>{' '}
<span style={{ color: '#888', fontSize: '0.8em' }}>
{new Date(m.created_at).toLocaleTimeString()}
</span>
<div>{m.content}</div>
</div>
))}
<div ref={bottomRef} />
</div>
)
}