Spaces:
Running
Running
File size: 16,486 Bytes
88d2f2a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | "use client";
import { useEffect, useMemo, useRef, useState } from "react";
import {
API_BASE,
PHASE_NAMES,
SSE_EVENT_TYPES,
SSE_TO_PHASE_INDEX,
type AnySseEventType,
type PhaseState,
type PhaseStatus,
} from "@/lib/api";
/** Last-seen SSE event surfaced to UI consumers (drives trigger button labels). */
export interface LatestSseEvent {
type: AnySseEventType | "hello" | "heartbeat";
data: Record<string, unknown>;
receivedAt: number;
}
interface UseEventStreamReturn {
phases: PhaseState[] | undefined;
connected: boolean;
latest: LatestSseEvent | null;
/** All events received this session, newest-last. Capped at 200. */
history: LatestSseEvent[];
/** User-facing connection error message; non-null when retries exhausted. */
connectionError: string | null;
}
const MAX_HISTORY = 200;
/**
* Backoff schedule (milliseconds) used when the SSE connection drops with a
* suspected rate-limit (429). After exhausting these delays we surface a
* connection-error message and stop retrying β the user can refresh manually.
* Native EventSource auto-reconnect (~3s) handles non-429 transient errors.
*/
const RATE_LIMIT_BACKOFF_MS: readonly number[] = [5_000, 15_000, 60_000];
function nextStatus(prev: PhaseStatus | undefined, incoming: PhaseStatus): PhaseStatus {
// "completed" and "failed" are sticky against earlier "running"/"pending".
if (prev === "completed" && incoming === "running") return "completed";
if (prev === "failed") return "failed";
return incoming;
}
function applyEvent(
current: PhaseState[] | undefined,
type: AnySseEventType,
data: Record<string, unknown>,
): PhaseState[] {
// Initialise a baseline 7-phase scaffold the first time we receive any event.
const base: PhaseState[] =
current && current.length === PHASE_NAMES.length
? [...current]
: PHASE_NAMES.map((name) => ({ name, status: "pending" as PhaseStatus }));
const idx = SSE_TO_PHASE_INDEX[type];
if (idx === undefined) return base;
const now = new Date().toISOString();
// Phases strictly before the active one become "completed".
for (let i = 0; i < idx; i += 1) {
base[i] = {
...base[i],
status: nextStatus(base[i].status, "completed"),
completedAt: base[i].completedAt ?? now,
};
}
// Phase-specific status transitions.
if (type === "event.created") {
// The event row is freshly created with a placeholder title β RSS poll
// + Haiku scoring are still happening in the background. Show phase 0
// (Event Ingestion) as RUNNING with the placeholder label so the user
// sees the news-fetch step animate. `event.updated` will flip it to
// completed once the real title + scoring metadata land.
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "running"),
startedAt: base[idx].startedAt ?? now,
details: { ...(base[idx].details ?? {}), ...data },
};
} else if (type === "event.updated") {
// RSS poll + Haiku scoring done β real title + sources + scoring
// metadata arrived. Mark phase 0 completed and merge new data into
// phase details so the page can re-render the title.
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "completed"),
startedAt: base[idx].startedAt ?? now,
completedAt: now,
details: { ...(base[idx].details ?? {}), ...data },
};
} else if (type === "auction.opened" || type === "bid.submitted") {
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "running"),
startedAt: base[idx].startedAt ?? now,
details: { ...(base[idx].details ?? {}), ...data },
};
} else if (type === "auction.settled") {
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "completed"),
startedAt: base[idx].startedAt ?? now,
completedAt: now,
details: { ...(base[idx].details ?? {}), ...data },
};
} else if (type === "translation.completed") {
// Phase 2 stays "running" while debate sub-phases (critic / moderator /
// refine) fire; we only mark it "completed" once `refine.completed`
// arrives. If the backend skips the debate layers entirely (legacy
// pipeline), the absence of those events leaves phase 2 in "running"
// until `quality.verdict` arrives and progresses past it β matching
// pre-debate behaviour.
const prevSub =
(base[idx].details?.subPhases as Record<string, PhaseStatus> | undefined) ?? {};
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "running"),
startedAt: base[idx].startedAt ?? now,
details: {
...(base[idx].details ?? {}),
...data,
subPhases: {
...prevSub,
"L1 Analysts": "completed",
"L2 Translators": "completed",
"L3 Critics": prevSub["L3 Critics"] ?? "running",
},
},
};
} else if (
type === "critic.completed" ||
type === "moderator.verdict" ||
type === "refine.completed"
) {
const prevSub =
(base[idx].details?.subPhases as Record<string, PhaseStatus> | undefined) ?? {};
const nextSub: Record<string, PhaseStatus> = { ...prevSub };
if (type === "critic.completed") {
nextSub["L1 Analysts"] = "completed";
nextSub["L2 Translators"] = "completed";
nextSub["L3 Critics"] = "completed";
nextSub["L4 Moderator"] = "running";
} else if (type === "moderator.verdict") {
nextSub["L3 Critics"] = "completed";
nextSub["L4 Moderator"] = "completed";
nextSub["L5 Refine"] = "running";
} else {
nextSub["L4 Moderator"] = "completed";
nextSub["L5 Refine"] = "completed";
}
const phase2Completed = type === "refine.completed";
base[idx] = {
...base[idx],
status: phase2Completed
? nextStatus(base[idx].status, "completed")
: nextStatus(base[idx].status, "running"),
startedAt: base[idx].startedAt ?? now,
completedAt: phase2Completed ? now : base[idx].completedAt,
details: {
...(base[idx].details ?? {}),
...data,
subPhases: nextSub,
},
};
} else if (type === "quality.verdict") {
const verdict = String(data.verdict ?? "");
const lifecycleRejected = verdict !== "" && verdict !== "PASS";
// Judge phase ran successfully β it produced a verdict. The phase
// itself is "completed" regardless of which way the verdict went.
// This matches the REST /events snapshot (phase 4 status=completed,
// top-level status=REJECTED) and is what the user sees when they
// reload the page after lifecycle terminates.
base[idx] = {
...base[idx],
status: "completed",
completedAt: now,
details: { ...(base[idx].details ?? {}), ...data },
};
// If the judges rejected, the downstream phases (Anchor / Polymarket /
// Streaming) are failed at the lifecycle level even though the backend
// still emits onchain.committed / polymarket.submitted signals for
// bookkeeping. Pre-mark them "failed" so the sticky `nextStatus` rule
// (failed-wins) keeps them visually correct when those follow-up
// events arrive.
if (lifecycleRejected) {
for (let i = idx + 1; i < base.length; i += 1) {
base[i] = { ...base[i], status: "failed", completedAt: now };
}
}
} else if (type === "onchain.committed") {
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "completed"),
completedAt: now,
details: { ...(base[idx].details ?? {}), ...data },
};
} else if (type === "polymarket.submitted") {
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "completed"),
completedAt: now,
details: { ...(base[idx].details ?? {}), ...data },
};
} else if (type === "builder_fee.accrued") {
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "running"),
startedAt: base[idx].startedAt ?? now,
details: { ...(base[idx].details ?? {}), ...data },
};
} else if (type === "event.finalized") {
// `event.finalized` only flips the phase to "completed" when the
// lifecycle ended cleanly. If the judges already marked this phase
// failed (because verdict β PASS), the sticky-failed rule in
// nextStatus keeps it failed β matching what the REST /events
// endpoint returns and the user-visible REJECTED badge.
base[idx] = {
...base[idx],
status: nextStatus(base[idx].status, "completed"),
completedAt: now,
details: { ...(base[idx].details ?? {}), ...data },
};
}
return base;
}
/**
* Subscribe to the backend SSE stream and reduce all 10 lifecycle event types
* into a 7-phase array. Also surfaces `latest` and `history` so trigger flows
* can display progress labels driven by named events.
*
* Backend uses sse-starlette which emits **named** events via the `event:`
* field; the default `onmessage` handler only catches anonymous messages, so
* we register listeners for each named type explicitly.
*/
export function useEventStream(eventId?: string): UseEventStreamReturn {
const [phases, setPhases] = useState<PhaseState[] | undefined>(undefined);
const [connected, setConnected] = useState(false);
const [latest, setLatest] = useState<LatestSseEvent | null>(null);
const [history, setHistory] = useState<LatestSseEvent[]>([]);
const [connectionError, setConnectionError] = useState<string | null>(null);
const filterEventId = useRef<string | undefined>(eventId);
filterEventId.current = eventId;
useEffect(() => {
if (typeof window === "undefined") return;
const url = eventId
? `${API_BASE}/sse/events?event_id=${encodeURIComponent(eventId)}`
: `${API_BASE}/sse/events`;
let cancelled = false;
let currentSource: EventSource | null = null;
let reconnectTimer: ReturnType<typeof setTimeout> | null = null;
let backoffIndex = 0;
// Track whether we've ever opened successfully since the last error β
// a clean open resets the backoff schedule.
let hadSuccessfulOpen = false;
let cleanup: (() => void) | null = null;
const allTypes: Array<AnySseEventType | "hello" | "heartbeat"> = [
...SSE_EVENT_TYPES,
"hello",
"heartbeat",
];
const handle = (type: AnySseEventType | "hello" | "heartbeat", raw: string) => {
let data: Record<string, unknown> = {};
try {
data = JSON.parse(raw || "{}") as Record<string, unknown>;
} catch {
return;
}
// Optional eventId filter β backend may broadcast all events on one stream.
if (
filterEventId.current &&
data.event_id !== undefined &&
String(data.event_id) !== String(filterEventId.current)
) {
return;
}
const entry: LatestSseEvent = { type, data, receivedAt: Date.now() };
setLatest(entry);
setHistory((prev) => {
const next = [...prev, entry];
return next.length > MAX_HISTORY ? next.slice(next.length - MAX_HISTORY) : next;
});
if (type !== "hello" && type !== "heartbeat") {
setPhases((prev) => applyEvent(prev, type, data));
}
};
/**
* Probe the SSE URL with a HEAD request to detect 429 Too Many Requests.
* EventSource doesn't expose the HTTP status code on error β without
* this probe the hook can't distinguish a transient drop from a rate
* limit. The probe is cheap (one HEAD request) and only fires after a
* suspected failure.
*/
const isRateLimited = async (): Promise<boolean> => {
try {
const res = await fetch(url, {
method: "HEAD",
// Prevent the browser caching a previous 200 β we want the live status.
cache: "no-store",
});
return res.status === 429;
} catch {
return false;
}
};
const scheduleReconnect = (delayMs: number) => {
if (cancelled) return;
if (reconnectTimer) clearTimeout(reconnectTimer);
reconnectTimer = setTimeout(() => {
if (cancelled) return;
open();
}, delayMs);
};
const open = () => {
if (cancelled) return;
let source: EventSource | null = null;
try {
source = new EventSource(url);
} catch {
// Synchronous EventSource ctor failure β give up immediately.
setConnectionError("Unable to open event stream. Please refresh the page.");
return;
}
const es = source;
currentSource = es;
const onOpen = () => {
if (cancelled) return;
hadSuccessfulOpen = true;
backoffIndex = 0;
setConnected(true);
setConnectionError(null);
};
const onError = async () => {
if (cancelled) return;
setConnected(false);
// Native EventSource auto-reconnects (~3s) on transient errors when
// readyState becomes CONNECTING. If it transitions to CLOSED, the
// browser has given up β we must reconnect manually. A 429 from the
// backend also lands us here, so probe before scheduling backoff.
if (es.readyState !== EventSource.CLOSED) {
// Browser will auto-reconnect; nothing to do.
return;
}
// Tear down listeners on the closed source so we don't leak handlers.
teardownListeners();
currentSource = null;
const rateLimited = await isRateLimited();
if (cancelled) return;
if (rateLimited) {
if (backoffIndex >= RATE_LIMIT_BACKOFF_MS.length) {
setConnectionError(
"Connection lost β too many reconnect attempts. Please refresh the page.",
);
return;
}
const delay = RATE_LIMIT_BACKOFF_MS[backoffIndex];
backoffIndex += 1;
scheduleReconnect(delay);
return;
}
// Non-429 closed connection β reopen immediately if we had a
// successful open before; otherwise apply a small delay to avoid
// hammering the server on a hard outage.
scheduleReconnect(hadSuccessfulOpen ? 1_000 : 3_000);
};
es.addEventListener("open", onOpen);
es.addEventListener("error", onError);
const namedListeners: Array<{
type: AnySseEventType | "hello" | "heartbeat";
fn: (ev: MessageEvent<string>) => void;
}> = allTypes.map((t) => ({
type: t,
fn: (ev: MessageEvent<string>) => handle(t, ev.data ?? ""),
}));
namedListeners.forEach(({ type, fn }) =>
es.addEventListener(type as string, fn as EventListener),
);
// Fallback for anonymous `message` events (legacy shape with {phase, phases}).
const onAnonymous = (ev: MessageEvent<string>) => {
try {
const data = JSON.parse(ev.data ?? "{}") as {
phase?: PhaseState;
phases?: PhaseState[];
};
if (data.phases) setPhases(data.phases);
else if (data.phase) {
setPhases((prev) => {
const list = prev ? [...prev] : [];
const idx = list.findIndex((p) => p.name === data.phase!.name);
if (idx >= 0) list[idx] = data.phase!;
else list.push(data.phase!);
return list;
});
}
} catch {
// ignore
}
};
es.addEventListener("message", onAnonymous as EventListener);
const teardownListeners = () => {
namedListeners.forEach(({ type, fn }) =>
es.removeEventListener(type as string, fn as EventListener),
);
es.removeEventListener("message", onAnonymous as EventListener);
es.removeEventListener("open", onOpen);
es.removeEventListener("error", onError as EventListener);
};
cleanup = () => {
teardownListeners();
es.close();
};
};
open();
return () => {
cancelled = true;
if (reconnectTimer) {
clearTimeout(reconnectTimer);
reconnectTimer = null;
}
if (cleanup) cleanup();
if (currentSource && currentSource.readyState !== EventSource.CLOSED) {
currentSource.close();
}
};
}, [eventId]);
return useMemo(
() => ({ phases, connected, latest, history, connectionError }),
[phases, connected, latest, history, connectionError],
);
}
|