Rewrite dashboard and overlay, single /events stream, static client served by the backend

Backend: one SSE stream for messages, selection, poll and connection status; reconnect with backoff; no on-disk Innertube session cache; mock only with MOCK_CHAT=1; binds to 127.0.0.1; serves client/out so production runs on one port. Full URLs for links YouTube truncates in chat.

Client: components split out, Lucide icons, stream title and status, on-air strip, search, pause, keyboard shortcuts, overlay settings dialog. Overlay themes, position, size, animation and auto-hide via URL, sized for 1080p and scaled with the source. New blueprint theme for the brand background.

Removed Tailwind, better-sqlite3, zod, the timezone helpers, Cline memory bank and AGENTS.md. Added ESLint, node:test tests and CI.
This commit is contained in:
2026-09-02 22:05:58 +03:00
parent 19b412a82a
commit 6bcbd5400b
44 changed files with 6582 additions and 3395 deletions
+62
View File
@@ -0,0 +1,62 @@
'use client';
import { Gift } from 'lucide-react';
import type { ChatMessage } from '@shared/chat';
import { proxyImageUrl } from '../lib/imageProxy';
import { formatAmount, formatTime } from '../lib/format';
import { Badges } from './Badges';
import { MessageBody } from './MessageBody';
type Props = {
message: ChatMessage;
selected: boolean;
wasSelected: boolean;
onSelect: (message: ChatMessage) => void;
onLink: (url: string) => void;
};
function membershipLabel(message: ChatMessage): string {
if (message.membershipGiftPurchase && message.giftCount) {
return `Gifted ${message.giftCount} membership${message.giftCount > 1 ? 's' : ''}`;
}
return message.membershipLevel || 'New member';
}
export function MessageCard({ message, selected, wasSelected, onSelect, onLink }: Props) {
const kind = message.superChat ? 'super' : message.membershipGift || message.membershipGiftPurchase ? 'member' : 'chat';
const className = ['card', `card--${kind}`, selected && 'card--selected', wasSelected && 'card--seen'].filter(Boolean).join(' ');
const accent = message.superChat?.color;
return (
<button type="button" className={className} onClick={() => onSelect(message)} style={accent ? { ['--accent' as string]: accent } : undefined}>
<div className="card__head">
{message.authorPhoto ? (
<img src={proxyImageUrl(message.authorPhoto)} alt="" className="avatar" loading="lazy" />
) : (
<span className="avatar avatar--empty">{message.author.slice(0, 1)}</span>
)}
<span className="card__author">{message.author}</span>
<Badges message={message} />
{message.superChat && <span className="card__amount">{formatAmount(message.superChat.amount, message.superChat.currency)}</span>}
{kind === 'member' && (
<span className="card__level">
<Gift size={11} strokeWidth={2.5} />
{membershipLabel(message)}
</span>
)}
<time className="card__time">{formatTime(message.publishedAt)}</time>
</div>
<MessageBody message={message} className="card__text" onLink={onLink} />
{message.superChat?.stickerUrl && (
<img
src={proxyImageUrl(message.superChat.stickerUrl)}
alt={message.superChat.stickerAlt || 'Super Sticker'}
className="sticker"
onError={(event) => {
event.currentTarget.hidden = true;
}}
/>
)}
</button>
);
}