feat: build local optimizer interface

This commit is contained in:
Codex
2026-06-21 23:42:37 +08:00
parent dd6480a8be
commit 67f19f8550
6 changed files with 745 additions and 22 deletions
+238 -2
View File
@@ -4,8 +4,8 @@
:root {
color-scheme: light;
background: #f8fafc;
color: #111827;
background: #f6f7f9;
color: #172033;
}
* {
@@ -20,3 +20,239 @@ body {
Helvetica,
sans-serif;
}
button,
input,
select,
textarea {
font: inherit;
}
button,
.download-link {
border: 1px solid #172033;
background: #172033;
color: #ffffff;
cursor: pointer;
border-radius: 6px;
min-height: 2.25rem;
padding: 0.45rem 0.8rem;
text-decoration: none;
text-align: center;
white-space: nowrap;
}
button:disabled {
cursor: not-allowed;
opacity: 0.45;
}
input,
select,
textarea {
width: 100%;
border: 1px solid #cbd3df;
border-radius: 6px;
background: #ffffff;
color: #172033;
padding: 0.65rem 0.7rem;
}
textarea {
min-height: 5rem;
resize: vertical;
}
label {
display: grid;
gap: 0.35rem;
}
label span,
h3 {
color: #586174;
font-size: 0.82rem;
font-weight: 700;
text-transform: uppercase;
}
.app-shell {
display: grid;
gap: 1rem;
min-height: 100vh;
padding: 1rem;
}
.topbar {
align-items: center;
display: flex;
gap: 1rem;
justify-content: space-between;
border-bottom: 1px solid #dce2eb;
padding-bottom: 1rem;
}
.topbar h1 {
margin: 0;
color: #172033;
font-size: clamp(1.45rem, 3vw, 2.1rem);
line-height: 1.1;
}
.topbar p {
margin: 0.3rem 0 0;
color: #586174;
}
.workflow-grid {
display: grid;
gap: 1rem;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.panel {
border: 1px solid #dce2eb;
border-radius: 8px;
background: #ffffff;
min-height: 18rem;
padding: 1rem;
}
.stack {
display: grid;
align-content: start;
gap: 0.9rem;
}
.empty-panel {
color: #8992a3;
}
.panel-heading,
.qa-title-row {
align-items: center;
display: flex;
gap: 0.75rem;
justify-content: space-between;
}
.panel-heading {
color: #172033;
font-size: 1rem;
font-weight: 800;
}
.body-input {
min-height: 14rem;
}
.two-col {
display: grid;
gap: 0.75rem;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.status-text {
margin: 0;
font-weight: 700;
}
.status-pill {
border-radius: 999px;
display: inline-flex;
font-size: 0.72rem;
font-weight: 800;
line-height: 1;
padding: 0.35rem 0.5rem;
text-transform: uppercase;
}
.pass {
background: #e6f6ec;
color: #116438;
}
.warn {
background: #fff5d6;
color: #805a00;
}
.fail {
background: #fde7e7;
color: #9f1d21;
}
.preview {
border-left: 3px solid #2f6fdd;
padding-left: 1rem;
}
.preview h2 {
margin: 0;
font-size: 1.25rem;
}
.preview p {
color: #586174;
}
.preview pre {
background: #f6f7f9;
border-radius: 6px;
overflow: auto;
padding: 0.8rem;
white-space: pre-wrap;
}
.tag-row,
.export-row {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.tag {
border: 1px solid #cbd3df;
border-radius: 999px;
color: #586174;
padding: 0.25rem 0.55rem;
}
.qa-list {
display: grid;
gap: 0.7rem;
}
.qa-item {
border: 1px solid #e5e9f0;
border-radius: 8px;
display: grid;
gap: 0.45rem;
padding: 0.75rem;
}
.qa-item p,
.qa-item em,
.qa-item small {
margin: 0;
}
.qa-item small {
color: #586174;
}
.qa-item code {
color: #2f6fdd;
}
@media (max-width: 900px) {
.workflow-grid,
.two-col {
grid-template-columns: 1fr;
}
.topbar {
align-items: stretch;
flex-direction: column;
}
}
+144 -20
View File
@@ -1,26 +1,150 @@
const sections = [
"Article Input",
"Fact Card",
"Optimized Result",
"Quality Report",
];
"use client";
import { useMemo, useState } from "react";
import {
ArticleInputForm,
type ArticleInputPayload,
} from "../components/article-input-form";
import {
FactCardEditor,
toConfirmedFactCard,
} from "../components/fact-card-editor";
import { OptimizedPreview } from "../components/optimized-preview";
import { QaReportPanel } from "../components/qa-report-panel";
import type {
CandidateFactCard,
OptimizedArticle,
QaReport,
} from "../lib/domain/types";
const initialInput: ArticleInputPayload = {
title: "",
body: "",
image_lines: "",
platform: "official_site",
user_instructions: "",
};
export default function Home() {
const [input, setInput] = useState(initialInput);
const [jobId, setJobId] = useState<string | null>(null);
const [factCard, setFactCard] = useState<CandidateFactCard | null>(null);
const [optimizedArticle, setOptimizedArticle] =
useState<OptimizedArticle | null>(null);
const [qaReport, setQaReport] = useState<QaReport | null>(null);
const [busyAction, setBusyAction] = useState<string | null>(null);
const [message, setMessage] = useState<string>("");
const exportBlocked = useMemo(
() => qaReport?.overall_status === "fail",
[qaReport],
);
const canOptimize =
Boolean(jobId) && Boolean(factCard) && factCard?.uncertain_items.length === 0;
async function analyze() {
setBusyAction("analyze");
setMessage("");
setOptimizedArticle(null);
setQaReport(null);
try {
const response = await fetch("/api/jobs", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify(input),
});
const body = await response.json();
if (!response.ok) throw new Error(body.error ?? "Analyze failed");
setJobId(body.job.id);
setFactCard(body.candidateFactCard);
setMessage("Candidate fact card created.");
} catch (error) {
setMessage(error instanceof Error ? error.message : "Analyze failed");
} finally {
setBusyAction(null);
}
}
async function confirmFactCard() {
if (!jobId || !factCard) return;
setBusyAction("confirm");
setMessage("");
try {
const response = await fetch(`/api/jobs/${jobId}/confirm-fact-card`, {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify(toConfirmedFactCard(factCard)),
});
const body = await response.json();
if (!response.ok) throw new Error(body.error ?? "Confirm failed");
setFactCard(body.factCard);
setMessage("Fact card confirmed.");
} catch (error) {
setMessage(error instanceof Error ? error.message : "Confirm failed");
} finally {
setBusyAction(null);
}
}
async function optimize() {
if (!jobId) return;
setBusyAction("optimize");
setMessage("");
try {
const response = await fetch(`/api/jobs/${jobId}/optimize`, {
method: "POST",
});
const body = await response.json();
if (!response.ok) throw new Error(body.error ?? "Optimize failed");
setOptimizedArticle(body.optimizedArticle);
setQaReport(body.qaReport);
setMessage(
body.qaReport.overall_status === "fail"
? "QA found hard failures; export is blocked."
: "Optimization complete.",
);
} catch (error) {
setMessage(error instanceof Error ? error.message : "Optimize failed");
} finally {
setBusyAction(null);
}
}
return (
<main className="mx-auto flex min-h-screen w-full max-w-6xl flex-col gap-8 px-6 py-10">
<h1 className="text-3xl font-semibold text-slate-950">
GEO Agent Article Optimizer
</h1>
<div className="grid gap-4 md:grid-cols-2">
{sections.map((section) => (
<section
key={section}
aria-label={section}
className="min-h-48 rounded-lg border border-slate-200 bg-white p-5 shadow-sm"
>
<h2 className="text-lg font-medium text-slate-900">{section}</h2>
</section>
))}
<main className="app-shell">
<header className="topbar">
<div>
<h1>GEO Agent Article Optimizer</h1>
{message && <p>{message}</p>}
</div>
<button
disabled={!canOptimize || busyAction === "optimize"}
onClick={optimize}
type="button"
>
{busyAction === "optimize" ? "Optimizing..." : "Optimize"}
</button>
</header>
<div className="workflow-grid">
<ArticleInputForm
isSubmitting={busyAction === "analyze"}
value={input}
onChange={setInput}
onSubmit={analyze}
/>
<FactCardEditor
factCard={factCard}
isSaving={busyAction === "confirm"}
onChange={setFactCard}
onConfirm={confirmFactCard}
/>
<OptimizedPreview
article={optimizedArticle}
exportBlocked={exportBlocked}
jobId={jobId}
/>
<QaReportPanel report={qaReport} />
</div>
</main>
);