2026-02-20 13:56:34 -06:00
|
|
|
import { useEffect, useRef, type ReactNode } from "react";
|
2026-02-17 12:24:48 -06:00
|
|
|
import { useQueryClient } from "@tanstack/react-query";
|
|
|
|
|
import type { LiveEvent } from "@paperclip/shared";
|
|
|
|
|
import { useCompany } from "./CompanyContext";
|
2026-02-20 13:47:13 -06:00
|
|
|
import type { ToastInput } from "./ToastContext";
|
|
|
|
|
import { useToast } from "./ToastContext";
|
2026-02-17 12:24:48 -06:00
|
|
|
import { queryKeys } from "../lib/queryKeys";
|
|
|
|
|
|
2026-02-20 13:56:34 -06:00
|
|
|
const TOAST_COOLDOWN_WINDOW_MS = 10_000;
|
|
|
|
|
const TOAST_COOLDOWN_MAX = 3;
|
|
|
|
|
const RECONNECT_SUPPRESS_MS = 2000;
|
|
|
|
|
|
2026-02-17 12:24:48 -06:00
|
|
|
function readString(value: unknown): string | null {
|
|
|
|
|
return typeof value === "string" && value.length > 0 ? value : null;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-20 13:47:13 -06:00
|
|
|
function readRecord(value: unknown): Record<string, unknown> | null {
|
|
|
|
|
if (typeof value !== "object" || value === null || Array.isArray(value)) return null;
|
|
|
|
|
return value as Record<string, unknown>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function shortId(value: string) {
|
|
|
|
|
return value.slice(0, 8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const ISSUE_TOAST_ACTIONS = new Set(["issue.created", "issue.updated", "issue.comment_added"]);
|
|
|
|
|
const AGENT_TOAST_STATUSES = new Set(["running", "idle", "error"]);
|
|
|
|
|
const TERMINAL_RUN_STATUSES = new Set(["succeeded", "failed", "timed_out", "cancelled"]);
|
|
|
|
|
|
|
|
|
|
function buildActivityToast(payload: Record<string, unknown>): ToastInput | null {
|
|
|
|
|
const entityType = readString(payload.entityType);
|
|
|
|
|
const entityId = readString(payload.entityId);
|
|
|
|
|
const action = readString(payload.action);
|
|
|
|
|
const details = readRecord(payload.details);
|
|
|
|
|
|
|
|
|
|
if (entityType !== "issue" || !entityId || !action || !ISSUE_TOAST_ACTIONS.has(action)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const issueHref = `/issues/${entityId}`;
|
|
|
|
|
const issueLabel = details?.title && typeof details.title === "string"
|
|
|
|
|
? details.title
|
|
|
|
|
: `Issue ${shortId(entityId)}`;
|
|
|
|
|
|
|
|
|
|
if (action === "issue.created") {
|
|
|
|
|
return {
|
|
|
|
|
title: "Issue created",
|
|
|
|
|
body: issueLabel,
|
|
|
|
|
tone: "success",
|
|
|
|
|
action: { label: "Open issue", href: issueHref },
|
|
|
|
|
dedupeKey: `activity:${action}:${entityId}`,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (action === "issue.updated") {
|
|
|
|
|
return {
|
|
|
|
|
title: "Issue updated",
|
|
|
|
|
body: issueLabel,
|
|
|
|
|
tone: "info",
|
|
|
|
|
action: { label: "Open issue", href: issueHref },
|
|
|
|
|
dedupeKey: `activity:${action}:${entityId}`,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const commentId = readString(details?.commentId);
|
|
|
|
|
return {
|
|
|
|
|
title: "Issue comment added",
|
|
|
|
|
body: issueLabel,
|
|
|
|
|
tone: "info",
|
|
|
|
|
action: { label: "Open issue", href: issueHref },
|
|
|
|
|
dedupeKey: `activity:${action}:${entityId}:${commentId ?? "na"}`,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function buildAgentStatusToast(payload: Record<string, unknown>): ToastInput | null {
|
|
|
|
|
const agentId = readString(payload.agentId);
|
|
|
|
|
const status = readString(payload.status);
|
|
|
|
|
if (!agentId || !status || !AGENT_TOAST_STATUSES.has(status)) return null;
|
|
|
|
|
|
|
|
|
|
const tone = status === "error" ? "error" : status === "idle" ? "success" : "info";
|
|
|
|
|
const title =
|
|
|
|
|
status === "running"
|
|
|
|
|
? "Agent started"
|
|
|
|
|
: status === "idle"
|
|
|
|
|
? "Agent is idle"
|
|
|
|
|
: "Agent error";
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
title,
|
|
|
|
|
body: `Agent ${shortId(agentId)}`,
|
|
|
|
|
tone,
|
|
|
|
|
action: { label: "View agent", href: `/agents/${agentId}` },
|
|
|
|
|
dedupeKey: `agent-status:${agentId}:${status}`,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function buildRunStatusToast(payload: Record<string, unknown>): ToastInput | null {
|
|
|
|
|
const runId = readString(payload.runId);
|
|
|
|
|
const agentId = readString(payload.agentId);
|
|
|
|
|
const status = readString(payload.status);
|
|
|
|
|
if (!runId || !agentId || !status || !TERMINAL_RUN_STATUSES.has(status)) return null;
|
|
|
|
|
|
|
|
|
|
const error = readString(payload.error);
|
|
|
|
|
const tone = status === "succeeded" ? "success" : status === "cancelled" ? "warn" : "error";
|
|
|
|
|
const title =
|
|
|
|
|
status === "succeeded"
|
|
|
|
|
? "Run succeeded"
|
|
|
|
|
: status === "failed"
|
|
|
|
|
? "Run failed"
|
|
|
|
|
: status === "timed_out"
|
|
|
|
|
? "Run timed out"
|
|
|
|
|
: "Run cancelled";
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
title,
|
|
|
|
|
body: error ?? `Agent ${shortId(agentId)} · Run ${shortId(runId)}`,
|
|
|
|
|
tone,
|
|
|
|
|
ttlMs: status === "succeeded" ? 5000 : 7000,
|
|
|
|
|
action: { label: "View run", href: `/agents/${agentId}/runs/${runId}` },
|
|
|
|
|
dedupeKey: `run-status:${runId}:${status}`,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-17 12:24:48 -06:00
|
|
|
function invalidateHeartbeatQueries(
|
|
|
|
|
queryClient: ReturnType<typeof useQueryClient>,
|
|
|
|
|
companyId: string,
|
|
|
|
|
payload: Record<string, unknown>,
|
|
|
|
|
) {
|
2026-02-20 12:50:34 -06:00
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.liveRuns(companyId) });
|
2026-02-17 12:24:48 -06:00
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.heartbeats(companyId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.agents.list(companyId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.dashboard(companyId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.costs(companyId) });
|
2026-02-20 10:32:32 -06:00
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.sidebarBadges(companyId) });
|
2026-02-17 12:24:48 -06:00
|
|
|
|
|
|
|
|
const agentId = readString(payload.agentId);
|
|
|
|
|
if (agentId) {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.agents.detail(agentId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.heartbeats(companyId, agentId) });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function invalidateActivityQueries(
|
|
|
|
|
queryClient: ReturnType<typeof useQueryClient>,
|
|
|
|
|
companyId: string,
|
|
|
|
|
payload: Record<string, unknown>,
|
|
|
|
|
) {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.activity(companyId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.dashboard(companyId) });
|
UI: approval detail page, agent hiring UX, costs breakdown, sidebar badges, and dashboard improvements
Add ApprovalDetail page with comment thread, revision request/resubmit flow,
and ApprovalPayload component for structured payload display. Extend AgentDetail
with permissions management, config revision history, and duplicate action.
Add agent hire dialog with permission-gated access. Rework Costs page with
per-agent breakdown table and period filtering. Add sidebar badge counts for
pending approvals and inbox items. Enhance Dashboard with live metrics and
sparkline trends. Extend Agents list with pending_approval status and bulk
actions. Update IssueDetail with approval linking. Various component improvements
to MetricCard, InlineEditor, CommentThread, and StatusBadge.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 13:03:08 -06:00
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.sidebarBadges(companyId) });
|
2026-02-17 12:24:48 -06:00
|
|
|
|
|
|
|
|
const entityType = readString(payload.entityType);
|
|
|
|
|
const entityId = readString(payload.entityId);
|
|
|
|
|
|
|
|
|
|
if (entityType === "issue") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.issues.list(companyId) });
|
|
|
|
|
if (entityId) {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.issues.detail(entityId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.issues.comments(entityId) });
|
UI: Identity component, LiveRunWidget, issue identifiers, and UX improvements
Add Identity component (avatar + name) used across agent/issue displays. Add
LiveRunWidget for real-time streaming of active heartbeat runs on issue detail
pages via WebSocket. Display issue identifiers (PAP-42) instead of UUID
fragments throughout Issues, Inbox, CommandPalette, and detail pages.
Enhance CommentThread with re-open checkbox, Cmd+Enter submit, sorted display,
and run linking. Improve Activity page with richer formatting and filtering.
Update Dashboard with live metrics. Add reports-to agent link in AgentProperties.
Various small fixes: StatusIcon centering, CopyText ref init, agent detail
run-issue cross-links.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 09:10:07 -06:00
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.issues.activity(entityId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.issues.runs(entityId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.issues.liveRuns(entityId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.issues.activeRun(entityId) });
|
2026-02-17 12:24:48 -06:00
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entityType === "agent") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.agents.list(companyId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.org(companyId) });
|
|
|
|
|
if (entityId) {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.agents.detail(entityId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.heartbeats(companyId, entityId) });
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entityType === "project") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.projects.list(companyId) });
|
|
|
|
|
if (entityId) queryClient.invalidateQueries({ queryKey: queryKeys.projects.detail(entityId) });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entityType === "goal") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.goals.list(companyId) });
|
|
|
|
|
if (entityId) queryClient.invalidateQueries({ queryKey: queryKeys.goals.detail(entityId) });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entityType === "approval") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.approvals.list(companyId) });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entityType === "cost_event") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.costs(companyId) });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entityType === "company") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.companies.all });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-20 13:56:34 -06:00
|
|
|
interface ToastGate {
|
|
|
|
|
cooldownHits: Map<string, number[]>;
|
|
|
|
|
suppressUntil: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function shouldSuppressToast(gate: ToastGate, category: string): boolean {
|
|
|
|
|
const now = Date.now();
|
|
|
|
|
if (now < gate.suppressUntil) return true;
|
|
|
|
|
|
|
|
|
|
const hits = gate.cooldownHits.get(category);
|
|
|
|
|
if (!hits) return false;
|
|
|
|
|
|
|
|
|
|
const recent = hits.filter((t) => now - t < TOAST_COOLDOWN_WINDOW_MS);
|
|
|
|
|
gate.cooldownHits.set(category, recent);
|
|
|
|
|
return recent.length >= TOAST_COOLDOWN_MAX;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function recordToastHit(gate: ToastGate, category: string) {
|
|
|
|
|
const now = Date.now();
|
|
|
|
|
const hits = gate.cooldownHits.get(category) ?? [];
|
|
|
|
|
hits.push(now);
|
|
|
|
|
gate.cooldownHits.set(category, hits);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function gatedPushToast(
|
|
|
|
|
gate: ToastGate,
|
|
|
|
|
pushToast: (toast: ToastInput) => string | null,
|
|
|
|
|
category: string,
|
|
|
|
|
toast: ToastInput,
|
|
|
|
|
) {
|
|
|
|
|
if (shouldSuppressToast(gate, category)) return;
|
|
|
|
|
const id = pushToast(toast);
|
|
|
|
|
if (id !== null) recordToastHit(gate, category);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-17 12:24:48 -06:00
|
|
|
function handleLiveEvent(
|
|
|
|
|
queryClient: ReturnType<typeof useQueryClient>,
|
|
|
|
|
expectedCompanyId: string,
|
|
|
|
|
event: LiveEvent,
|
2026-02-20 13:47:13 -06:00
|
|
|
pushToast: (toast: ToastInput) => string | null,
|
2026-02-20 13:56:34 -06:00
|
|
|
gate: ToastGate,
|
2026-02-17 12:24:48 -06:00
|
|
|
) {
|
|
|
|
|
if (event.companyId !== expectedCompanyId) return;
|
|
|
|
|
|
|
|
|
|
const payload = event.payload ?? {};
|
|
|
|
|
if (event.type === "heartbeat.run.log") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-20 12:50:34 -06:00
|
|
|
if (event.type === "heartbeat.run.queued" || event.type === "heartbeat.run.status") {
|
2026-02-17 12:24:48 -06:00
|
|
|
invalidateHeartbeatQueries(queryClient, expectedCompanyId, payload);
|
2026-02-20 13:47:13 -06:00
|
|
|
if (event.type === "heartbeat.run.status") {
|
|
|
|
|
const toast = buildRunStatusToast(payload);
|
2026-02-20 13:56:34 -06:00
|
|
|
if (toast) gatedPushToast(gate, pushToast, "run-status", toast);
|
2026-02-20 13:47:13 -06:00
|
|
|
}
|
2026-02-17 12:24:48 -06:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-20 12:50:34 -06:00
|
|
|
if (event.type === "heartbeat.run.event") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-17 12:24:48 -06:00
|
|
|
if (event.type === "agent.status") {
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.agents.list(expectedCompanyId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.dashboard(expectedCompanyId) });
|
|
|
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.org(expectedCompanyId) });
|
|
|
|
|
const agentId = readString(payload.agentId);
|
|
|
|
|
if (agentId) queryClient.invalidateQueries({ queryKey: queryKeys.agents.detail(agentId) });
|
2026-02-20 13:47:13 -06:00
|
|
|
const toast = buildAgentStatusToast(payload);
|
2026-02-20 13:56:34 -06:00
|
|
|
if (toast) gatedPushToast(gate, pushToast, "agent-status", toast);
|
2026-02-17 12:24:48 -06:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (event.type === "activity.logged") {
|
|
|
|
|
invalidateActivityQueries(queryClient, expectedCompanyId, payload);
|
2026-02-20 13:56:34 -06:00
|
|
|
const action = readString(payload.action);
|
2026-02-20 13:47:13 -06:00
|
|
|
const toast = buildActivityToast(payload);
|
2026-02-20 13:56:34 -06:00
|
|
|
if (toast) gatedPushToast(gate, pushToast, `activity:${action ?? "unknown"}`, toast);
|
2026-02-17 12:24:48 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function LiveUpdatesProvider({ children }: { children: ReactNode }) {
|
|
|
|
|
const { selectedCompanyId } = useCompany();
|
|
|
|
|
const queryClient = useQueryClient();
|
2026-02-20 13:47:13 -06:00
|
|
|
const { pushToast } = useToast();
|
2026-02-20 13:56:34 -06:00
|
|
|
const gateRef = useRef<ToastGate>({ cooldownHits: new Map(), suppressUntil: 0 });
|
2026-02-17 12:24:48 -06:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (!selectedCompanyId) return;
|
|
|
|
|
|
|
|
|
|
let closed = false;
|
|
|
|
|
let reconnectAttempt = 0;
|
|
|
|
|
let reconnectTimer: number | null = null;
|
|
|
|
|
let socket: WebSocket | null = null;
|
|
|
|
|
|
|
|
|
|
const clearReconnect = () => {
|
|
|
|
|
if (reconnectTimer !== null) {
|
|
|
|
|
window.clearTimeout(reconnectTimer);
|
|
|
|
|
reconnectTimer = null;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const scheduleReconnect = () => {
|
|
|
|
|
if (closed) return;
|
|
|
|
|
reconnectAttempt += 1;
|
|
|
|
|
const delayMs = Math.min(15000, 1000 * 2 ** Math.min(reconnectAttempt - 1, 4));
|
|
|
|
|
reconnectTimer = window.setTimeout(() => {
|
|
|
|
|
reconnectTimer = null;
|
|
|
|
|
connect();
|
|
|
|
|
}, delayMs);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const connect = () => {
|
|
|
|
|
if (closed) return;
|
|
|
|
|
const protocol = window.location.protocol === "https:" ? "wss" : "ws";
|
|
|
|
|
const url = `${protocol}://${window.location.host}/api/companies/${encodeURIComponent(selectedCompanyId)}/events/ws`;
|
|
|
|
|
socket = new WebSocket(url);
|
|
|
|
|
|
|
|
|
|
socket.onopen = () => {
|
2026-02-20 13:56:34 -06:00
|
|
|
if (reconnectAttempt > 0) {
|
|
|
|
|
gateRef.current.suppressUntil = Date.now() + RECONNECT_SUPPRESS_MS;
|
|
|
|
|
}
|
2026-02-17 12:24:48 -06:00
|
|
|
reconnectAttempt = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
socket.onmessage = (message) => {
|
|
|
|
|
const raw = typeof message.data === "string" ? message.data : "";
|
|
|
|
|
if (!raw) return;
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const parsed = JSON.parse(raw) as LiveEvent;
|
2026-02-20 13:56:34 -06:00
|
|
|
handleLiveEvent(queryClient, selectedCompanyId, parsed, pushToast, gateRef.current);
|
2026-02-17 12:24:48 -06:00
|
|
|
} catch {
|
|
|
|
|
// Ignore non-JSON payloads.
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
socket.onerror = () => {
|
|
|
|
|
socket?.close();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
socket.onclose = () => {
|
|
|
|
|
if (closed) return;
|
|
|
|
|
scheduleReconnect();
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
connect();
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
closed = true;
|
|
|
|
|
clearReconnect();
|
|
|
|
|
if (socket) {
|
|
|
|
|
socket.onopen = null;
|
|
|
|
|
socket.onmessage = null;
|
|
|
|
|
socket.onerror = null;
|
|
|
|
|
socket.onclose = null;
|
|
|
|
|
socket.close(1000, "provider_unmount");
|
|
|
|
|
}
|
|
|
|
|
};
|
2026-02-20 13:47:13 -06:00
|
|
|
}, [queryClient, selectedCompanyId, pushToast]);
|
2026-02-17 12:24:48 -06:00
|
|
|
|
|
|
|
|
return <>{children}</>;
|
|
|
|
|
}
|