Brings the bureau from 4 → 8 detectives. All eight run as Bun + claude-CLI
subprocesses against the same Supabase + investigation_jobs LISTEN/NOTIFY
queue, sharing search.ts hybridSearch and writer-side validators that
gate writes against schema + FK.
New detectives:
Poirot (witness_analysis)
- prompts/poirot.md — credibility / access / bias / corroboration /
verdict; uses entity_mentions JOIN chunks to pull 12 chunks per
person; resolves corroboration_refs chunk_ids defensively (accepts
bare cNNNN even when the model emits pNNN/cNNNN).
- INSERT into public.witnesses with W-NNNN naming.
- Tone: purple (#9b5de5).
Taleb (outlier_scan)
- prompts/taleb.md — "surprise is relative to a model"; at most 3
outliers; each requires explicit dominant_model + why_surprising +
what_it_implies; fan-out into public.gaps with scope.kind="outlier".
- Same unscoped-fallback as Dupin (Pass 1 with doc_id, Pass 2 widens
to corpus if hits < 3).
- Tone: yellow (#ffd23f).
Tetlock (calibrate_hypothesis)
- prompts/tetlock.md — honest Bayesian update; emits new_posterior +
Δ + recommended_action ∈ {keep, downgrade, upgrade, supersede}.
- write_calibration UPDATEs public.hypotheses + APPENDS a
"## Calibration history" section to the H-NNNN.md case file
(calibration is append-only — each datapoint matters). Posterior
band auto-corrected to match Tetlock thresholds.
- NO_NEW_EVIDENCE sentinel handled; pure 'keep' with |Δ|<0.005 only
touches updated_at + reviewed_by.
- Tone: teal (#26d4cc).
Case-Writer (case_report)
- prompts/case-writer.md — Dr. Watson assembles all artefacts
(E-NNNN, H-NNNN, R-NNNN, W-NNNN, G-NNNN) into a five-act narrative.
ILIKE filter on topic; doc_id optional scope.
- Larger budget cap (≥ $0.50) + longer timeout for prose generation.
- Writes case/reports/<slug>.md with frontmatter (topic + counts);
no DB table for v0.
- New page /c/[slug] renders the report via MarkdownBody + stat chips.
- Tone: gold (#e0c080).
Hardening across the bureau:
- Sentinel parsing now accepts backticked AND prose-trailing forms
(Holmes NO_HYPOTHESES, Dupin NO_CONTRADICTIONS, Schneier
INSUFFICIENT_HYPOTHESIS, Poirot INSUFFICIENT_TESTIMONY, Taleb
NO_OUTLIERS, Tetlock NO_NEW_EVIDENCE, Case-Writer
INSUFFICIENT_ARTEFACTS). Avoids the failure mode where the model
refuses honestly but the runtime treated it as a parse error
(observed live with Poirot+Hoover identifying the DIRECTOR
false-positive disambiguation issue in entity_mentions).
Chat tool extensions (web/lib/chat/tools.ts):
- request_investigation now accepts 7 kinds. Each routes to its
detective with appropriate validation (hypothesis_id regex,
person_id kebab-case, topic non-empty, doc_id for evidence_chain).
- ETA per kind: Holmes/Dupin 60s, Poirot 45s, Schneier/Tetlock 30s,
Taleb 50s, Case-Writer 180s (longer prose), Locard 30×n_chunks.
UI integration:
- chat-bubble inline card paints each detective in its tone color.
- /jobs/[id] page header swaps name/subtitle/tone per detective;
question label adapts ("Topic" / "Hypothesis under attack" /
"Witness under analysis" / "Topic to outlier-scan" / "Hypothesis
under recalibration" / "Case to assemble").
- job-status-poller renders: case-report link card (gold), outlier
cards (yellow), witness cards (purple) — alongside existing
hypothesis, evidence, contradiction cards.
- /api/jobs/[id] hydrates witnesses (JOIN entities for canonical_name)
+ gaps (with scope JSONB).
- /c/[slug] page reads /data/ufo/case/reports/<slug>.md and renders
with MarkdownBody, frontmatter parsed for stat chips.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
756 lines
27 KiB
TypeScript
756 lines
27 KiB
TypeScript
"use client";
|
|
|
|
/**
|
|
* JobStatusPoller — client island for /jobs/[id].
|
|
*
|
|
* Polls /api/jobs/[id] every 3s while job.status is non-terminal. Renders:
|
|
* - Phase tracker bar (queued → claimed → running → complete | failed)
|
|
* - Hypothesis cards (prior/posterior bars + Tetlock confidence_band)
|
|
* - Evidence cards (grade A/B/C + verbatim excerpt + bbox preview)
|
|
* - Error panel when status='failed'
|
|
*/
|
|
import { useEffect, useState } from "react";
|
|
import Link from "next/link";
|
|
|
|
interface JobPayloadOutput {
|
|
evidence_id?: string;
|
|
hypothesis_id?: string;
|
|
case_file?: string;
|
|
chunk_id?: string;
|
|
error?: string;
|
|
skipped?: boolean;
|
|
reason?: string;
|
|
kind?: string;
|
|
}
|
|
|
|
interface InitialJob {
|
|
job_id: string;
|
|
kind: string;
|
|
payload: Record<string, unknown> | null;
|
|
status: string;
|
|
worker_id: string | null;
|
|
started_at: string | null;
|
|
finished_at: string | null;
|
|
outputs: JobPayloadOutput[];
|
|
error: string | null;
|
|
created_at: string;
|
|
}
|
|
|
|
interface EvidenceItem {
|
|
evidence_id: string;
|
|
grade: string | null;
|
|
source_page_id: string;
|
|
doc_id: string | null;
|
|
page: number | null;
|
|
chunk_id: string | null;
|
|
verbatim_excerpt: string | null;
|
|
custody_steps: Array<Record<string, unknown>> | null;
|
|
bbox: { x: number; y: number; w: number; h: number } | null;
|
|
confidence_band: string | null;
|
|
}
|
|
|
|
interface HypothesisItem {
|
|
hypothesis_id: string;
|
|
question: string | null;
|
|
position: string | null;
|
|
argument_for: string | null;
|
|
argument_against: string | null;
|
|
prior: number | string | null;
|
|
posterior: number | string | null;
|
|
confidence_band: string | null;
|
|
status: string | null;
|
|
}
|
|
|
|
interface ContradictionPositionItem {
|
|
doc_id: string;
|
|
chunk_id: string;
|
|
page: number;
|
|
statement: string;
|
|
stance?: string | null;
|
|
}
|
|
|
|
interface ContradictionItem {
|
|
contradiction_id: string;
|
|
topic: string;
|
|
chunks: ContradictionPositionItem[];
|
|
resolution_status: string | null;
|
|
notes: string | null;
|
|
detected_by: string | null;
|
|
}
|
|
|
|
interface WitnessCorrItem {
|
|
chunk_pk?: number;
|
|
doc_id: string;
|
|
chunk_id: string;
|
|
page: number;
|
|
supports: boolean;
|
|
}
|
|
|
|
interface WitnessItem {
|
|
witness_id: string;
|
|
canonical_name: string | null;
|
|
entity_id: string | null;
|
|
credibility: string | null;
|
|
access_to_event: string | null;
|
|
bias_notes: string | null;
|
|
corroboration_refs: WitnessCorrItem[];
|
|
verdict: string | null;
|
|
}
|
|
|
|
interface CaseReportOutput {
|
|
kind: "case_report";
|
|
case_file?: string;
|
|
slug?: string;
|
|
skipped?: boolean;
|
|
reason?: string;
|
|
}
|
|
|
|
interface GapItem {
|
|
gap_id: string;
|
|
description: string;
|
|
scope: {
|
|
kind?: string;
|
|
title?: string;
|
|
doc_id?: string;
|
|
chunk_id?: string;
|
|
page?: number;
|
|
dominant_model?: string;
|
|
why_surprising?: string;
|
|
what_it_implies?: string;
|
|
} | null;
|
|
suggested_next_move: string | null;
|
|
status: string;
|
|
created_by: string;
|
|
}
|
|
|
|
interface FetchedJob extends InitialJob {
|
|
evidence: EvidenceItem[];
|
|
hypotheses: HypothesisItem[];
|
|
contradictions: ContradictionItem[];
|
|
witnesses: WitnessItem[];
|
|
gaps: GapItem[];
|
|
duration_ms: number | null;
|
|
}
|
|
|
|
const BAND_COLOR: Record<string, string> = {
|
|
high: "text-[#06d6a0] border-[#06d6a0]",
|
|
medium: "text-[#3fde6a] border-[#3fde6a]",
|
|
low: "text-[#ffa500] border-[#ffa500]",
|
|
speculation: "text-[#ff6ec7] border-[#ff6ec7]",
|
|
};
|
|
|
|
const GRADE_COLOR: Record<string, string> = {
|
|
A: "text-[#06d6a0] border-[#06d6a0]",
|
|
B: "text-[#3fde6a] border-[#3fde6a]",
|
|
C: "text-[#ffa500] border-[#ffa500]",
|
|
};
|
|
|
|
const STATUS_LABEL: Record<string, string> = {
|
|
queued: "Aguardando worker",
|
|
running: "Investigação em curso",
|
|
complete: "Concluído",
|
|
failed: "Falhou",
|
|
};
|
|
|
|
const PHASES = ["queued", "running", "complete"] as const;
|
|
|
|
function isTerminal(status: string): boolean {
|
|
return status === "complete" || status === "failed";
|
|
}
|
|
|
|
function asNumber(n: number | string | null): number | null {
|
|
if (n === null || n === undefined) return null;
|
|
const v = typeof n === "string" ? parseFloat(n) : n;
|
|
return Number.isFinite(v) ? v : null;
|
|
}
|
|
|
|
function formatDuration(ms: number | null): string {
|
|
if (!ms || ms < 0) return "—";
|
|
if (ms < 1000) return `${ms} ms`;
|
|
if (ms < 60_000) return `${(ms / 1000).toFixed(1)} s`;
|
|
return `${Math.floor(ms / 60_000)} min ${Math.floor((ms % 60_000) / 1000)} s`;
|
|
}
|
|
|
|
export function JobStatusPoller(props: { jobId: string; initialJob: InitialJob }) {
|
|
const [job, setJob] = useState<FetchedJob>({
|
|
...props.initialJob,
|
|
evidence: [],
|
|
hypotheses: [],
|
|
contradictions: [],
|
|
witnesses: [],
|
|
gaps: [],
|
|
duration_ms: null,
|
|
});
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
let cancelled = false;
|
|
let timer: ReturnType<typeof setTimeout> | null = null;
|
|
|
|
async function tick() {
|
|
try {
|
|
const r = await fetch(`/api/jobs/${props.jobId}`, { cache: "no-store" });
|
|
if (!r.ok) {
|
|
if (!cancelled) setError(`HTTP ${r.status}`);
|
|
} else {
|
|
const data = (await r.json()) as FetchedJob;
|
|
if (!cancelled) {
|
|
setJob(data);
|
|
setError(null);
|
|
}
|
|
}
|
|
} catch (e) {
|
|
if (!cancelled) setError((e as Error).message);
|
|
}
|
|
if (!cancelled) {
|
|
const next = isTerminal(job.status) ? null : setTimeout(tick, 3000);
|
|
timer = next;
|
|
}
|
|
}
|
|
if (!isTerminal(job.status)) {
|
|
timer = setTimeout(tick, 1500);
|
|
} else {
|
|
// Even when terminal, do a single hydrate to fetch evidence/hypotheses
|
|
tick();
|
|
}
|
|
return () => {
|
|
cancelled = true;
|
|
if (timer) clearTimeout(timer);
|
|
};
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [props.jobId, job.status]);
|
|
|
|
const currentPhaseIdx = (() => {
|
|
if (job.status === "complete") return 2;
|
|
if (job.status === "failed") return -1;
|
|
if (job.status === "running") return 1;
|
|
return 0;
|
|
})();
|
|
|
|
return (
|
|
<div className="mt-6 space-y-4">
|
|
{/* Phase tracker */}
|
|
<div className="rounded-lg border border-[rgba(127,219,255,0.18)] bg-[#0d1220] p-4">
|
|
<div className="flex items-center justify-between mb-3">
|
|
<div className="text-[11px] font-mono text-[#5a6678] uppercase">Status</div>
|
|
<div className="text-[11px] font-mono text-[#9aa6b8]">
|
|
{STATUS_LABEL[job.status] ?? job.status}
|
|
{job.duration_ms !== null && (
|
|
<span className="ml-2 text-[#5a6678]">· {formatDuration(job.duration_ms)}</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2">
|
|
{PHASES.map((phase, i) => {
|
|
const done = i <= currentPhaseIdx && job.status !== "failed";
|
|
const active = i === currentPhaseIdx && !isTerminal(job.status);
|
|
return (
|
|
<div key={phase} className="flex-1 flex items-center gap-2">
|
|
<div
|
|
className={`flex-1 h-1.5 rounded-full ${
|
|
job.status === "failed" ? "bg-[#ff3344]/40" :
|
|
done ? "bg-[#06d6a0]" :
|
|
active ? "bg-gradient-to-r from-[#06d6a0] to-[#0d1220] animate-pulse" :
|
|
"bg-[rgba(127,219,255,0.15)]"
|
|
}`}
|
|
/>
|
|
{i < PHASES.length - 1 && <span className="text-[#5a6678]">→</span>}
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
<div className="flex justify-between mt-2 text-[10px] font-mono text-[#5a6678]">
|
|
{PHASES.map((p) => <span key={p}>{p}</span>)}
|
|
</div>
|
|
|
|
{job.worker_id && (
|
|
<div className="mt-3 text-[10px] font-mono text-[#5a6678]">
|
|
worker: <span className="text-[#9aa6b8]">{job.worker_id}</span>
|
|
</div>
|
|
)}
|
|
|
|
{error && (
|
|
<div className="mt-3 text-[10px] font-mono text-[#ff6ec7]">
|
|
polling error: {error}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{/* Failure panel */}
|
|
{job.status === "failed" && (
|
|
<div className="rounded-lg border border-[#ff3344]/40 bg-[rgba(255,51,68,0.06)] p-4">
|
|
<div className="text-[11px] font-mono uppercase text-[#ff3344] mb-2">Job failed</div>
|
|
<pre className="text-[12px] text-[#e7ecf3] whitespace-pre-wrap font-mono leading-snug">
|
|
{job.error || "(no error message)"}
|
|
</pre>
|
|
{job.outputs.length > 0 && (
|
|
<details className="mt-3">
|
|
<summary className="text-[10px] font-mono text-[#5a6678] cursor-pointer hover:text-[#9aa6b8]">
|
|
{job.outputs.length} partial output(s)
|
|
</summary>
|
|
<pre className="mt-2 text-[10px] text-[#8896aa] overflow-x-auto max-h-48 font-mono">
|
|
{JSON.stringify(job.outputs, null, 2)}
|
|
</pre>
|
|
</details>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Hypothesis cards */}
|
|
{job.hypotheses.length > 0 && (
|
|
<div className="space-y-3">
|
|
<div className="text-[12px] font-mono text-[#7fdbff] uppercase tracking-wider">
|
|
Hipóteses rivais ({job.hypotheses.length})
|
|
</div>
|
|
{job.hypotheses.map((h) => <HypothesisCard key={h.hypothesis_id} h={h} />)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Case-report link card */}
|
|
{job.outputs.filter((o): o is CaseReportOutput =>
|
|
(o as JobPayloadOutput).kind === "case_report" && typeof (o as CaseReportOutput).slug === "string"
|
|
).map((o) => (
|
|
<Link
|
|
key={o.slug}
|
|
href={`/c/${o.slug}`}
|
|
className="block rounded-lg border border-[rgba(224,192,128,0.3)] bg-gradient-to-br from-[rgba(224,192,128,0.08)] to-transparent p-4 hover:border-[#e0c080] transition-colors"
|
|
>
|
|
<div className="text-[10px] font-mono text-[#e0c080] uppercase tracking-wider mb-1">
|
|
Case report ready
|
|
</div>
|
|
<div className="text-[14px] font-medium text-[#e7ecf3]">
|
|
/c/{o.slug}
|
|
</div>
|
|
<div className="text-[10px] font-mono text-[#5a6678] mt-1">
|
|
Open the Watson narrative →
|
|
</div>
|
|
</Link>
|
|
))}
|
|
|
|
{/* Outlier / gap cards */}
|
|
{job.gaps.length > 0 && (
|
|
<div className="space-y-3">
|
|
<div className="text-[12px] font-mono text-[#ffd23f] uppercase tracking-wider">
|
|
Outliers ({job.gaps.length})
|
|
</div>
|
|
{job.gaps.map((g) => <GapCard key={g.gap_id} g={g} />)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Witness cards */}
|
|
{job.witnesses.length > 0 && (
|
|
<div className="space-y-3">
|
|
<div className="text-[12px] font-mono text-[#9b5de5] uppercase tracking-wider">
|
|
Análise de testemunha ({job.witnesses.length})
|
|
</div>
|
|
{job.witnesses.map((w) => <WitnessCard key={w.witness_id} w={w} />)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Contradiction cards */}
|
|
{job.contradictions.length > 0 && (
|
|
<div className="space-y-3">
|
|
<div className="text-[12px] font-mono text-[#ff8a4d] uppercase tracking-wider">
|
|
Contradições detectadas ({job.contradictions.length})
|
|
</div>
|
|
{job.contradictions.map((c) => <ContradictionCard key={c.contradiction_id} c={c} />)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Evidence cards */}
|
|
{job.evidence.length > 0 && (
|
|
<div className="space-y-3">
|
|
<div className="text-[12px] font-mono text-[#06d6a0] uppercase tracking-wider">
|
|
Cadeia de evidência ({job.evidence.length})
|
|
</div>
|
|
{job.evidence.map((e) => <EvidenceCard key={e.evidence_id} e={e} />)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Empty / in-flight state */}
|
|
{!isTerminal(job.status) && job.hypotheses.length === 0 && job.evidence.length === 0 && job.contradictions.length === 0 && job.witnesses.length === 0 && job.gaps.length === 0 && (
|
|
<div className="rounded-lg border border-dashed border-[rgba(127,219,255,0.15)] bg-[#0d1220] p-6 text-center">
|
|
<div className="text-[12px] font-mono text-[#9aa6b8] animate-pulse">
|
|
🔎 Os detetives estão lendo o corpus…
|
|
</div>
|
|
<div className="text-[10px] font-mono text-[#5a6678] mt-2">
|
|
Holmes constrói hipóteses rivais com priors + posteriors em ~60 s.<br />
|
|
Dupin localiza pares de chunks em tensão irreconciliável em ~60 s.<br />
|
|
Locard documenta evidências verbatim com cadeia de custódia em ~30 s por chunk.
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Outputs raw */}
|
|
{job.outputs.length > 0 && job.status === "complete" && (
|
|
<details className="mt-2">
|
|
<summary className="text-[10px] font-mono text-[#5a6678] cursor-pointer hover:text-[#9aa6b8]">
|
|
Raw audit outputs ({job.outputs.length})
|
|
</summary>
|
|
<pre className="mt-2 p-3 bg-[#060a13] border border-[rgba(127,219,255,0.1)] rounded text-[10px] text-[#8896aa] overflow-x-auto max-h-64 font-mono">
|
|
{JSON.stringify(job.outputs, null, 2)}
|
|
</pre>
|
|
</details>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function HypothesisCard({ h }: { h: HypothesisItem }) {
|
|
const prior = asNumber(h.prior);
|
|
const posterior = asNumber(h.posterior);
|
|
const delta = prior !== null && posterior !== null ? posterior - prior : null;
|
|
const bandTone = (h.confidence_band && BAND_COLOR[h.confidence_band]) || "text-[#9aa6b8] border-[#9aa6b8]";
|
|
|
|
return (
|
|
<div className="rounded-lg border border-[rgba(127,219,255,0.18)] bg-[#0d1220] p-4">
|
|
<div className="flex items-baseline justify-between gap-3 mb-2">
|
|
<div className="text-[10px] font-mono text-[#5a6678] uppercase">
|
|
{h.hypothesis_id}
|
|
</div>
|
|
{h.confidence_band && (
|
|
<span className={`px-2 py-0.5 rounded text-[10px] font-mono uppercase border ${bandTone}`}>
|
|
{h.confidence_band}
|
|
</span>
|
|
)}
|
|
</div>
|
|
|
|
<div className="text-[14px] text-[#e7ecf3] leading-snug font-medium mb-3">
|
|
{h.position}
|
|
</div>
|
|
|
|
{(prior !== null || posterior !== null) && (
|
|
<div className="grid grid-cols-2 gap-3 mb-3 text-[11px] font-mono">
|
|
<ProbabilityBar label="prior" value={prior} color="#5a6678" />
|
|
<ProbabilityBar label="posterior" value={posterior} color="#7fdbff" />
|
|
</div>
|
|
)}
|
|
{delta !== null && (
|
|
<div className="text-[10px] font-mono text-[#5a6678] mb-2">
|
|
Δ {delta >= 0 ? "+" : ""}{delta.toFixed(3)} ·{" "}
|
|
{delta > 0.05 ? <span className="text-[#06d6a0]">evidência reforçou</span> :
|
|
delta < -0.05 ? <span className="text-[#ff6ec7]">evidência reduziu</span> :
|
|
<span className="text-[#9aa6b8]">evidência ambígua</span>}
|
|
</div>
|
|
)}
|
|
|
|
{h.argument_for && (
|
|
<div className="mt-3">
|
|
<div className="text-[10px] font-mono text-[#06d6a0] uppercase mb-1">Argumento a favor</div>
|
|
<ArgumentBody text={h.argument_for} />
|
|
</div>
|
|
)}
|
|
{h.argument_against && (
|
|
<div className="mt-3">
|
|
<div className="text-[10px] font-mono text-[#ff6ec7] uppercase mb-1">Argumento contra</div>
|
|
<ArgumentBody text={h.argument_against} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function EvidenceCard({ e }: { e: EvidenceItem }) {
|
|
const gradeTone = (e.grade && GRADE_COLOR[e.grade]) || "text-[#9aa6b8] border-[#9aa6b8]";
|
|
const bandTone = (e.confidence_band && BAND_COLOR[e.confidence_band]) || "text-[#9aa6b8] border-[#9aa6b8]";
|
|
const stepsCount = Array.isArray(e.custody_steps) ? e.custody_steps.length : 0;
|
|
const cropUrl = e.doc_id && e.page && e.bbox && e.bbox.w > 0 && e.bbox.h > 0
|
|
? `/api/crop?doc=${encodeURIComponent(e.doc_id)}&page=${e.page}&x=${e.bbox.x}&y=${e.bbox.y}&w=${e.bbox.w}&h=${e.bbox.h}&w_px=480`
|
|
: null;
|
|
|
|
return (
|
|
<div className="rounded-lg border border-[rgba(6,214,160,0.18)] bg-[#0d1220] p-4">
|
|
<div className="flex items-baseline justify-between gap-3 mb-2">
|
|
<div className="text-[10px] font-mono text-[#5a6678] uppercase">{e.evidence_id}</div>
|
|
<div className="flex items-center gap-2">
|
|
{e.grade && (
|
|
<span className={`px-2 py-0.5 rounded text-[10px] font-mono uppercase border ${gradeTone}`}>
|
|
Grade {e.grade}
|
|
</span>
|
|
)}
|
|
{e.confidence_band && (
|
|
<span className={`px-2 py-0.5 rounded text-[10px] font-mono uppercase border ${bandTone}`}>
|
|
{e.confidence_band}
|
|
</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{e.verbatim_excerpt && (
|
|
<blockquote className="text-[13px] text-[#e7ecf3] leading-snug italic border-l-2 border-[#06d6a0] pl-3 my-2">
|
|
“{e.verbatim_excerpt}”
|
|
</blockquote>
|
|
)}
|
|
|
|
{cropUrl && (
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
<img
|
|
src={cropUrl}
|
|
alt={`${e.doc_id} p${e.page}`}
|
|
className="mt-2 rounded border border-[rgba(127,219,255,0.1)] max-h-48 w-auto"
|
|
/>
|
|
)}
|
|
|
|
<div className="mt-3 flex flex-wrap items-center gap-2 text-[10px] font-mono text-[#5a6678]">
|
|
{e.doc_id && e.page && (
|
|
<Link
|
|
href={`/d/${e.doc_id}/p${String(e.page).padStart(3, "0")}${e.chunk_id ? `#${e.chunk_id}` : ""}`}
|
|
className="text-[#7fdbff] hover:underline"
|
|
>
|
|
{e.doc_id}/p{String(e.page).padStart(3, "0")}{e.chunk_id ? `#${e.chunk_id}` : ""}
|
|
</Link>
|
|
)}
|
|
<span>·</span>
|
|
<span>{stepsCount} custody step{stepsCount === 1 ? "" : "s"}</span>
|
|
</div>
|
|
|
|
{stepsCount > 0 && (
|
|
<details className="mt-2">
|
|
<summary className="text-[10px] font-mono text-[#5a6678] cursor-pointer hover:text-[#9aa6b8]">
|
|
Cadeia de custódia
|
|
</summary>
|
|
<ol className="mt-2 ml-4 list-decimal text-[11px] text-[#9aa6b8] space-y-1">
|
|
{(e.custody_steps as Array<Record<string, unknown>>).map((s, i) => (
|
|
<li key={i}>
|
|
<span className="text-[#7fdbff]">{String(s.actor ?? "?")}</span>
|
|
{s.action ? ` — ${String(s.action)}` : ""}
|
|
{s.timestamp ? ` (${String(s.timestamp)})` : ""}
|
|
</li>
|
|
))}
|
|
</ol>
|
|
</details>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function GapCard({ g }: { g: GapItem }) {
|
|
const s = g.scope ?? {};
|
|
const isOutlier = s.kind === "outlier";
|
|
const pageStr = s.page ? String(s.page).padStart(3, "0") : null;
|
|
return (
|
|
<div className="rounded-lg border border-[rgba(255,210,63,0.25)] bg-[#0d1220] p-4">
|
|
<div className="flex items-baseline justify-between gap-3 mb-2 flex-wrap">
|
|
<div className="text-[10px] font-mono text-[#5a6678] uppercase">
|
|
{g.gap_id}{isOutlier && " · outlier"}
|
|
</div>
|
|
<span className="px-2 py-0.5 rounded text-[10px] font-mono uppercase border border-[#ffd23f] text-[#ffd23f]">
|
|
{g.status}
|
|
</span>
|
|
</div>
|
|
<div className="text-[14px] text-[#e7ecf3] font-medium mb-2">
|
|
{s.title || g.description}
|
|
</div>
|
|
{s.doc_id && s.chunk_id && pageStr && (
|
|
<div className="text-[10px] font-mono mb-2">
|
|
Source:{" "}
|
|
<Link
|
|
href={`/d/${s.doc_id}/p${pageStr}#${s.chunk_id}`}
|
|
className="text-[#7fdbff] hover:underline"
|
|
>
|
|
{s.doc_id}/p{pageStr}#{s.chunk_id}
|
|
</Link>
|
|
</div>
|
|
)}
|
|
{s.dominant_model && (
|
|
<div className="mt-2 p-2 bg-[#060a13] rounded border border-[rgba(255,210,63,0.08)]">
|
|
<div className="text-[10px] font-mono text-[#9aa6b8] uppercase mb-1">Dominant model</div>
|
|
<div className="text-[12px] text-[#cbd2dd] leading-relaxed">{s.dominant_model}</div>
|
|
</div>
|
|
)}
|
|
{s.why_surprising && (
|
|
<div className="mt-2 p-2 bg-[#060a13] rounded border border-[rgba(255,210,63,0.08)]">
|
|
<div className="text-[10px] font-mono text-[#ffd23f] uppercase mb-1">Why surprising</div>
|
|
<div className="text-[12px] text-[#e7ecf3] leading-relaxed">{s.why_surprising}</div>
|
|
</div>
|
|
)}
|
|
{s.what_it_implies && (
|
|
<div className="mt-2 p-2 bg-[#060a13] rounded border border-[rgba(255,210,63,0.08)]">
|
|
<div className="text-[10px] font-mono text-[#ff8a4d] uppercase mb-1">What it implies</div>
|
|
<div className="text-[12px] text-[#cbd2dd] leading-relaxed">{s.what_it_implies}</div>
|
|
</div>
|
|
)}
|
|
{g.suggested_next_move && (
|
|
<div className="mt-2 text-[11px] font-mono text-[#06d6a0]">
|
|
→ {g.suggested_next_move}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function WitnessCard({ w }: { w: WitnessItem }) {
|
|
const credTone =
|
|
w.credibility === "high" ? "text-[#06d6a0] border-[#06d6a0]" :
|
|
w.credibility === "medium" ? "text-[#3fde6a] border-[#3fde6a]" :
|
|
w.credibility === "low" ? "text-[#ffa500] border-[#ffa500]" :
|
|
w.credibility === "speculation" ? "text-[#ff6ec7] border-[#ff6ec7]" :
|
|
"text-[#9aa6b8] border-[#9aa6b8]";
|
|
return (
|
|
<div className="rounded-lg border border-[rgba(155,93,229,0.18)] bg-[#0d1220] p-4">
|
|
<div className="flex items-baseline justify-between gap-3 mb-2 flex-wrap">
|
|
<div>
|
|
<div className="text-[10px] font-mono text-[#5a6678] uppercase">{w.witness_id}</div>
|
|
<div className="text-[14px] text-[#e7ecf3] leading-snug font-medium mt-1">
|
|
{w.entity_id ? (
|
|
<Link href={`/e/people/${w.entity_id}`} className="hover:underline">
|
|
{w.canonical_name ?? w.entity_id}
|
|
</Link>
|
|
) : (w.canonical_name ?? "—")}
|
|
</div>
|
|
</div>
|
|
{w.credibility && (
|
|
<span className={`px-2 py-0.5 rounded text-[10px] font-mono uppercase border ${credTone}`}>
|
|
{w.credibility}
|
|
</span>
|
|
)}
|
|
</div>
|
|
|
|
{w.verdict && (
|
|
<blockquote className="text-[13px] text-[#e7ecf3] italic border-l-2 border-[#9b5de5] pl-3 my-2">
|
|
{w.verdict}
|
|
</blockquote>
|
|
)}
|
|
|
|
<div className="grid md:grid-cols-2 gap-3 mt-3">
|
|
{w.access_to_event && (
|
|
<div className="p-2 rounded bg-[#060a13] border border-[rgba(155,93,229,0.08)]">
|
|
<div className="text-[10px] font-mono text-[#9b5de5] uppercase mb-1">Access to event</div>
|
|
<div className="text-[11px] text-[#cbd2dd] leading-relaxed">{w.access_to_event}</div>
|
|
</div>
|
|
)}
|
|
{w.bias_notes && (
|
|
<div className="p-2 rounded bg-[#060a13] border border-[rgba(155,93,229,0.08)]">
|
|
<div className="text-[10px] font-mono text-[#ff8a4d] uppercase mb-1">Bias notes</div>
|
|
<div className="text-[11px] text-[#cbd2dd] leading-relaxed">{w.bias_notes}</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{w.corroboration_refs && w.corroboration_refs.length > 0 && (
|
|
<details className="mt-3">
|
|
<summary className="text-[10px] font-mono text-[#5a6678] uppercase cursor-pointer hover:text-[#9aa6b8]">
|
|
Corroboration chain ({w.corroboration_refs.length})
|
|
</summary>
|
|
<ul className="mt-2 ml-3 text-[11px] font-mono space-y-1">
|
|
{w.corroboration_refs.map((r, i) => {
|
|
const pageStr = String(r.page).padStart(3, "0");
|
|
return (
|
|
<li key={i}>
|
|
<Link
|
|
href={`/d/${r.doc_id}/p${pageStr}#${r.chunk_id}`}
|
|
className="text-[#7fdbff] hover:underline"
|
|
>
|
|
{r.doc_id}/p{pageStr}#{r.chunk_id}
|
|
</Link>{" "}
|
|
<span className={r.supports ? "text-[#06d6a0]" : "text-[#ff6ec7]"}>
|
|
({r.supports ? "supports" : "refutes"})
|
|
</span>
|
|
</li>
|
|
);
|
|
})}
|
|
</ul>
|
|
</details>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ContradictionCard({ c }: { c: ContradictionItem }) {
|
|
const statusTone =
|
|
c.resolution_status === "resolved" ? "text-[#06d6a0] border-[#06d6a0]" :
|
|
c.resolution_status === "irreconcilable" ? "text-[#ff3344] border-[#ff3344]" :
|
|
"text-[#ff8a4d] border-[#ff8a4d]";
|
|
return (
|
|
<div className="rounded-lg border border-[rgba(255,138,77,0.18)] bg-[#0d1220] p-4">
|
|
<div className="flex items-baseline justify-between gap-3 mb-2">
|
|
<div className="text-[10px] font-mono text-[#5a6678] uppercase">{c.contradiction_id}</div>
|
|
{c.resolution_status && (
|
|
<span className={`px-2 py-0.5 rounded text-[10px] font-mono uppercase border ${statusTone}`}>
|
|
{c.resolution_status}
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div className="text-[14px] text-[#e7ecf3] leading-snug font-medium mb-3">
|
|
{c.topic}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
{c.chunks.map((p, i) => {
|
|
const pageStr = String(p.page).padStart(3, "0");
|
|
return (
|
|
<div key={i} className="p-2 bg-[#060a13] rounded border border-[rgba(255,138,77,0.1)]">
|
|
<div className="text-[10px] font-mono text-[#5a6678] uppercase mb-1">
|
|
Position {i + 1}{p.stance ? ` — ${p.stance}` : ""}
|
|
</div>
|
|
<blockquote className="text-[12px] text-[#e7ecf3] italic border-l-2 border-[#ff8a4d] pl-2 mb-2">
|
|
“{p.statement}”
|
|
</blockquote>
|
|
<Link
|
|
href={`/d/${p.doc_id}/p${pageStr}#${p.chunk_id}`}
|
|
className="text-[10px] font-mono text-[#7fdbff] hover:underline"
|
|
>
|
|
{p.doc_id}/p{pageStr}#{p.chunk_id}
|
|
</Link>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
|
|
{c.notes && (
|
|
<div className="mt-3 p-2 bg-[#060a13] rounded border border-[rgba(255,138,77,0.08)]">
|
|
<div className="text-[10px] font-mono text-[#5a6678] uppercase mb-1">Notes</div>
|
|
<div className="text-[12px] text-[#cbd2dd] leading-relaxed">{c.notes}</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ProbabilityBar({ label, value, color }: { label: string; value: number | null; color: string }) {
|
|
const pct = value !== null ? Math.round(value * 100) : 0;
|
|
return (
|
|
<div>
|
|
<div className="flex items-center justify-between mb-1">
|
|
<span className="text-[#5a6678]">{label}</span>
|
|
<span className="text-[#e7ecf3]">{value !== null ? value.toFixed(3) : "—"}</span>
|
|
</div>
|
|
<div className="h-1.5 bg-[rgba(127,219,255,0.08)] rounded-full overflow-hidden">
|
|
<div className="h-full rounded-full" style={{ width: `${pct}%`, background: color }} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Linkify [[doc-id/pNNN#cNNNN]] wiki-links in argument prose into <a> tags.
|
|
function ArgumentBody({ text }: { text: string }) {
|
|
const parts: Array<{ kind: "text" | "link"; raw: string; href?: string; label?: string }> = [];
|
|
const re = /\[\[([^\]|]+?)(?:\|([^\]]+))?\]\]/g;
|
|
let lastIdx = 0;
|
|
let m: RegExpExecArray | null;
|
|
while ((m = re.exec(text)) !== null) {
|
|
if (m.index > lastIdx) parts.push({ kind: "text", raw: text.slice(lastIdx, m.index) });
|
|
const target = m[1];
|
|
const label = m[2] ?? m[1];
|
|
let href: string | undefined;
|
|
// doc-id/pNNN#cNNNN
|
|
const chunkMatch = target.match(/^([a-z0-9][a-z0-9-]*)\/p(\d{3})#(c\d{4})$/);
|
|
const pageMatch = target.match(/^([a-z0-9][a-z0-9-]*)\/p(\d{3})$/);
|
|
if (chunkMatch) href = `/d/${chunkMatch[1]}/p${chunkMatch[2]}#${chunkMatch[3]}`;
|
|
else if (pageMatch) href = `/d/${pageMatch[1]}/p${pageMatch[2]}`;
|
|
parts.push({ kind: "link", raw: m[0], href, label });
|
|
lastIdx = m.index + m[0].length;
|
|
}
|
|
if (lastIdx < text.length) parts.push({ kind: "text", raw: text.slice(lastIdx) });
|
|
|
|
return (
|
|
<div className="text-[12px] text-[#cbd2dd] leading-relaxed">
|
|
{parts.map((p, i) =>
|
|
p.kind === "text" ? <span key={i}>{p.raw}</span> :
|
|
p.href ? <Link key={i} href={p.href} className="text-[#7fdbff] hover:underline">{p.label}</Link> :
|
|
<span key={i} className="text-[#5a6678]">{p.label}</span>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|