把创作产物收敛为可挂载片段与 play_slots/context_order,同步修订世界模拟器模块与运行时拼装。 Co-authored-by: Cursor <cursoragent@cursor.com>
2441 lines
90 KiB
JavaScript
2441 lines
90 KiB
JavaScript
import { renderIntakePanel } from "./intake-ui.js";
|
||
import { getActiveQuestions, renderQuestionsCard } from "./questions-ui.js";
|
||
import { displayWorkerLabel, formatWorkerDisplayTitle } from "./display-labels.js";
|
||
|
||
const HIDE_KINDS = new Set(["worker_stub"]);
|
||
|
||
/** 中间对话区不展示的内部调度消息(仅出现在左侧「调度」) */
|
||
const FEED_HIDDEN_KINDS = new Set([
|
||
"agent_tool",
|
||
"orchestrator_decision",
|
||
"worker_running",
|
||
]);
|
||
|
||
const MSG_CLASS = {
|
||
user_input: "user",
|
||
agent_tool: "agent",
|
||
orchestrator_decision: "agent",
|
||
orchestrator_thinking: "agent",
|
||
orchestrator_prompt: "agent",
|
||
orchestrator_assessment: "agent",
|
||
worker_running: "skill",
|
||
worker_output: "skill",
|
||
worker_questions: "questions",
|
||
error: "error",
|
||
};
|
||
|
||
const MSG_LABEL = {
|
||
user_input: "你",
|
||
agent_tool: "工具",
|
||
orchestrator_decision: "编排器",
|
||
orchestrator_thinking: "编排器 · 思考",
|
||
orchestrator_prompt: "编排器",
|
||
orchestrator_assessment: "编排器 · 内容评价",
|
||
worker_running: "执行单元",
|
||
worker_output: "执行单元",
|
||
worker_questions: "提问",
|
||
error: "错误",
|
||
system_info: "系统",
|
||
};
|
||
|
||
function esc(s) {
|
||
return String(s)
|
||
.replace(/&/g, "&")
|
||
.replace(/</g, "<")
|
||
.replace(/>/g, ">");
|
||
}
|
||
|
||
function renderThinkingBlock(thinking, { open = false } = {}) {
|
||
const text = (thinking ?? "").trim();
|
||
if (!text) return "";
|
||
return `<details class="msg-thinking"${open ? " open" : ""}>
|
||
<summary>思考过程</summary>
|
||
<pre class="msg-thinking-body">${esc(text)}</pre>
|
||
</details>`;
|
||
}
|
||
|
||
function renderLiveStreamBody(live) {
|
||
if (!live) return "…";
|
||
const parts = [];
|
||
if (live.thinking?.trim()) {
|
||
parts.push(
|
||
`<section class="msg-live-section"><header>思考</header><pre class="msg-live-pre">${esc(live.thinking.trim())}</pre></section>`,
|
||
);
|
||
}
|
||
if (live.output?.trim()) {
|
||
parts.push(
|
||
`<section class="msg-live-section"><header>输出</header><pre class="msg-live-pre">${esc(live.output.trim())}</pre></section>`,
|
||
);
|
||
}
|
||
return parts.length ? parts.join("") : "…";
|
||
}
|
||
|
||
function fmtTime(iso) {
|
||
if (!iso) return "";
|
||
return new Date(iso).toLocaleTimeString("zh-CN", { hour: "2-digit", minute: "2-digit" });
|
||
}
|
||
|
||
function msgLabel(msg) {
|
||
const k = msg.kind ?? (msg.role === "user" ? "user_input" : "system_info");
|
||
if (k.startsWith("worker") && msg.actor) {
|
||
if (k === "worker_questions") return formatWorkerDisplayTitle(msg.actor, "questions");
|
||
if (k === "worker_output") return formatWorkerDisplayTitle(msg.actor, "output");
|
||
if (k === "worker_running") return formatWorkerDisplayTitle(msg.actor, "running");
|
||
return displayWorkerLabel(msg.actor);
|
||
}
|
||
return MSG_LABEL[k] ?? k;
|
||
}
|
||
|
||
function canEditMessage(msg) {
|
||
return msg.role === "user";
|
||
}
|
||
|
||
function canRefreshMessage(msg) {
|
||
if (msg.role === "user") return false;
|
||
const kind = msg.kind ?? "system_info";
|
||
return kind === "worker_questions" || kind === "worker_output";
|
||
}
|
||
|
||
function renderMsgVariantBadge(msg) {
|
||
const total = msg.branchTotal ?? 1;
|
||
if (total <= 1) return "";
|
||
const index = (msg.branchIndex ?? 0) + 1;
|
||
return `<span class="msg-variant-badge">${index}/${total}</span>`;
|
||
}
|
||
|
||
function hideMsgMenu() {
|
||
const menu = document.getElementById("msg-action-menu");
|
||
if (menu) menu.hidden = true;
|
||
msgMenuState.messageId = null;
|
||
}
|
||
|
||
const msgMenuState = { messageId: null, handlers: null };
|
||
|
||
function showMsgMenu(card, x, y) {
|
||
const menu = document.getElementById("msg-action-menu");
|
||
if (!menu || !card) return;
|
||
const isReview = card.dataset.review === "1";
|
||
const canEdit = !isReview && card.dataset.canEdit === "1";
|
||
const canDelete = !isReview && Boolean(card.dataset.messageId);
|
||
const hasContext = card.dataset.hasContext === "1";
|
||
const editBtn = document.getElementById("msg-menu-edit");
|
||
const delBtn = document.getElementById("msg-menu-delete");
|
||
const ctxBtn = document.getElementById("msg-menu-context");
|
||
if (editBtn) editBtn.toggleAttribute("hidden", !canEdit);
|
||
if (delBtn) delBtn.toggleAttribute("hidden", !canDelete);
|
||
if (ctxBtn) ctxBtn.toggleAttribute("hidden", !hasContext);
|
||
menu.hidden = false;
|
||
menu.style.left = `${x}px`;
|
||
menu.style.top = `${y}px`;
|
||
msgMenuState.messageId = card.dataset.messageId ?? null;
|
||
const rect = menu.getBoundingClientRect();
|
||
if (rect.right > window.innerWidth) {
|
||
menu.style.left = `${Math.max(4, window.innerWidth - rect.width - 4)}px`;
|
||
}
|
||
if (rect.bottom > window.innerHeight) {
|
||
menu.style.top = `${Math.max(4, window.innerHeight - rect.height - 4)}px`;
|
||
}
|
||
}
|
||
|
||
function wireMsgActionMenu(handlers) {
|
||
const menu = document.getElementById("msg-action-menu");
|
||
if (!menu) return;
|
||
msgMenuState.handlers = handlers;
|
||
if (menu.dataset.wired) return;
|
||
menu.dataset.wired = "1";
|
||
menu.addEventListener("click", async (e) => {
|
||
const action = e.target.closest("[data-msg-menu-action]")?.getAttribute("data-msg-menu-action");
|
||
const messageId = msgMenuState.messageId;
|
||
hideMsgMenu();
|
||
if (!messageId || !action) return;
|
||
const card = document.querySelector(`[data-message-id="${messageId}"]`);
|
||
const bodyEl = card?.querySelector(".msg-body:not(.msg-body-editing)");
|
||
const body = bodyEl?.textContent ?? card?.dataset.originalText ?? "";
|
||
|
||
if (action === "copy") {
|
||
try {
|
||
await navigator.clipboard.writeText(body);
|
||
} catch {
|
||
/* ignore */
|
||
}
|
||
return;
|
||
}
|
||
if (action === "view-context") {
|
||
msgMenuState.handlers?.onViewContext?.(messageId);
|
||
return;
|
||
}
|
||
if (action === "edit") {
|
||
startInlineEdit(card, body);
|
||
return;
|
||
}
|
||
if (action === "delete") {
|
||
if (!confirm("删除此消息及之后的对话?")) return;
|
||
msgMenuState.handlers?.onDeleteMessage?.(messageId);
|
||
}
|
||
});
|
||
}
|
||
|
||
function wireMessageContextMenu(feed, handlers) {
|
||
if (!feed || feed.dataset.contextWired) return;
|
||
feed.dataset.contextWired = "1";
|
||
wireMsgActionMenu(handlers);
|
||
feed.addEventListener("contextmenu", (e) => {
|
||
const bubble = e.target.closest(".msg-bubble");
|
||
const card = e.target.closest("[data-message-id]");
|
||
if (!bubble || !card || card.classList.contains("msg-pending")) return;
|
||
e.preventDefault();
|
||
showMsgMenu(card, e.clientX, e.clientY);
|
||
});
|
||
}
|
||
|
||
function startInlineEdit(card, bodyText) {
|
||
if (!card || card.classList.contains("is-editing")) return;
|
||
card.classList.add("is-editing");
|
||
card.dataset.originalText = bodyText;
|
||
card.querySelector(".msg-foot")?.setAttribute("hidden", "");
|
||
|
||
const bodyEl = card.querySelector(".msg-body");
|
||
if (!bodyEl) return;
|
||
|
||
const messageId = card.dataset.messageId ?? "";
|
||
bodyEl.outerHTML = `
|
||
<div class="msg-body msg-body-editing">
|
||
<textarea class="msg-edit-input" rows="4" aria-label="编辑消息">${esc(bodyText)}</textarea>
|
||
<div class="msg-edit-bar">
|
||
<button type="button" class="btn" data-msg-action="edit-cancel" data-msg-id="${esc(messageId)}">取消</button>
|
||
<button type="button" class="btn btn-primary" data-msg-action="edit-save" data-msg-id="${esc(messageId)}">保存并重新生成</button>
|
||
</div>
|
||
<p class="msg-edit-hint">Ctrl/⌘ + Enter 保存 · Esc 取消</p>
|
||
</div>`;
|
||
|
||
const ta = card.querySelector(".msg-edit-input");
|
||
if (ta) {
|
||
ta.focus();
|
||
const len = ta.value.length;
|
||
ta.setSelectionRange(len, len);
|
||
ta.style.height = "auto";
|
||
ta.style.height = `${Math.min(ta.scrollHeight, 320)}px`;
|
||
ta.addEventListener("input", () => {
|
||
ta.style.height = "auto";
|
||
ta.style.height = `${Math.min(ta.scrollHeight, 320)}px`;
|
||
});
|
||
ta.addEventListener("keydown", (e) => {
|
||
if (e.key === "Escape") {
|
||
e.preventDefault();
|
||
cancelInlineEdit(card);
|
||
}
|
||
if (e.key === "Enter" && (e.ctrlKey || e.metaKey)) {
|
||
e.preventDefault();
|
||
card.querySelector("[data-msg-action=edit-save]")?.click();
|
||
}
|
||
});
|
||
}
|
||
}
|
||
|
||
function cancelInlineEdit(card) {
|
||
if (!card) return;
|
||
const original = card.dataset.originalText ?? "";
|
||
card.classList.remove("is-editing");
|
||
delete card.dataset.originalText;
|
||
card.querySelector(".msg-foot")?.removeAttribute("hidden");
|
||
const editing = card.querySelector(".msg-body-editing");
|
||
if (editing) {
|
||
editing.outerHTML = `<div class="msg-body">${esc(original)}</div>`;
|
||
}
|
||
}
|
||
|
||
function wireMessageFeedActions(feed, handlers) {
|
||
if (!feed || feed.dataset.actionsWired) return;
|
||
feed.dataset.actionsWired = "1";
|
||
feed.addEventListener("click", async (e) => {
|
||
const btn = e.target.closest("[data-msg-action]");
|
||
if (!btn || btn.disabled) return;
|
||
const action = btn.getAttribute("data-msg-action");
|
||
const messageId = btn.getAttribute("data-msg-id");
|
||
if (!messageId && action !== "edit-cancel" && action !== "edit-save") return;
|
||
|
||
const card = btn.closest("[data-message-id]");
|
||
const bodyEl = card?.querySelector(".msg-body:not(.msg-body-editing)");
|
||
const body = bodyEl?.textContent ?? card?.dataset.originalText ?? "";
|
||
|
||
if (action === "copy") {
|
||
const copyText =
|
||
card?.querySelector(".msg-edit-input")?.value ??
|
||
card?.querySelector(".msg-body")?.textContent ??
|
||
body;
|
||
try {
|
||
await navigator.clipboard.writeText(copyText);
|
||
} catch {
|
||
/* ignore */
|
||
}
|
||
return;
|
||
}
|
||
|
||
if (action === "edit") {
|
||
startInlineEdit(card, body);
|
||
return;
|
||
}
|
||
|
||
if (action === "edit-cancel") {
|
||
cancelInlineEdit(card);
|
||
return;
|
||
}
|
||
|
||
if (action === "edit-save") {
|
||
const ta = card?.querySelector(".msg-edit-input");
|
||
const next = ta?.value?.trim() ?? "";
|
||
const original = (card?.dataset.originalText ?? body).trim();
|
||
cancelInlineEdit(card);
|
||
if (!next || next === original) return;
|
||
handlers.onEditMessage?.(messageId, next);
|
||
return;
|
||
}
|
||
|
||
if (action === "refresh") {
|
||
handlers.onRefreshMessage?.(messageId);
|
||
return;
|
||
}
|
||
|
||
if (action === "variant-prev") {
|
||
handlers.onSwitchVariant?.(messageId, "prev");
|
||
return;
|
||
}
|
||
|
||
if (action === "variant-next") {
|
||
handlers.onSwitchVariant?.(messageId, "next");
|
||
}
|
||
});
|
||
}
|
||
|
||
function msgBody(msg, view) {
|
||
let body = (msg.body ?? msg.text ?? "").trim();
|
||
if (msg.kind === "worker_questions") {
|
||
if (getActiveQuestions(view)) {
|
||
const qs = view.waitingReason?.questions ?? [];
|
||
const n = Array.isArray(qs) ? qs.length : 0;
|
||
return `提问中 · ${n || "?"} 题(请在下方询问卡作答)`;
|
||
}
|
||
if (!body) {
|
||
const wr = view.waitingReason;
|
||
if (wr?.kind === "worker_questions") {
|
||
const qs = wr.questions ?? [];
|
||
const prompts = qs.map((q) =>
|
||
typeof q === "string" ? q : q?.prompt,
|
||
).filter(Boolean);
|
||
if (prompts.length) body = prompts.map((q) => `- ${q}`).join("\n");
|
||
}
|
||
if (!body) body = "请补充当前 Worker 需要的信息。";
|
||
}
|
||
}
|
||
return body;
|
||
}
|
||
|
||
function formatQuestionsHtml(body) {
|
||
const lines = body
|
||
.split(/\n+/)
|
||
.map((l) => l.replace(/^[-*•]\s*/, "").trim())
|
||
.filter(Boolean);
|
||
if (lines.length <= 1) {
|
||
return `<p class="msg-q-lead">${esc(body)}</p>`;
|
||
}
|
||
return `<ol class="msg-q-list">${lines.map((l) => `<li>${esc(l)}</li>`).join("")}</ol>`;
|
||
}
|
||
|
||
/** 旧会话 skill 选择提示,新流程不再展示 */
|
||
const SKILL_SELECTION_RE = /请选择创作 skill|请选择创作类型/;
|
||
|
||
/** @deprecated 旧会话可能仍处于 skill_selection;新作品不再展示选包 UI */
|
||
export function renderSkillPicker(_view, _onPick) {
|
||
const el = document.getElementById("skill-picker");
|
||
if (!el) return;
|
||
el.hidden = true;
|
||
el.innerHTML = "";
|
||
}
|
||
|
||
let activeRailTab = "books";
|
||
/** 用户手动展开侧栏后,在本会话保持展开,直到再点收起 */
|
||
let railUserExpanded = false;
|
||
|
||
export function setRailTab(tab, { expand = false } = {}) {
|
||
activeRailTab = tab === "log" ? "log" : "books";
|
||
if (expand) railUserExpanded = true;
|
||
document.querySelectorAll(".rail-tab").forEach((btn) => {
|
||
const id = btn.getAttribute("data-rail-tab");
|
||
const active = id === activeRailTab;
|
||
btn.classList.toggle("active", active);
|
||
btn.setAttribute("aria-selected", active ? "true" : "false");
|
||
});
|
||
document.querySelectorAll(".rail-tab-panel").forEach((panel) => {
|
||
const id = panel.getAttribute("data-rail-panel");
|
||
const active = id === activeRailTab;
|
||
panel.classList.toggle("active", active);
|
||
panel.toggleAttribute("hidden", !active);
|
||
});
|
||
syncRailCollapse();
|
||
}
|
||
|
||
function wireRailChrome() {
|
||
const tabs = document.getElementById("rail-tabs");
|
||
if (tabs && !tabs.dataset.wired) {
|
||
tabs.dataset.wired = "1";
|
||
tabs.addEventListener("click", (e) => {
|
||
const btn = e.target.closest(".rail-tab");
|
||
if (!btn) return;
|
||
const tab = btn.getAttribute("data-rail-tab") ?? "books";
|
||
const collapsed = document.body.classList.contains("rail-collapsed");
|
||
setRailTab(tab, { expand: collapsed });
|
||
});
|
||
}
|
||
const toggle = document.getElementById("btn-rail-toggle");
|
||
if (toggle && !toggle.dataset.wired) {
|
||
toggle.dataset.wired = "1";
|
||
toggle.addEventListener("click", () => {
|
||
if (document.body.dataset.railCanCollapse !== "1") {
|
||
railUserExpanded = true;
|
||
} else {
|
||
railUserExpanded = !railUserExpanded;
|
||
}
|
||
syncRailCollapse();
|
||
});
|
||
}
|
||
}
|
||
|
||
function hasStartedCreation(view) {
|
||
if (!view?.id) return false;
|
||
if (view.lifecycleStage === "play") return true;
|
||
if (hasUserMessages(view)) return true;
|
||
const reason = view.waitingReason?.kind;
|
||
if (reason && reason !== "intake") return true;
|
||
return Boolean(view.reviewArtifact);
|
||
}
|
||
|
||
function syncRailCollapse(view) {
|
||
if (view) {
|
||
document.body.dataset.railCanCollapse = hasStartedCreation(view) ? "1" : "0";
|
||
}
|
||
const canCollapse = document.body.dataset.railCanCollapse === "1";
|
||
const collapsed = canCollapse && !railUserExpanded;
|
||
document.body.classList.toggle("rail-collapsed", collapsed);
|
||
const toggle = document.getElementById("btn-rail-toggle");
|
||
if (toggle) {
|
||
toggle.title = collapsed ? "展开侧栏" : "收起侧栏";
|
||
toggle.textContent = collapsed ? "›" : "‹";
|
||
}
|
||
}
|
||
|
||
export function resetRailChrome() {
|
||
railUserExpanded = true;
|
||
activeRailTab = "books";
|
||
document.body.dataset.railCanCollapse = "0";
|
||
document.body.classList.remove("rail-collapsed");
|
||
setRailTab("books");
|
||
}
|
||
|
||
function hasUserMessages(view) {
|
||
return (view.messages ?? []).some((m) => m.role === "user");
|
||
}
|
||
|
||
function isSkillSelectionMessage(msg) {
|
||
const body = (msg.body ?? msg.text ?? "").trim();
|
||
return SKILL_SELECTION_RE.test(body);
|
||
}
|
||
|
||
function isStartupPromptMessage(msg, view) {
|
||
if (msg.role === "user") return false;
|
||
const body = (msg.body ?? msg.text ?? "").trim();
|
||
const prompt = (view.intakePrompt ?? "").trim();
|
||
return Boolean(prompt && body === prompt);
|
||
}
|
||
|
||
function shouldShowInFeed(msg, view) {
|
||
if (msg.role === "user") return true;
|
||
const kind = msg.kind ?? "system_info";
|
||
if (HIDE_KINDS.has(kind)) return false;
|
||
if (FEED_HIDDEN_KINDS.has(kind)) return false;
|
||
if (msg.compressed) return false;
|
||
if (isSkillSelectionMessage(msg)) return false;
|
||
if (
|
||
view.waitingReason?.kind === "intake" &&
|
||
!hasUserMessages(view) &&
|
||
isStartupPromptMessage(msg, view)
|
||
) {
|
||
return false;
|
||
}
|
||
if (kind === "worker_output" && view.waitingReason?.kind === "review_artifact") {
|
||
return false;
|
||
}
|
||
if (kind === "orchestrator_prompt") return false;
|
||
return true;
|
||
}
|
||
|
||
function maybeSyncRail(view) {
|
||
const started = hasStartedCreation(view);
|
||
const wasCollapsible = document.body.dataset.railCanCollapse === "1";
|
||
// 刚进入创作:默认缩进;未开写:展开并停在作品
|
||
if (started && !wasCollapsible) {
|
||
railUserExpanded = false;
|
||
}
|
||
if (!started) {
|
||
railUserExpanded = true;
|
||
if (activeRailTab !== "books") setRailTab("books");
|
||
}
|
||
syncRailCollapse(view);
|
||
}
|
||
|
||
export function renderLifecycle(view) {
|
||
const toggle = document.getElementById("lifecycle-toggle");
|
||
if (!toggle) return;
|
||
const stage = view.lifecycleStage ?? "design";
|
||
document.body.dataset.lifecycle = stage;
|
||
toggle.querySelectorAll("[data-stage]").forEach((btn) => {
|
||
const s = btn.getAttribute("data-stage");
|
||
btn.classList.toggle("active", s === stage);
|
||
if (s === "play") {
|
||
btn.disabled = !view.playReady;
|
||
btn.title = view.playReady
|
||
? "进入游玩 / 写作"
|
||
: "请先验收 Worker 集(创作定稿)后再切换";
|
||
} else {
|
||
btn.disabled = false;
|
||
}
|
||
});
|
||
}
|
||
|
||
/** @deprecated 设计 Tab 已移除;保留空函数以免外部误调用 */
|
||
export function renderSkillGuide(_view) {
|
||
wireRailChrome();
|
||
}
|
||
|
||
function renderTagList(tags, emptyLabel) {
|
||
if (!tags?.length) {
|
||
return `<div class="ws-tag-empty">${esc(emptyLabel)}</div>`;
|
||
}
|
||
return `<ol class="ws-tag-order">${tags
|
||
.map((t, i) => {
|
||
const filled =
|
||
t.filled === true
|
||
? `<span class="ws-tag-filled" title="已写入黑板">✓</span>`
|
||
: t.filled === false
|
||
? `<span class="ws-tag-pending" title="待写入">○</span>`
|
||
: "";
|
||
const note = t.note ? `<span class="ws-tag-note">${esc(t.note)}</span>` : "";
|
||
return `<li><code>${esc(t.tag)}</code>${filled}${note}</li>`;
|
||
})
|
||
.join("")}</ol>`;
|
||
}
|
||
|
||
function howLabel(how) {
|
||
if (how === "prompt_body") return "注入正文";
|
||
if (how === "resident") return "常驻挂载";
|
||
return "读入黑板";
|
||
}
|
||
|
||
function formatFocusBodyHtml(body) {
|
||
if (body == null) return `<p class="ws-muted">(本块尚无正文,请在下方对话中补充)</p>`;
|
||
if (typeof body === "string") {
|
||
const t = body.trim();
|
||
return t
|
||
? formatArtifactBodyHtml(t)
|
||
: `<p class="ws-muted">(本块尚无正文,请在下方对话中补充)</p>`;
|
||
}
|
||
try {
|
||
return formatArtifactBodyHtml(JSON.stringify(body));
|
||
} catch {
|
||
return `<pre class="ws-focus-body-text">${esc(String(body))}</pre>`;
|
||
}
|
||
}
|
||
|
||
function renderFocusUnitBanner(focusUnit, opts = {}) {
|
||
if (!focusUnit) return "";
|
||
const isContext =
|
||
focusUnit.kind === "fixed" ||
|
||
(typeof focusUnit.id === "string" &&
|
||
(focusUnit.id.startsWith("fixed:") || focusUnit.id.startsWith("resident:")));
|
||
const kindLabel =
|
||
focusUnit.kind === "worker"
|
||
? "创造 Worker"
|
||
: focusUnit.kind === "phase"
|
||
? "创作阶段"
|
||
: "填充上下文";
|
||
const showBody =
|
||
!opts.omitFocusBody &&
|
||
(isContext || focusUnit.kind === "phase") &&
|
||
focusUnit.body != null &&
|
||
String(focusUnit.body).trim();
|
||
const hint = opts.omitFocusBody
|
||
? "下方卡片为本次待验收产物。"
|
||
: isContext
|
||
? "请重点审阅:这是本次要写入 / 验收的上下文。"
|
||
: focusUnit.kind === "worker"
|
||
? "请重点审阅当前运行规格。"
|
||
: "请重点审阅当前创作单位。";
|
||
const bodyHtml = showBody
|
||
? `<div class="ws-focus-body">${formatFocusBodyHtml(focusUnit.body)}</div>`
|
||
: "";
|
||
return `<section class="ws-section ws-focus-banner" data-focus-kind="${esc(focusUnit.kind)}" data-focus-id="${esc(focusUnit.id)}">
|
||
<div class="ws-focus-banner-head">
|
||
<span class="ws-focus-mode">${esc(kindLabel)}</span>
|
||
<span class="ws-focus-label">${esc(focusUnit.label)}</span>
|
||
<code class="ws-focus-id">${esc(focusUnit.id)}</code>
|
||
</div>
|
||
<p class="ws-focus-hint">${esc(hint)}</p>
|
||
${bodyHtml}
|
||
</section>`;
|
||
}
|
||
|
||
function renderContextTagCards(contextTags, opts = {}) {
|
||
if (!contextTags?.length) return "";
|
||
const compact = opts.compact === true;
|
||
const focusId = opts.focusId || "";
|
||
const focusContext = opts.focusContext === true;
|
||
const fixedFirst = [...contextTags].sort((a, b) => {
|
||
const rank = (k) => (k === "fixed" ? 0 : k === "resident" ? 1 : 2);
|
||
return rank(a.kind) - rank(b.kind);
|
||
});
|
||
const cards = fixedFirst
|
||
.filter((c) => (compact ? c.kind !== "board" : true))
|
||
.map((c) => {
|
||
const kindBadge =
|
||
c.kind === "fixed"
|
||
? `<span class="ws-badge ws-badge-fixed">纲领</span>`
|
||
: c.kind === "resident"
|
||
? `<span class="ws-badge ws-badge-resident">常驻</span>`
|
||
: `<span class="ws-badge ws-badge-board">黑板</span>`;
|
||
const filled =
|
||
c.filled === true
|
||
? `<span class="ws-tag-filled" title="已有内容">✓</span>`
|
||
: `<span class="ws-tag-pending" title="待写入">○</span>`;
|
||
const mountChips = (c.mounts || [])
|
||
.slice(0, compact ? 4 : 12)
|
||
.map(
|
||
(m) =>
|
||
`<span class="ws-mount-chip" title="${esc(howLabel(m.how))}"><span class="ws-mount-how">${esc(howLabel(m.how))}</span>${esc(m.workerName)}</span>`,
|
||
)
|
||
.join("");
|
||
const more =
|
||
(c.mounts?.length ?? 0) > (compact ? 4 : 12)
|
||
? `<span class="ws-muted">+${c.mounts.length - (compact ? 4 : 12)}</span>`
|
||
: "";
|
||
const isFocus =
|
||
focusId &&
|
||
(c.id === focusId ||
|
||
(focusId.startsWith("fixed:aesthetics") && c.id.startsWith("fixed:aesthetics")) ||
|
||
(focusId === "fixed:aesthetics" && c.id.startsWith("fixed:aesthetics:")));
|
||
const dim = focusContext && focusId && !isFocus ? " ws-dimmed" : "";
|
||
const focusCls = isFocus ? " ws-context-focus" : "";
|
||
return `<article class="ws-context-card kind-${esc(c.kind)}${focusCls}${dim}" data-tag-id="${esc(c.id)}">
|
||
<header class="ws-context-card-head">
|
||
<span class="ws-context-card-title">${esc(c.label)}</span>
|
||
${kindBadge}
|
||
${filled}
|
||
${isFocus ? `<span class="ws-badge ws-badge-focus">本次</span>` : ""}
|
||
</header>
|
||
${c.preview && !compact ? `<p class="ws-context-preview">${esc(c.preview)}</p>` : ""}
|
||
<div class="ws-mount-row">
|
||
<span class="ws-label">塞进</span>
|
||
<span class="ws-mount-summary">${esc(c.mountSummary || "尚未指定 Worker")}</span>
|
||
</div>
|
||
${mountChips || more ? `<div class="ws-mount-chips">${mountChips}${more}</div>` : ""}
|
||
</article>`;
|
||
})
|
||
.join("");
|
||
if (!cards) return "";
|
||
const sectionCls = focusContext ? " ws-section-focus-context" : "";
|
||
return `<section class="ws-section ws-context-tags${sectionCls}">
|
||
<h4>${focusContext ? "固定上下文 · 本次要填" : "固定上下文"}</h4>
|
||
<p class="ws-muted ws-context-hint">${
|
||
focusContext
|
||
? "高亮卡片是本次验收对象;其它块仅供对照。"
|
||
: "与 Worker 解耦:先看纲领挂到谁,再看下方分工。同一块可挂多个 Worker。"
|
||
}</p>
|
||
<div class="ws-context-cards">${cards}</div>
|
||
</section>`;
|
||
}
|
||
|
||
function renderWorkerSetUserView(userView, opts = {}) {
|
||
if (!userView) return "";
|
||
if (userView.parseError) {
|
||
return `<div class="review-parse-error" role="alert">
|
||
<div class="review-parse-error-title">规格无法解析</div>
|
||
<p>${esc(userView.parseError)}</p>
|
||
<p class="review-parse-error-hint">Worker 集必须是 JSON 对象。若模型把说明/提问写进了规格字段,请在下方发送修改意见,让它重写后再接受。</p>
|
||
</div>`;
|
||
}
|
||
|
||
const compact = opts.compact === true;
|
||
const parts = [];
|
||
const focusUnit = userView.focusUnit;
|
||
const focusId = focusUnit?.id || "";
|
||
const focusContext =
|
||
focusUnit?.kind === "fixed" ||
|
||
(typeof focusId === "string" &&
|
||
(focusId.startsWith("fixed:") || focusId.startsWith("resident:")));
|
||
const focusWorkerRef =
|
||
focusUnit?.kind === "worker" && focusId.startsWith("worker:")
|
||
? focusId.slice("worker:".length)
|
||
: "";
|
||
|
||
// 当前单位横幅;验收卡可 omitFocusBody,避免与下方产物卡重复占位
|
||
const focusBanner = renderFocusUnitBanner(focusUnit, {
|
||
omitFocusBody: opts.omitFocusBody === true,
|
||
});
|
||
if (focusBanner) parts.push(focusBanner);
|
||
|
||
if (userView.headline) {
|
||
parts.push(
|
||
`<section class="ws-section ws-headline"><h4>这次体验</h4><p>${esc(userView.headline)}</p></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.interactionParadigm) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>交互范式</h4><p>${esc(userView.interactionParadigm)}</p></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.coreWorker) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>核心执行单元</h4><p><code>${esc(userView.coreWorker)}</code> — 负责推剧情并产出本轮实质内容</p></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.playSlots?.length) {
|
||
const chips = userView.playSlots
|
||
.map((s) => {
|
||
const on = s.enabled ? "ws-slot-on" : "ws-slot-off";
|
||
const state = s.enabled ? "开" : "关";
|
||
return `<span class="ws-slot-chip ${on}" title="${esc(s.ref)}">${esc(s.label)} · ${state}</span>`;
|
||
})
|
||
.join("");
|
||
parts.push(
|
||
`<section class="ws-section"><h4>游玩槽位</h4><div class="ws-slot-row">${chips}</div></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.contextOrder?.slots?.length) {
|
||
const editable = opts.editable === true && Boolean(opts.sessionId);
|
||
const orderParts = [];
|
||
if (userView.contextOrder.brief) {
|
||
orderParts.push(`<p>${esc(userView.contextOrder.brief)}</p>`);
|
||
}
|
||
if (userView.contextOrder.synthesized) {
|
||
orderParts.push(
|
||
`<p class="ws-muted ws-order-hint">尚未写入规格;调整顺序将保存为「上下文投影排序」并合并进 Worker 集(若已有)。</p>`,
|
||
);
|
||
} else if (editable) {
|
||
orderParts.push(
|
||
`<p class="ws-muted ws-order-hint">扁平投影序:↑↓ 调整位置;「对话.历史」是可投影标签(改 projection 裁剪长度);也可移到历史前/后。</p>`,
|
||
);
|
||
}
|
||
for (const slot of userView.contextOrder.slots) {
|
||
const title = slot.label || slot.ref;
|
||
const inserts = Array.isArray(slot.inserts) ? slot.inserts : null;
|
||
if (editable && inserts?.length) {
|
||
const rows = inserts
|
||
.map((ins) => {
|
||
const isHist = Boolean(ins.isHistory) || ins.ref === "对话.历史";
|
||
const histBtns = isHist
|
||
? ""
|
||
: `<button type="button" class="btn-mini" data-ctx-order="set_anchor" data-anchor="pre_history" title="移到历史前">史前</button>
|
||
<button type="button" class="btn-mini" data-ctx-order="set_anchor" data-anchor="post_history" title="移到历史后">史后</button>`;
|
||
return `<li class="ctx-order-row${isHist ? " ctx-order-history" : ""}" data-slot-ref="${esc(slot.ref)}" data-index="${esc(String(ins.index))}">
|
||
<span class="ctx-order-line">${esc(ins.line || "")}</span>
|
||
<span class="ctx-order-actions">
|
||
<button type="button" class="btn-mini" data-ctx-order="move" data-delta="-1" title="上移">↑</button>
|
||
<button type="button" class="btn-mini" data-ctx-order="move" data-delta="1" title="下移">↓</button>
|
||
${histBtns}
|
||
<select class="ctx-order-proj" data-ctx-order="set_projection" title="投影级别">
|
||
${["fixed", "summary", "fields", "full"]
|
||
.map(
|
||
(p) =>
|
||
`<option value="${p}" ${p === ins.projection ? "selected" : ""}>${p}</option>`,
|
||
)
|
||
.join("")}
|
||
</select>
|
||
</span>
|
||
</li>`;
|
||
})
|
||
.join("");
|
||
orderParts.push(
|
||
`<h5 class="ws-subhead">${esc(title)}</h5><ul class="ctx-order-list">${rows}</ul>`,
|
||
);
|
||
} else {
|
||
const lis = (slot.lines || [])
|
||
.map((l) => `<li>${esc(l)}</li>`)
|
||
.join("");
|
||
if (lis) {
|
||
orderParts.push(
|
||
`<h5 class="ws-subhead">${esc(title)}</h5><ul class="artifact-list">${lis}</ul>`,
|
||
);
|
||
}
|
||
}
|
||
}
|
||
if (orderParts.length) {
|
||
parts.push(
|
||
`<section class="ws-section ws-context-order"><h4>上下文投影排序${editable ? " · 可编排" : ""}</h4>${orderParts.join("")}</section>`,
|
||
);
|
||
}
|
||
}
|
||
|
||
if (!compact && userView.reasoning) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>分工推理</h4><p class="ws-reasoning">${esc(userView.reasoning)}</p></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.playModeLabel) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>游玩方式</h4><p><strong>${esc(userView.playModeLabel)}</strong>${userView.playModeHint ? `<span class="ws-muted"> — ${esc(userView.playModeHint)}</span>` : ""}</p></section>`,
|
||
);
|
||
}
|
||
|
||
// 固定上下文独立区(在 worker 之前;填充模式下高亮本次块)
|
||
const contextSection = renderContextTagCards(userView.contextTags, {
|
||
compact,
|
||
focusId,
|
||
focusContext,
|
||
});
|
||
if (contextSection) parts.push(contextSection);
|
||
|
||
if (userView.inputProtocol?.length && !userView.contextTags?.some((c) => c.id === "fixed:input_protocol")) {
|
||
const rows = userView.inputProtocol
|
||
.map((p) => `<li><strong>${esc(p.label)}</strong>:${esc(p.value)}</li>`)
|
||
.join("");
|
||
parts.push(`<section class="ws-section"><h4>输入协议</h4><ul class="ws-list">${rows}</ul></section>`);
|
||
}
|
||
|
||
if (userView.workers?.length) {
|
||
const cards = userView.workers
|
||
.map((w) => {
|
||
const isFocusWorker = focusWorkerRef && w.id === focusWorkerRef;
|
||
const statusBadge =
|
||
w.status === "gap"
|
||
? `<span class="ws-badge ws-badge-warn">待补 SKILL</span>`
|
||
: `<span class="ws-badge ws-badge-ok">就绪</span>`;
|
||
const idLine = w.id ? `<code class="ws-worker-id">${esc(w.id)}</code>` : "";
|
||
const roleBadge = w.roleLabel
|
||
? `<span class="ws-badge ws-badge-role">${esc(w.roleLabel)}</span>`
|
||
: "";
|
||
const acceptBadge = w.acceptanceLabel
|
||
? `<span class="ws-badge ${w.acceptance === "review" ? "ws-badge-review" : "ws-badge-continue"}">${esc(w.acceptanceLabel)}</span>`
|
||
: "";
|
||
const explicitNote = w.context?.explicit
|
||
? ""
|
||
: `<div class="ws-inferred">部分读入来自包内默认模板</div>`;
|
||
const rationale = w.rationale
|
||
? `<div class="ws-row ws-rationale"><span class="ws-label">为何需要</span><span>${esc(w.rationale)}</span></div>`
|
||
: "";
|
||
const merge = w.mergeConsidered
|
||
? `<div class="ws-row ws-merge"><span class="ws-label">合并考量</span><span>${esc(w.mergeConsidered)}</span></div>`
|
||
: "";
|
||
const reads = w.readsSummary
|
||
? `<div class="ws-row ws-reads"><span class="ws-label">上下文</span><span>${esc(w.readsSummary)}</span></div>`
|
||
: "";
|
||
const dim =
|
||
focusWorkerRef && !isFocusWorker
|
||
? " ws-dimmed"
|
||
: focusContext
|
||
? " ws-dimmed"
|
||
: "";
|
||
const focusCls = isFocusWorker ? " ws-worker-focus" : "";
|
||
|
||
return `<article class="ws-worker-card ${w.status}${focusCls}${dim}">
|
||
<header class="ws-worker-head">
|
||
<span class="ws-worker-order">${w.order}</span>
|
||
<span class="ws-worker-name">${esc(w.displayName)}</span>
|
||
${isFocusWorker ? `<span class="ws-badge ws-badge-focus">本次</span>` : ""}
|
||
${roleBadge}
|
||
${acceptBadge}
|
||
${statusBadge}
|
||
</header>
|
||
${idLine}
|
||
<div class="ws-row"><span class="ws-label">用来干嘛</span><span>${esc(w.purpose)}</span></div>
|
||
<div class="ws-row"><span class="ws-label">何时调用</span><span>${esc(w.invokeWhen)}</span></div>
|
||
${rationale}
|
||
${merge}
|
||
${reads}
|
||
${w.gapNote ? `<div class="ws-gap">${esc(w.gapNote)}</div>` : ""}
|
||
<div class="ws-writes">
|
||
<span class="ws-label">写入黑板</span>
|
||
${w.writes?.length ? w.writes.map((t) => `<code>${esc(t)}</code>`).join(" ") : "—"}
|
||
</div>
|
||
${explicitNote}
|
||
</article>`;
|
||
})
|
||
.join("");
|
||
parts.push(
|
||
`<section class="ws-section"><h4>游玩 Worker${compact ? "(摘要)" : ""}${focusWorkerRef ? " · 本次规格" : ""}</h4><div class="ws-worker-cards">${cards}</div></section>`,
|
||
);
|
||
}
|
||
|
||
if (!compact && userView.tagFlow?.length) {
|
||
const flow = userView.tagFlow
|
||
.map(
|
||
(edge) =>
|
||
`<div class="ws-flow-edge"><span>${edge.from.map((t) => `<code>${esc(t)}</code>`).join(" + ")}</span><span class="ws-flow-arrow">→</span><span>${edge.to.map((t) => `<code>${esc(t)}</code>`).join(" + ")}</span></div>`,
|
||
)
|
||
.join("");
|
||
parts.push(`<section class="ws-section"><h4>数据怎么流</h4><div class="ws-flow">${flow}</div></section>`);
|
||
}
|
||
|
||
if (userView.creationUnits?.length) {
|
||
const units = userView.creationUnits
|
||
.map((u) => {
|
||
const kindLabel =
|
||
u.kind === "worker"
|
||
? "Worker"
|
||
: u.kind === "phase"
|
||
? "阶段"
|
||
: u.flavor === "resident"
|
||
? "常驻块"
|
||
: "固定上下文";
|
||
const filled = u.accepted
|
||
? "已验收"
|
||
: u.current
|
||
? "进行中"
|
||
: u.filled
|
||
? "已写"
|
||
: "待谈";
|
||
const weight = u.weighty ? " · 纲领" : "";
|
||
const cls = u.accepted
|
||
? "ws-task-filled"
|
||
: u.current
|
||
? "ws-task-planned ws-unit-current"
|
||
: "ws-task-planned";
|
||
return `<li class="ws-task ${cls}"><span class="ws-unit-kind">${esc(kindLabel)}${esc(weight)}</span><span>${esc(u.label)}</span><span class="ws-task-status">${filled}</span>${u.detail ? `<span class="ws-muted"> — ${esc(u.detail)}</span>` : ""}</li>`;
|
||
})
|
||
.join("");
|
||
parts.push(
|
||
`<section class="ws-section"><h4>创作单位</h4><p class="ws-muted" style="margin:0 0 0.5rem">纲领与 Worker 同级;不必先写完 Worker 再填上下文。</p><ul class="ws-task-list">${units}</ul></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.designTasks?.length) {
|
||
const tasks = userView.designTasks
|
||
.map((t) => {
|
||
const cls =
|
||
t.status === "filled"
|
||
? "ws-task-filled"
|
||
: t.status === "skipped"
|
||
? "ws-task-skipped"
|
||
: "ws-task-planned";
|
||
const statusLabel =
|
||
t.status === "filled" ? "已填" : t.status === "skipped" ? "跳过" : "待填";
|
||
return `<li class="ws-task ${cls}"><span>${esc(t.label)}</span><code>${esc(t.id)}</code><span class="ws-task-status">${statusLabel}</span>${t.skipReason ? `<span class="ws-muted"> — ${esc(t.skipReason)}</span>` : ""}</li>`;
|
||
})
|
||
.join("");
|
||
parts.push(
|
||
`<section class="ws-section"><h4>设计阶段还需准备</h4><ul class="ws-task-list">${tasks}</ul></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.openQuestions?.length) {
|
||
parts.push(
|
||
`<section class="ws-section ws-open"><h4>待澄清</h4><ul class="ws-list">${userView.openQuestions.map((q) => `<li>${esc(q)}</li>`).join("")}</ul></section>`,
|
||
);
|
||
}
|
||
|
||
if (userView.notes && !compact) {
|
||
parts.push(`<section class="ws-section"><h4>补充说明</h4><p>${esc(userView.notes)}</p></section>`);
|
||
}
|
||
|
||
return `<div class="ws-user-view">${parts.join("")}</div>`;
|
||
}
|
||
|
||
const ARTIFACT_TITLE_KEYS = [
|
||
"名",
|
||
"显示名",
|
||
"块id",
|
||
"段id",
|
||
"rule_id",
|
||
"pool_id",
|
||
"映射id",
|
||
"id",
|
||
"key",
|
||
"字段名",
|
||
"label",
|
||
"ref",
|
||
"title",
|
||
];
|
||
|
||
const ARTIFACT_SKIP_KEYS = new Set(["schema", "schema_version"]);
|
||
|
||
/** 剥 markdown 代码围栏,便于从验收正文里取出 JSON */
|
||
function stripCodeFences(text) {
|
||
let t = String(text || "").trim();
|
||
t = t.replace(/^```(?:json|yaml|yml)?\s*\n?/i, "");
|
||
t = t.replace(/\n?```\s*$/i, "");
|
||
return t.trim();
|
||
}
|
||
|
||
/** 验收正文常为 `## tag\\n\\n{json}` 多段拼接 */
|
||
function splitTaggedArtifactSections(text) {
|
||
const trimmed = String(text || "").trim();
|
||
if (!trimmed) return [];
|
||
const re = /^##\s+(.+?)\s*$/gm;
|
||
const hits = [];
|
||
let m;
|
||
while ((m = re.exec(trimmed))) {
|
||
hits.push({ title: m[1].trim(), index: m.index, headerEnd: m.index + m[0].length });
|
||
}
|
||
if (!hits.length) return [{ title: "", content: trimmed }];
|
||
return hits.map((h, i) => {
|
||
const end = i + 1 < hits.length ? hits[i + 1].index : trimmed.length;
|
||
return { title: h.title, content: trimmed.slice(h.headerEnd, end).trim() };
|
||
});
|
||
}
|
||
|
||
function tryParseJsonDoc(text) {
|
||
const tryParse = (s) => {
|
||
try {
|
||
return JSON.parse(s);
|
||
} catch {
|
||
return null;
|
||
}
|
||
};
|
||
const cleaned = stripCodeFences(text);
|
||
let parsed = tryParse(cleaned);
|
||
if (parsed != null) return parsed;
|
||
const objStart = cleaned.indexOf("{");
|
||
const objEnd = cleaned.lastIndexOf("}");
|
||
if (objStart >= 0 && objEnd > objStart) {
|
||
parsed = tryParse(cleaned.slice(objStart, objEnd + 1));
|
||
if (parsed != null) return parsed;
|
||
}
|
||
const arrStart = cleaned.indexOf("[");
|
||
const arrEnd = cleaned.lastIndexOf("]");
|
||
if (arrStart >= 0 && arrEnd > arrStart) {
|
||
parsed = tryParse(cleaned.slice(arrStart, arrEnd + 1));
|
||
if (parsed != null) return parsed;
|
||
}
|
||
return null;
|
||
}
|
||
|
||
function wrapArtifactRawDetails(rawText) {
|
||
const pretty = (() => {
|
||
const parsed = tryParseJsonDoc(rawText);
|
||
if (parsed != null) return JSON.stringify(parsed, null, 2);
|
||
return String(rawText || "").trim();
|
||
})();
|
||
const body = pretty.startsWith("{") || pretty.startsWith("[")
|
||
? `<code>${highlightJson(pretty)}</code>`
|
||
: esc(pretty);
|
||
return `<details class="artifact-raw"><summary>原始 JSON</summary><pre class="json-pretty" tabindex="0">${body}</pre></details>`;
|
||
}
|
||
|
||
function clampPreviewText(text, max = 140) {
|
||
const t = String(text || "").replace(/\s+/g, " ").trim();
|
||
if (!t) return "";
|
||
return t.length > max ? `${t.slice(0, max)}…` : t;
|
||
}
|
||
|
||
/** 从产物对象抽出卡片预览:标题 / 摘要 / 徽章 / 分数 pill */
|
||
function summarizeArtifactDoc(doc, tagTitle = "") {
|
||
if (Array.isArray(doc)) {
|
||
return {
|
||
title: tagTitle || "列表产物",
|
||
brief: `${doc.length} 条记录`,
|
||
chipsHtml: "",
|
||
scoresHtml: "",
|
||
};
|
||
}
|
||
const title =
|
||
tagTitle ||
|
||
(typeof doc.技能 === "string" && doc.技能.trim()) ||
|
||
(typeof doc.brief === "string" && clampPreviewText(doc.brief, 40)) ||
|
||
doc.schema ||
|
||
"产物";
|
||
let brief = "";
|
||
if (typeof doc.brief === "string" && doc.brief.trim()) {
|
||
brief = clampPreviewText(doc.brief, 160);
|
||
} else if (typeof doc.正文 === "string") {
|
||
brief = clampPreviewText(doc.正文, 160);
|
||
} else if (doc.正文 && typeof doc.正文 === "object") {
|
||
const body = doc.正文;
|
||
const kernel = body.美学纲领?.体验内核 || body.体验内核;
|
||
if (typeof kernel === "string") brief = clampPreviewText(kernel, 160);
|
||
else {
|
||
const keys = Object.keys(body).slice(0, 5);
|
||
brief = keys.length ? `含:${keys.join("、")}` : "";
|
||
}
|
||
} else if (Array.isArray(doc.真值)) {
|
||
brief = `真值 ${doc.真值.length} 项` + (doc.side_effects ? ` · 副作用 ${doc.side_effects.length}` : "");
|
||
} else if (doc.play_slots) {
|
||
brief = "游玩槽位配置";
|
||
}
|
||
|
||
const chips = [];
|
||
const stability = doc.稳变 || doc.稳定 || doc.stability;
|
||
if (stability) chips.push(`<span class="ws-badge ws-badge-continue">${esc(String(stability))}</span>`);
|
||
if (Array.isArray(doc.mount)) {
|
||
for (const m of doc.mount.slice(0, 3)) {
|
||
chips.push(`<span class="ws-slot-chip ws-slot-on">${esc(String(m))}</span>`);
|
||
}
|
||
if (doc.mount.length > 3) {
|
||
chips.push(`<span class="ws-muted">+${doc.mount.length - 3}</span>`);
|
||
}
|
||
}
|
||
const 自评 = doc.自评;
|
||
let scoresHtml = "";
|
||
if (自评 && typeof 自评 === "object" && Array.isArray(自评.维度)) {
|
||
const pills = 自评.维度
|
||
.map((d) => {
|
||
if (!d || typeof d !== "object") return "";
|
||
const name = d.名 || d.维度 || "?";
|
||
const pct = parseCompleteness(d.分数);
|
||
if (pct == null) return "";
|
||
return `<span class="pct-pill tone-${pctTone(pct)}">${esc(String(name))} ${Math.round(pct)}%</span>`;
|
||
})
|
||
.filter(Boolean);
|
||
if (pills.length) scoresHtml = pills.join("");
|
||
}
|
||
return {
|
||
title: String(title),
|
||
brief,
|
||
chipsHtml: chips.join(""),
|
||
scoresHtml,
|
||
};
|
||
}
|
||
|
||
function renderArtifactCompactCard(doc, tagTitle, rawSlice, opts = {}) {
|
||
const meta = summarizeArtifactDoc(doc, tagTitle);
|
||
const full =
|
||
renderKnownArtifactHtml(doc, {
|
||
embed: true,
|
||
hideAskSidecar: opts.hideAskSidecar === true,
|
||
}) || renderStructuredDocHtml(doc);
|
||
const raw = rawSlice ? wrapArtifactRawDetails(rawSlice) : "";
|
||
const metaRow = [meta.chipsHtml, meta.scoresHtml].filter(Boolean).join("");
|
||
const openAttr = opts.open ? " open" : "";
|
||
return `<details class="artifact-compact"${openAttr}>
|
||
<summary class="artifact-compact-sum">
|
||
<div class="artifact-compact-row">
|
||
<div class="artifact-compact-main">
|
||
<span class="artifact-compact-title">${esc(meta.title)}</span>
|
||
${metaRow ? `<div class="artifact-compact-meta">${metaRow}</div>` : ""}
|
||
${meta.brief ? `<p class="artifact-compact-preview">${esc(meta.brief)}</p>` : ""}
|
||
</div>
|
||
<span class="artifact-compact-toggle" aria-hidden="true"></span>
|
||
</div>
|
||
</summary>
|
||
<div class="artifact-compact-body">${full}${raw}</div>
|
||
</details>`;
|
||
}
|
||
|
||
function renderPlainCompactCard(title, content, opts = {}) {
|
||
const preview = clampPreviewText(content, 160);
|
||
const openAttr = opts.open ? " open" : "";
|
||
return `<details class="artifact-compact"${openAttr}>
|
||
<summary class="artifact-compact-sum">
|
||
<div class="artifact-compact-row">
|
||
<div class="artifact-compact-main">
|
||
<span class="artifact-compact-title">${esc(title || "产物")}</span>
|
||
${preview ? `<p class="artifact-compact-preview">${esc(preview)}</p>` : ""}
|
||
</div>
|
||
<span class="artifact-compact-toggle" aria-hidden="true"></span>
|
||
</div>
|
||
</summary>
|
||
<div class="artifact-compact-body"><pre class="review-feed-plain">${esc(content)}</pre></div>
|
||
</details>`;
|
||
}
|
||
|
||
/** 紧凑卡片:预览 + 展开详情;多 tag 各一张。opts.defaultOpen:验收时默认展开吃满阅读区 */
|
||
function formatArtifactBodyHtml(body, opts = {}) {
|
||
const trimmed = (body || "").trim();
|
||
if (!trimmed) {
|
||
return `<p class="empty-sm">(无正文)</p>`;
|
||
}
|
||
const cardOpts = {
|
||
open: opts.defaultOpen === true,
|
||
hideAskSidecar: opts.hideAskSidecar === true,
|
||
};
|
||
|
||
const sections = splitTaggedArtifactSections(trimmed);
|
||
const hasTagHeaders = sections.length > 1 || (sections.length === 1 && sections[0].title);
|
||
|
||
if (hasTagHeaders) {
|
||
const cards = sections.map((sec) => {
|
||
const parsed = tryParseJsonDoc(sec.content);
|
||
if (parsed != null && typeof parsed === "object") {
|
||
return renderArtifactCompactCard(parsed, sec.title, sec.content, cardOpts);
|
||
}
|
||
return renderPlainCompactCard(sec.title || "产物", sec.content, cardOpts);
|
||
});
|
||
return `<div class="artifact-compact-list">${cards.join("")}</div>`;
|
||
}
|
||
|
||
const parsed = tryParseJsonDoc(trimmed);
|
||
if (parsed != null && typeof parsed === "object") {
|
||
return `<div class="artifact-compact-list">${renderArtifactCompactCard(parsed, "", trimmed, cardOpts)}</div>`;
|
||
}
|
||
|
||
return `<div class="artifact-compact-list">${renderPlainCompactCard("产物", trimmed, cardOpts)}</div>`;
|
||
}
|
||
|
||
/** 已知产物 → 分节卡片;未知对象走通用结构化渲染 */
|
||
function renderKnownArtifactHtml(doc, opts = {}) {
|
||
if (Array.isArray(doc)) {
|
||
return `<div class="artifact-friendly">${renderStructuredValueHtml(doc, 0)}</div>`;
|
||
}
|
||
const schema = doc.schema;
|
||
if (schema === "settlement.v1" || isSettlementLike(doc)) {
|
||
return renderSettlementSectionsHtml(doc);
|
||
}
|
||
if (schema === "context-fragment.v1" || isContextFragmentLike(doc)) {
|
||
return renderContextFragmentHtml(doc, opts);
|
||
}
|
||
if (schema === "context-order.v1" || Array.isArray(doc.slots)) {
|
||
const orderHtml = renderContextOrderHtml(doc);
|
||
if (orderHtml) return orderHtml;
|
||
}
|
||
if (Array.isArray(doc.真值) || Array.isArray(doc.side_effects) || doc.维护语句约定) {
|
||
return renderVariableDesignHtml(doc);
|
||
}
|
||
if (doc.play_slots && typeof doc.play_slots === "object") {
|
||
return renderPlaySlotsHtml(doc);
|
||
}
|
||
return null;
|
||
}
|
||
|
||
function renderPlaySlotsHtml(doc) {
|
||
const slotLabels = {
|
||
gm: "主世界层",
|
||
"world-simulator": "主世界层",
|
||
narrator: "叙事转述",
|
||
perspective: "角色视角",
|
||
chance: "机遇裁定",
|
||
};
|
||
const slots = doc.play_slots;
|
||
const keys = Object.keys(slots);
|
||
const chips = keys
|
||
.map((k) => {
|
||
const on = Boolean(slots[k]);
|
||
const label = slotLabels[k] || k;
|
||
return `<span class="ws-slot-chip ${on ? "ws-slot-on" : "ws-slot-off"}">${esc(label)}</span>`;
|
||
})
|
||
.join("");
|
||
const parts = [];
|
||
if (doc.brief) {
|
||
parts.push(`<section class="ws-section"><h4>概要</h4><p>${esc(String(doc.brief))}</p></section>`);
|
||
}
|
||
parts.push(
|
||
`<section class="ws-section"><h4>游玩槽位</h4><div class="ws-slot-row">${chips}</div></section>`,
|
||
);
|
||
const rest = { ...doc };
|
||
delete rest.play_slots;
|
||
delete rest.brief;
|
||
delete rest.schema;
|
||
const extra = Object.keys(rest).filter((k) => rest[k] != null && rest[k] !== "");
|
||
if (extra.length) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>其它</h4>${renderStructuredValueHtml(rest, 0)}</section>`,
|
||
);
|
||
}
|
||
return `<div class="artifact-friendly artifact-play-slots">${parts.join("")}</div>`;
|
||
}
|
||
|
||
function isContextFragmentLike(doc) {
|
||
return (
|
||
typeof doc.brief === "string" &&
|
||
(doc.正文 != null || doc.body != null) &&
|
||
(typeof doc.技能 === "string" || doc.schema === "context-fragment.v1")
|
||
);
|
||
}
|
||
|
||
function renderContextFragmentHtml(doc, opts = {}) {
|
||
const parts = [];
|
||
// 紧凑卡外层已展示 brief/挂载,展开内不再重复头区
|
||
if (!opts.embed) {
|
||
const metaChips = [];
|
||
if (doc.技能) metaChips.push(`<span class="ws-badge ws-badge-review">${esc(String(doc.技能))}</span>`);
|
||
const stability = doc.稳变 || doc.稳定 || doc.stability;
|
||
if (stability) metaChips.push(`<span class="ws-badge ws-badge-continue">${esc(String(stability))}</span>`);
|
||
if (Array.isArray(doc.mount) && doc.mount.length) {
|
||
for (const m of doc.mount) {
|
||
metaChips.push(`<span class="ws-slot-chip ws-slot-on">${esc(String(m))}</span>`);
|
||
}
|
||
}
|
||
if (doc.brief || metaChips.length) {
|
||
parts.push(`<header class="artifact-hero">
|
||
${metaChips.length ? `<div class="artifact-chip-row">${metaChips.join("")}</div>` : ""}
|
||
${doc.brief ? `<p class="artifact-brief">${esc(String(doc.brief))}</p>` : ""}
|
||
</header>`);
|
||
}
|
||
}
|
||
|
||
const body = doc.正文 != null ? doc.正文 : doc.body;
|
||
if (typeof body === "string" && body.trim()) {
|
||
parts.push(
|
||
`<section class="artifact-block"><h4>正文</h4>${renderProseHtml(body)}</section>`,
|
||
);
|
||
} else if (body && typeof body === "object") {
|
||
const specialty = renderSpecialtyBodyHtml(body, doc.技能);
|
||
if (specialty) {
|
||
parts.push(specialty);
|
||
} else {
|
||
parts.push(
|
||
`<section class="artifact-block artifact-body-root"><h4>正文</h4>${renderStructuredValueHtml(body, 0)}</section>`,
|
||
);
|
||
}
|
||
}
|
||
|
||
// 自评/追问已挂询问卡时:产物内保留评分条,追问不重复展示
|
||
const hideAsk = opts.hideAskSidecar === true;
|
||
const scoreHtml = renderSelfScoreHtml(doc.自评);
|
||
if (scoreHtml) parts.push(scoreHtml);
|
||
|
||
if (!hideAsk) {
|
||
const probeHtml = renderProbeHtml(doc.追问);
|
||
if (probeHtml) parts.push(probeHtml);
|
||
|
||
const openQs = Array.isArray(doc.开放问题) ? doc.开放问题 : [];
|
||
if (openQs.length) {
|
||
parts.push(
|
||
`<section class="artifact-block"><h4>开放问题</h4><ul class="artifact-list">${openQs
|
||
.map((l) => `<li>${esc(String(l))}</li>`)
|
||
.join("")}</ul></section>`,
|
||
);
|
||
}
|
||
}
|
||
if (!parts.length) return null;
|
||
return `<div class="artifact-friendly artifact-context-fragment">${parts.join("")}</div>`;
|
||
}
|
||
|
||
/** 美学纲领等:顶层板块并排 mosaic,子项用瓷砖网格 */
|
||
function renderSpecialtyBodyHtml(body, skill) {
|
||
if (!body || typeof body !== "object" || Array.isArray(body)) return "";
|
||
const looksAesthetics =
|
||
body.设定逻辑 != null ||
|
||
body.交互范式 != null ||
|
||
body.美学纲领 != null ||
|
||
(typeof skill === "string" && skill.includes("美学"));
|
||
if (!looksAesthetics) return "";
|
||
|
||
const order = ["设定逻辑", "交互范式", "美学纲领"];
|
||
const used = new Set();
|
||
const parts = [];
|
||
for (const key of order) {
|
||
if (body[key] == null) continue;
|
||
used.add(key);
|
||
const wide = key === "美学纲领";
|
||
parts.push(
|
||
`<section class="af-panel${wide ? " af-panel-wide" : ""}"><h4>${esc(key)}</h4>${renderAestheticsNodeHtml(body[key], key, 0)}</section>`,
|
||
);
|
||
}
|
||
for (const [k, v] of Object.entries(body)) {
|
||
if (used.has(k) || v == null || v === "") continue;
|
||
parts.push(
|
||
`<section class="af-panel"><h4>${esc(k)}</h4>${renderStructuredValueHtml(v, 0)}</section>`,
|
||
);
|
||
}
|
||
return parts.length ? `<div class="af-mosaic">${parts.join("")}</div>` : "";
|
||
}
|
||
|
||
function parseCompleteness(v) {
|
||
if (v == null) return null;
|
||
if (typeof v === "number" && Number.isFinite(v)) {
|
||
if (v < 0 || v > 100) return null;
|
||
return v;
|
||
}
|
||
const s = String(v).trim();
|
||
if (!s) return null;
|
||
const withPct = s.match(/^(\d+(?:\.\d+)?)\s*%$/);
|
||
if (withPct) return Math.max(0, Math.min(100, Number(withPct[1])));
|
||
const bare = s.match(/^(\d+(?:\.\d+)?)$/);
|
||
if (bare) {
|
||
const n = Number(bare[1]);
|
||
if (n >= 0 && n <= 100) return n;
|
||
}
|
||
return null;
|
||
}
|
||
|
||
function pctTone(pct) {
|
||
if (pct < 40) return "low";
|
||
if (pct < 70) return "mid";
|
||
return "high";
|
||
}
|
||
|
||
/** 统一百分比条:对齐 status-dot / badge 色阶 */
|
||
function renderPctMeterHtml(pct, label = "完备度") {
|
||
if (pct == null || !Number.isFinite(pct)) return "";
|
||
const n = Math.max(0, Math.min(100, Math.round(pct)));
|
||
const tone = pctTone(n);
|
||
return `<div class="pct-meter tone-${tone}" role="meter" aria-valuenow="${n}" aria-valuemin="0" aria-valuemax="100" aria-label="${esc(label)} ${n}%">
|
||
<div class="pct-meter-head">
|
||
<span class="pct-meter-label">${esc(label)}</span>
|
||
<span class="pct-meter-value">${n}%</span>
|
||
</div>
|
||
<div class="pct-meter-track"><i style="width:${n}%"></i></div>
|
||
</div>`;
|
||
}
|
||
|
||
/** 瓷砖用迷你百分比(数字 + 细条),省纵向空间 */
|
||
function renderMiniPctHtml(pct) {
|
||
if (pct == null || !Number.isFinite(pct)) return "";
|
||
const n = Math.max(0, Math.min(100, Math.round(pct)));
|
||
return `<span class="pct-mini tone-${pctTone(n)}" title="完备度 ${n}%"><b>${n}</b><i style="--p:${n}%"></i></span>`;
|
||
}
|
||
|
||
function extractNodePct(value) {
|
||
if (!value || typeof value !== "object") return null;
|
||
return parseCompleteness(value.完备度 ?? value.分数);
|
||
}
|
||
|
||
/** 短诊断块(结论/完备度/已知待探)适合瓷砖;散文对象必须通栏 */
|
||
function isDiagnosticNode(value) {
|
||
return (
|
||
value != null &&
|
||
typeof value === "object" &&
|
||
!Array.isArray(value) &&
|
||
(value.结论 != null ||
|
||
value.完备度 != null ||
|
||
value.已知 != null ||
|
||
value.待探 != null)
|
||
);
|
||
}
|
||
|
||
function isProseHeavyObject(value) {
|
||
if (!value || typeof value !== "object" || Array.isArray(value)) return false;
|
||
if (isDiagnosticNode(value)) return false;
|
||
const vals = Object.values(value).filter((x) => x != null && x !== "");
|
||
if (!vals.length) return false;
|
||
let prose = 0;
|
||
for (const x of vals) {
|
||
if (typeof x === "string" && (x.length > 36 || x.includes("\n"))) prose += 1;
|
||
else if (Array.isArray(x)) prose += 1;
|
||
else if (typeof x === "object" && !isDiagnosticNode(x)) prose += 1;
|
||
}
|
||
return prose >= Math.ceil(vals.length / 2);
|
||
}
|
||
|
||
function renderAfTile(title, value) {
|
||
const pct = extractNodePct(value);
|
||
const mini = pct != null ? renderMiniPctHtml(pct) : "";
|
||
let body = "";
|
||
if (value == null) {
|
||
body = `<span class="ws-muted">—</span>`;
|
||
} else if (typeof value !== "object") {
|
||
body = `<p class="af-tile-text">${esc(clampPreviewText(String(value), 100))}</p>`;
|
||
} else if (value.结论 != null || value.完备度 != null) {
|
||
const text = value.结论 != null ? String(value.结论) : "";
|
||
const basis = value.依据 ? `<span class="af-tile-sub">${esc(clampPreviewText(String(value.依据), 60))}</span>` : "";
|
||
body = `${text ? `<p class="af-tile-text">${esc(clampPreviewText(text, 90))}</p>` : ""}${basis}`;
|
||
} else if (value.已知 != null || value.待探 != null) {
|
||
body = `${value.已知 != null ? `<p class="af-tile-text">${esc(clampPreviewText(String(value.已知), 80))}</p>` : ""}
|
||
${value.待探 != null && String(value.待探) !== "无" ? `<p class="af-tile-sub pending">${esc(clampPreviewText(`待探:${value.待探}`, 60))}</p>` : ""}`;
|
||
} else {
|
||
// 非诊断对象不应进瓷砖;通栏回退
|
||
return `<div class="af-group af-group-wide"><div class="af-group-title">${esc(title)}${mini}</div>${renderAestheticsNodeHtml(value, title, 1)}</div>`;
|
||
}
|
||
return `<article class="af-tile"><header class="af-tile-head"><span class="af-tile-name">${esc(title)}</span>${mini}</header>${body}</article>`;
|
||
}
|
||
|
||
function isPctFieldKey(key) {
|
||
if (!key) return false;
|
||
return /完备度|分数|覆盖度|充分度|克制度|承重度|可维护|必要性|属性妥当|格式准确|契约符合|同真相|可开玩|完整度|进度/.test(
|
||
String(key),
|
||
);
|
||
}
|
||
|
||
function renderScalarOrPctHtml(value, keyHint) {
|
||
if (typeof value === "boolean") {
|
||
return `<span class="artifact-scalar">${value ? "是" : "否"}</span>`;
|
||
}
|
||
if (isPctFieldKey(keyHint) || (typeof value === "string" && /^\d+(\.\d+)?\s*%$/.test(value.trim()))) {
|
||
const pct = parseCompleteness(value);
|
||
if (pct != null) return renderPctMeterHtml(pct, keyHint || "完备度");
|
||
}
|
||
if (typeof value === "number" && isPctFieldKey(keyHint)) {
|
||
const pct = parseCompleteness(value);
|
||
if (pct != null) return renderPctMeterHtml(pct, keyHint);
|
||
}
|
||
if (typeof value === "string" || typeof value === "number") {
|
||
return renderProseHtml(String(value));
|
||
}
|
||
return `<span class="artifact-scalar">${esc(String(value))}</span>`;
|
||
}
|
||
|
||
function renderAestheticsNodeHtml(value, keyHint, depth) {
|
||
if (value == null || value === "") return `<span class="ws-muted">—</span>`;
|
||
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {
|
||
return renderScalarOrPctHtml(value, keyHint);
|
||
}
|
||
if (Array.isArray(value)) return renderStructuredValueHtml(value, depth);
|
||
|
||
// 单点诊断:由上层 af-tile 承载;此处给非网格调用兜底
|
||
if (value.结论 != null || value.完备度 != null) {
|
||
return renderAfTile(keyHint || "项", value);
|
||
}
|
||
if (value.已知 != null || value.待探 != null) {
|
||
return renderAfTile(keyHint || "项", value);
|
||
}
|
||
|
||
// 美学纲领:体验内核通栏;诊断块可瓷砖;呈现要点等散文块通栏堆叠
|
||
if (keyHint === "美学纲领" || value.体验内核 != null) {
|
||
const parts = [];
|
||
if (value.体验内核 != null) {
|
||
parts.push(
|
||
`<div class="artifact-kernel qcard-assessment"><div class="artifact-aside-label">体验内核</div>${renderProseHtml(String(value.体验内核))}</div>`,
|
||
);
|
||
}
|
||
const rest = { ...value };
|
||
delete rest.体验内核;
|
||
const restEntries = Object.entries(rest).filter(([, v]) => v != null && v !== "");
|
||
if (restEntries.length) {
|
||
const tiles = restEntries.filter(([, v]) => isDiagnosticNode(v));
|
||
const prose = restEntries.filter(([, v]) => !isDiagnosticNode(v));
|
||
if (tiles.length) {
|
||
parts.push(
|
||
`<div class="af-tile-grid">${tiles.map(([k, v]) => renderAfTile(k, v)).join("")}</div>`,
|
||
);
|
||
}
|
||
if (prose.length) {
|
||
parts.push(
|
||
`<div class="af-stack">${prose
|
||
.map(([k, v]) => {
|
||
if (v && typeof v === "object" && !Array.isArray(v)) {
|
||
return `<div class="af-group af-group-wide"><div class="af-group-title">${esc(k)}</div>${renderAestheticsNodeHtml(v, k, depth + 1)}</div>`;
|
||
}
|
||
return `<div class="af-group af-group-wide"><div class="af-group-title">${esc(k)}</div>${renderScalarOrPctHtml(v, k)}</div>`;
|
||
})
|
||
.join("")}</div>`,
|
||
);
|
||
}
|
||
}
|
||
return parts.join("");
|
||
}
|
||
|
||
// 呈现要点等:子键多为长文 → 通栏 KV(标签在上)
|
||
if (keyHint === "呈现要点" || isProseHeavyObject(value)) {
|
||
return renderObjectKvHtml(value, depth);
|
||
}
|
||
|
||
if (depth > 4) return renderStructuredValueHtml(value, depth);
|
||
|
||
const entries = Object.entries(value).filter(([, v]) => v != null && v !== "");
|
||
if (!entries.length) return `<span class="ws-muted">(空)</span>`;
|
||
|
||
// 仅同构短诊断块进瓷砖网格
|
||
const allDiagnostic = entries.every(([, v]) => isDiagnosticNode(v));
|
||
if (allDiagnostic && entries.length >= 2) {
|
||
return `<div class="af-tile-grid">${entries.map(([k, v]) => renderAfTile(k, v)).join("")}</div>`;
|
||
}
|
||
|
||
// 混合:分组标题 + 内部再网格/kv(通栏)
|
||
const nestedGroups = entries.filter(
|
||
([, v]) =>
|
||
v &&
|
||
typeof v === "object" &&
|
||
!Array.isArray(v) &&
|
||
!isDiagnosticNode(v),
|
||
);
|
||
if (nestedGroups.length >= 1 && depth < 3) {
|
||
return `<div class="af-stack">${entries
|
||
.map(([k, v]) => {
|
||
if (isDiagnosticNode(v)) {
|
||
return renderAfTile(k, v);
|
||
}
|
||
if (v && typeof v === "object" && !Array.isArray(v)) {
|
||
return `<div class="af-group af-group-wide"><div class="af-group-title">${esc(k)}</div>${renderAestheticsNodeHtml(v, k, depth + 1)}</div>`;
|
||
}
|
||
return `<div class="af-group af-group-wide"><div class="af-group-title">${esc(k)}</div>${renderScalarOrPctHtml(v, k)}</div>`;
|
||
})
|
||
.join("")}</div>`;
|
||
}
|
||
|
||
const allLeaf = entries.every(
|
||
([, v]) => v == null || typeof v !== "object" || Array.isArray(v),
|
||
);
|
||
if (allLeaf) {
|
||
return renderObjectKvHtml(value, depth);
|
||
}
|
||
return renderObjectKvHtml(value, depth);
|
||
}
|
||
|
||
function renderSelfScoreHtml(自评) {
|
||
if (!自评 || typeof 自评 !== "object") return "";
|
||
const dims = Array.isArray(自评.维度) ? 自评.维度 : [];
|
||
const bars = dims
|
||
.map((d) => {
|
||
if (!d || typeof d !== "object") return "";
|
||
const name = d.名 || d.维度 || d.name || "?";
|
||
const pct = parseCompleteness(d.分数);
|
||
const note = d.说明
|
||
? `<p class="artifact-score-note">${esc(clampPreviewText(String(d.说明), 80))}</p>`
|
||
: "";
|
||
if (pct == null) {
|
||
return `<div class="artifact-score"><div class="pct-meter-head"><span class="pct-meter-label">${esc(String(name))}</span><span class="ws-muted">未评分</span></div>${note}</div>`;
|
||
}
|
||
return `<div class="artifact-score">${renderPctMeterHtml(pct, String(name))}${note}</div>`;
|
||
})
|
||
.filter(Boolean);
|
||
let weak = "";
|
||
if (自评.薄弱点) {
|
||
weak = `<p class="artifact-weak"><span class="ws-badge ws-badge-warn">薄弱点</span> ${esc(String(自评.薄弱点))}</p>`;
|
||
}
|
||
if (!bars.length && !weak) return "";
|
||
return `<section class="artifact-block artifact-scores-block"><h4>自评</h4><div class="artifact-scores af-score-grid">${bars.join("")}</div>${weak}</section>`;
|
||
}
|
||
|
||
function renderProbeHtml(追问) {
|
||
if (!追问 || typeof 追问 !== "object") return "";
|
||
const qs = Array.isArray(追问.题目) ? 追问.题目 : [];
|
||
const cards = [];
|
||
if (追问.导语) {
|
||
cards.push(`<p class="artifact-probe-lead">${esc(String(追问.导语))}</p>`);
|
||
}
|
||
qs.forEach((q, i) => {
|
||
if (!q || typeof q !== "object") return;
|
||
const letter = String.fromCharCode(65 + (i % 26));
|
||
const opts =
|
||
Array.isArray(q.建议选项) && q.建议选项.length
|
||
? `<ul class="qcard-options artifact-probe-opts">${q.建议选项
|
||
.map((o, j) => {
|
||
const L = String.fromCharCode(65 + (j % 26));
|
||
return `<li class="qcard-opt"><span class="qcard-letter" aria-hidden="true">${L}</span><span class="qcard-label">${esc(String(o))}</span></li>`;
|
||
})
|
||
.join("")}</ul>`
|
||
: "";
|
||
const ex = q.示例 ? `<p class="qcard-optional-note">示例:${esc(String(q.示例))}</p>` : "";
|
||
cards.push(
|
||
`<div class="artifact-probe-q"><div class="qcard-prompt"><span class="artifact-q-idx">${letter}</span>${esc(String(q.问 || "?"))}</div>${opts}${ex}</div>`,
|
||
);
|
||
});
|
||
if (!cards.length) return "";
|
||
return `<section class="artifact-block artifact-probe-block"><h4>追问</h4>${cards.join("")}</section>`;
|
||
}
|
||
|
||
function renderContextOrderHtml(doc) {
|
||
if (!Array.isArray(doc.slots) || !doc.slots.length) return null;
|
||
const parts = [];
|
||
if (doc.brief) {
|
||
parts.push(
|
||
`<section class="ws-section ws-headline"><h4>概要</h4><p>${esc(String(doc.brief))}</p></section>`,
|
||
);
|
||
}
|
||
for (const slot of doc.slots) {
|
||
if (!slot || typeof slot !== "object") continue;
|
||
const title = slot.label || slot.ref || "槽";
|
||
const inserts = Array.isArray(slot.inserts) ? slot.inserts : [];
|
||
if (!inserts.length && Array.isArray(slot.order)) {
|
||
// 扁平序:直接是条目列表
|
||
const rows = slot.order
|
||
.map((i, idx) => renderContextInsertRow(i, idx))
|
||
.filter(Boolean);
|
||
if (rows.length) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>${esc(String(title))}</h4><ol class="artifact-order-list">${rows.join("")}</ol></section>`,
|
||
);
|
||
}
|
||
continue;
|
||
}
|
||
const rows = inserts
|
||
.slice()
|
||
.sort((a, b) => (Number(a?.order) || 0) - (Number(b?.order) || 0))
|
||
.map((i, idx) => renderContextInsertRow(i, idx))
|
||
.filter(Boolean);
|
||
if (rows.length) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>${esc(String(title))}</h4><ol class="artifact-order-list">${rows.join("")}</ol></section>`,
|
||
);
|
||
}
|
||
}
|
||
// 顶层扁平 slots 即 inserts
|
||
if (!parts.length && doc.slots.every((s) => s && (s.ref || s.anchor != null))) {
|
||
const rows = doc.slots.map((i, idx) => renderContextInsertRow(i, idx)).filter(Boolean);
|
||
if (rows.length) {
|
||
parts.push(
|
||
`<section class="ws-section"><h4>投影序</h4><ol class="artifact-order-list">${rows.join("")}</ol></section>`,
|
||
);
|
||
}
|
||
}
|
||
if (!parts.length) return null;
|
||
return `<div class="artifact-friendly artifact-context-order">${parts.join("")}</div>`;
|
||
}
|
||
|
||
function renderContextInsertRow(item, idx) {
|
||
if (item == null) return "";
|
||
if (typeof item !== "object") {
|
||
return `<li><span class="artifact-order-idx">${idx + 1}</span> ${esc(String(item))}</li>`;
|
||
}
|
||
const isHistory = item.ref === "对话.历史" || item.ref === "history";
|
||
const anchor =
|
||
item.anchor === "post_history" || item.anchor === "历史后"
|
||
? "历史后"
|
||
: item.anchor === "pre_history" || item.anchor === "历史前"
|
||
? "历史前"
|
||
: item.anchor
|
||
? String(item.anchor)
|
||
: "";
|
||
const proj =
|
||
item.projection && item.projection !== "full" ? String(item.projection) : "";
|
||
const note = item.note ? String(item.note) : "";
|
||
const ref = item.ref || item.label || "?";
|
||
const meta = [anchor, proj].filter(Boolean).map((t) => `<span class="artifact-chip muted">${esc(t)}</span>`).join("");
|
||
return `<li class="${isHistory ? "is-history" : ""}"><span class="artifact-order-idx">${item.order ?? idx + 1}</span><span class="artifact-order-ref">${esc(String(ref))}</span>${meta}${note ? `<span class="ws-muted"> — ${esc(note)}</span>` : ""}</li>`;
|
||
}
|
||
|
||
function renderStructuredDocHtml(doc) {
|
||
if (Array.isArray(doc)) {
|
||
return `<div class="artifact-friendly">${renderStructuredValueHtml(doc, 0)}</div>`;
|
||
}
|
||
const parts = [];
|
||
if (typeof doc.brief === "string" && doc.brief.trim()) {
|
||
parts.push(
|
||
`<section class="ws-section ws-headline"><h4>概要</h4><p>${esc(doc.brief)}</p></section>`,
|
||
);
|
||
}
|
||
const body = { ...doc };
|
||
delete body.brief;
|
||
delete body.schema;
|
||
if (body.自评) {
|
||
const score = renderSelfScoreHtml(body.自评);
|
||
delete body.自评;
|
||
const rest = renderObjectSectionsHtml(body, 0);
|
||
if (rest) parts.push(rest);
|
||
if (score) parts.push(score);
|
||
} else {
|
||
const rest = renderObjectSectionsHtml(body, 0);
|
||
if (rest) parts.push(rest);
|
||
}
|
||
if (!parts.length) {
|
||
parts.push(renderStructuredValueHtml(doc, 0));
|
||
}
|
||
return `<div class="artifact-friendly">${parts.join("")}</div>`;
|
||
}
|
||
|
||
function renderObjectSectionsHtml(obj, depth) {
|
||
if (!obj || typeof obj !== "object" || Array.isArray(obj)) return "";
|
||
const entries = Object.entries(obj).filter(
|
||
([k, v]) => !ARTIFACT_SKIP_KEYS.has(k) && v != null && v !== "",
|
||
);
|
||
if (!entries.length) return "";
|
||
// 浅层:每键一节;深层:kv
|
||
if (depth === 0) {
|
||
return entries
|
||
.map(([k, v]) => {
|
||
if (k === "自评") return renderSelfScoreHtml(v);
|
||
if (k === "追问") return renderProbeHtml(v);
|
||
return `<section class="ws-section"><h4>${esc(k)}</h4>${renderStructuredValueHtml(v, depth + 1)}</section>`;
|
||
})
|
||
.join("");
|
||
}
|
||
return renderStructuredValueHtml(obj, depth);
|
||
}
|
||
|
||
function renderStructuredValueHtml(value, depth) {
|
||
if (value == null || value === "") return `<span class="ws-muted">—</span>`;
|
||
if (typeof value === "string") return renderProseHtml(value);
|
||
if (typeof value === "number" || typeof value === "boolean") {
|
||
return `<span class="artifact-scalar">${esc(String(value))}</span>`;
|
||
}
|
||
if (Array.isArray(value)) {
|
||
if (!value.length) return `<span class="ws-muted">(空)</span>`;
|
||
const allScalar = value.every(
|
||
(v) => v == null || ["string", "number", "boolean"].includes(typeof v),
|
||
);
|
||
if (allScalar) {
|
||
return `<ul class="artifact-list">${value
|
||
.map((v) => `<li>${esc(String(v))}</li>`)
|
||
.join("")}</ul>`;
|
||
}
|
||
return `<div class="artifact-cards af-tile-grid">${value
|
||
.map((item, i) => renderArrayItemCard(item, i, depth))
|
||
.join("")}</div>`;
|
||
}
|
||
if (typeof value === "object") {
|
||
if (depth > 5) {
|
||
return `<details class="artifact-raw nested"><summary>嵌套对象</summary><pre class="json-pretty"><code>${highlightJson(JSON.stringify(value, null, 2))}</code></pre></details>`;
|
||
}
|
||
return renderObjectKvHtml(value, depth);
|
||
}
|
||
return `<span class="artifact-scalar">${esc(String(value))}</span>`;
|
||
}
|
||
|
||
function renderProseHtml(text) {
|
||
const t = String(text);
|
||
if (!t.trim()) return `<span class="ws-muted">—</span>`;
|
||
if (t.includes("\n") || t.length > 160) {
|
||
return `<div class="artifact-prose">${esc(t).replace(/\n/g, "<br>")}</div>`;
|
||
}
|
||
return `<p class="artifact-inline">${esc(t)}</p>`;
|
||
}
|
||
|
||
function pickArtifactTitle(obj, fallbackIndex) {
|
||
if (!obj || typeof obj !== "object") return `#${fallbackIndex + 1}`;
|
||
for (const k of ARTIFACT_TITLE_KEYS) {
|
||
if (obj[k] != null && String(obj[k]).trim()) return String(obj[k]);
|
||
}
|
||
const first = Object.keys(obj)[0];
|
||
if (first && typeof obj[first] !== "object") return `${first}:${obj[first]}`;
|
||
return `#${fallbackIndex + 1}`;
|
||
}
|
||
|
||
function renderArrayItemCard(item, index, depth) {
|
||
if (item == null || typeof item !== "object") {
|
||
return `<div class="artifact-card"><div class="artifact-card-body">${esc(String(item))}</div></div>`;
|
||
}
|
||
const title = pickArtifactTitle(item, index);
|
||
const rest = { ...item };
|
||
for (const k of ARTIFACT_TITLE_KEYS) delete rest[k];
|
||
// 保留标题键若还有其它信息价值:名/类型等同屏展示
|
||
const keepMeta = {};
|
||
for (const k of ["类型", "顺序", "生命周期", "填充方", "内容形态", "用途", "通道"]) {
|
||
if (item[k] != null && item[k] !== "") keepMeta[k] = item[k];
|
||
}
|
||
const metaBits = Object.entries(keepMeta)
|
||
.map(([k, v]) => {
|
||
if (typeof v === "object") return "";
|
||
return `<span class="artifact-chip muted">${esc(k)}:${esc(String(v))}</span>`;
|
||
})
|
||
.filter(Boolean)
|
||
.join("");
|
||
for (const k of Object.keys(keepMeta)) delete rest[k];
|
||
const body = Object.keys(rest).length
|
||
? renderObjectKvHtml(rest, depth + 1)
|
||
: "";
|
||
return `<div class="artifact-card"><div class="artifact-card-title">${esc(title)}</div>${metaBits ? `<div class="artifact-chip-row">${metaBits}</div>` : ""}${body}</div>`;
|
||
}
|
||
|
||
function renderObjectKvHtml(obj, depth) {
|
||
const entries = Object.entries(obj).filter(
|
||
([k, v]) => !ARTIFACT_SKIP_KEYS.has(k) && v != null && v !== "",
|
||
);
|
||
if (!entries.length) return `<span class="ws-muted">(空)</span>`;
|
||
const rows = entries
|
||
.map(([k, v]) => {
|
||
const isComplex = v != null && typeof v === "object";
|
||
if (!isComplex) {
|
||
const leaf = renderScalarOrPctHtml(v, k);
|
||
// 百分比条自带标签,不再并排挤「完备度」键名
|
||
if (isPctFieldKey(k) && parseCompleteness(v) != null) {
|
||
return `<div class="artifact-kv-row complex"><div class="artifact-kv-val">${leaf}</div></div>`;
|
||
}
|
||
// 长文:标签在上,吃满横向宽度(避免窄列硬折行)
|
||
const longProse =
|
||
typeof v === "string" && (v.length > 40 || v.includes("\n"));
|
||
if (longProse) {
|
||
return `<div class="artifact-kv-row complex"><div class="artifact-kv-key">${esc(k)}</div><div class="artifact-kv-val">${leaf}</div></div>`;
|
||
}
|
||
return `<div class="artifact-kv-row"><div class="artifact-kv-key">${esc(k)}</div><div class="artifact-kv-val">${leaf}</div></div>`;
|
||
}
|
||
return `<div class="artifact-kv-row complex"><div class="artifact-kv-key">${esc(k)}</div><div class="artifact-kv-val">${renderStructuredValueHtml(v, depth + 1)}</div></div>`;
|
||
})
|
||
.join("");
|
||
return `<div class="artifact-kv">${rows}</div>`;
|
||
}
|
||
|
||
function isSettlementLike(doc) {
|
||
const keys = ["player_action", "visible_now", "resolved", "npc_moves", "variable_changes"];
|
||
let hits = 0;
|
||
for (const k of keys) if (k in doc) hits += 1;
|
||
return hits >= 2;
|
||
}
|
||
|
||
function renderSettlementSectionsHtml(doc) {
|
||
const sections = [];
|
||
const push = (title, lines) => {
|
||
if (!lines || !lines.length) return;
|
||
sections.push(
|
||
`<section class="ws-section"><h4>${esc(title)}</h4><ul class="artifact-list">${lines
|
||
.map((l) => `<li>${esc(String(l))}</li>`)
|
||
.join("")}</ul></section>`,
|
||
);
|
||
};
|
||
const pushHtml = (title, html) => {
|
||
if (!html) return;
|
||
sections.push(`<section class="ws-section"><h4>${esc(title)}</h4>${html}</section>`);
|
||
};
|
||
if (doc.player_action) push("玩家行动", [doc.player_action]);
|
||
if (Array.isArray(doc.resolved) && doc.resolved.length) push("已落地", doc.resolved);
|
||
if (doc.visible_now) push("可见现状", [doc.visible_now]);
|
||
if (Array.isArray(doc.npc_moves) && doc.npc_moves.length) {
|
||
pushHtml("角色动作", renderStructuredValueHtml(doc.npc_moves, 0));
|
||
}
|
||
if (Array.isArray(doc.variable_changes) && doc.variable_changes.length) {
|
||
pushHtml("变量变更", renderStructuredValueHtml(doc.variable_changes, 0));
|
||
}
|
||
if (doc.tone_hint) push("语气", [doc.tone_hint]);
|
||
if (Array.isArray(doc.do_not_say) && doc.do_not_say.length) {
|
||
push("勿写入正文", doc.do_not_say);
|
||
}
|
||
if (Array.isArray(doc.suggested_actions) && doc.suggested_actions.length) {
|
||
push("建议行动", doc.suggested_actions);
|
||
}
|
||
if (!sections.length) return null;
|
||
return `<div class="artifact-friendly artifact-settlement">${sections.join("")}</div>`;
|
||
}
|
||
|
||
function renderVariableDesignHtml(doc) {
|
||
const parts = [];
|
||
if (doc.brief) {
|
||
parts.push(
|
||
`<section class="ws-section ws-headline"><h4>概要</h4><p>${esc(String(doc.brief))}</p></section>`,
|
||
);
|
||
}
|
||
const body = doc.正文 && typeof doc.正文 === "object" ? doc.正文 : doc;
|
||
const keys = [
|
||
"依据的体验",
|
||
"真值",
|
||
"Data映射索引",
|
||
"维护语句约定",
|
||
"side_effects",
|
||
"旁观汇总意图",
|
||
"不立变量的理由",
|
||
];
|
||
const used = new Set();
|
||
for (const k of keys) {
|
||
if (body[k] == null) continue;
|
||
used.add(k);
|
||
parts.push(
|
||
`<section class="ws-section"><h4>${esc(k)}</h4>${renderStructuredValueHtml(body[k], 0)}</section>`,
|
||
);
|
||
}
|
||
if (body === doc) {
|
||
for (const [k, v] of Object.entries(doc)) {
|
||
if (used.has(k) || ARTIFACT_SKIP_KEYS.has(k) || k === "brief" || k === "正文") continue;
|
||
if (v == null || v === "") continue;
|
||
if (k === "自评") {
|
||
const s = renderSelfScoreHtml(v);
|
||
if (s) parts.push(s);
|
||
continue;
|
||
}
|
||
parts.push(
|
||
`<section class="ws-section"><h4>${esc(k)}</h4>${renderStructuredValueHtml(v, 0)}</section>`,
|
||
);
|
||
}
|
||
} else {
|
||
for (const [k, v] of Object.entries(body)) {
|
||
if (used.has(k) || v == null || v === "") continue;
|
||
parts.push(
|
||
`<section class="ws-section"><h4>${esc(k)}</h4>${renderStructuredValueHtml(v, 0)}</section>`,
|
||
);
|
||
}
|
||
}
|
||
if (!parts.length) return null;
|
||
return `<div class="artifact-friendly artifact-variable-design">${parts.join("")}</div>`;
|
||
}
|
||
|
||
/** 极简 JSON 着色(仅 key / string / 其它) */
|
||
function highlightJson(pretty) {
|
||
return pretty
|
||
.split("\n")
|
||
.map((line) => {
|
||
const m = /^(\s*)("(?:\\.|[^"\\])*")(\s*:\s*)(.*)$/.exec(line);
|
||
if (m) {
|
||
const [, indent, key, colon, rest] = m;
|
||
let valueHtml = esc(rest);
|
||
if (/^"/.test(rest.trim())) {
|
||
valueHtml = `<span class="json-str">${esc(rest)}</span>`;
|
||
} else if (/^(true|false|null)\b/.test(rest.trim())) {
|
||
valueHtml = `<span class="json-lit">${esc(rest)}</span>`;
|
||
} else if (/^-?\d/.test(rest.trim())) {
|
||
valueHtml = `<span class="json-num">${esc(rest)}</span>`;
|
||
}
|
||
return `${indent}<span class="json-key">${esc(key)}</span>${esc(colon)}${valueHtml}`;
|
||
}
|
||
return esc(line);
|
||
})
|
||
.join("\n");
|
||
}
|
||
|
||
function renderCreationFlowView(flowView) {
|
||
if (!flowView) return "";
|
||
if (flowView.parseError) {
|
||
return `<div class="review-parse-error" role="alert">
|
||
<div class="review-parse-error-title">流程无法解析</div>
|
||
<p>${esc(flowView.parseError)}</p>
|
||
<p class="review-parse-error-hint">需要 JSON:steps 数组,每步含 name(与可选 id)、depends_on、可选 params;可含 status=open|closed。</p>
|
||
</div>`;
|
||
}
|
||
if (!flowView.steps?.length) return "";
|
||
|
||
const brief = flowView.brief
|
||
? `<p class="flow-brief">${esc(flowView.brief)}</p>`
|
||
: "";
|
||
const statusLabel =
|
||
flowView.status === "open"
|
||
? "可继续追加"
|
||
: flowView.status === "closed"
|
||
? "已收口"
|
||
: "";
|
||
const statusHtml = statusLabel
|
||
? `<p class="flow-status">${esc(statusLabel)}</p>`
|
||
: "";
|
||
const rows = flowView.steps
|
||
.map((s) => {
|
||
const deps =
|
||
s.depends_on?.length > 0
|
||
? s.depends_on.map((d) => esc(d)).join("、")
|
||
: "无";
|
||
const occ =
|
||
s.occurrence && s.occurrence > 1
|
||
? `<span class="flow-occ">第 ${esc(String(s.occurrence))} 次</span>`
|
||
: s.repeatable
|
||
? `<span class="flow-occ">可反复</span>`
|
||
: "";
|
||
const nameLabel =
|
||
s.id && s.id !== s.name
|
||
? `${esc(s.name)} <span class="flow-id">(${esc(s.id)})</span>`
|
||
: esc(s.name);
|
||
const paramsText = formatFlowParams(s.params);
|
||
const paramsMissing =
|
||
s.paramsMissing?.length > 0
|
||
? `<span class="flow-params-missing">缺参:${esc(s.paramsMissing.join("、"))}</span>`
|
||
: "";
|
||
const paramsHtml = paramsText
|
||
? `<span class="flow-params">${esc(paramsText)}</span>`
|
||
: "";
|
||
return `<li class="flow-step">
|
||
<span class="flow-order">${esc(String(s.order))}</span>
|
||
<span class="flow-name">${nameLabel}${occ}</span>
|
||
${paramsHtml}
|
||
${paramsMissing}
|
||
<span class="flow-deps">依赖:${deps}</span>
|
||
</li>`;
|
||
})
|
||
.join("");
|
||
|
||
return `<section class="ws-section ws-creation-flow">
|
||
<h4>创作流程</h4>
|
||
${brief}
|
||
${statusHtml}
|
||
<ol class="flow-steps">${rows}</ol>
|
||
</section>`;
|
||
}
|
||
|
||
function formatFlowParams(params) {
|
||
if (!params || typeof params !== "object" || Array.isArray(params)) return "";
|
||
const parts = Object.entries(params)
|
||
.filter(([, v]) => v != null && String(v).trim() !== "")
|
||
.map(([k, v]) => `${k}=${typeof v === "string" ? v : JSON.stringify(v)}`);
|
||
return parts.length ? parts.join(" · ") : "";
|
||
}
|
||
|
||
function wireContextOrderEditor(root, sessionId) {
|
||
if (!root || !sessionId) return;
|
||
const post = (body) =>
|
||
fetch(`/api/sessions/${encodeURIComponent(sessionId)}/context-order`, {
|
||
method: "POST",
|
||
headers: { "Content-Type": "application/json" },
|
||
body: JSON.stringify(body),
|
||
})
|
||
.then(async (res) => {
|
||
const data = await res.json();
|
||
if (!res.ok) throw new Error(data.error || "编排失败");
|
||
window.dispatchEvent(new CustomEvent("wa:session-updated", { detail: data }));
|
||
})
|
||
.catch((err) => alert(err.message || String(err)));
|
||
|
||
root.querySelectorAll("[data-ctx-order]").forEach((el) => {
|
||
const action = el.getAttribute("data-ctx-order");
|
||
const row = el.closest(".ctx-order-row");
|
||
if (!row || !action) return;
|
||
const slotRef = row.getAttribute("data-slot-ref");
|
||
const index = Number(row.getAttribute("data-index"));
|
||
if (!slotRef || !Number.isFinite(index)) return;
|
||
|
||
if (el.tagName === "SELECT") {
|
||
el.addEventListener("change", () => {
|
||
void post({
|
||
action: "set_projection",
|
||
slotRef,
|
||
index,
|
||
projection: el.value,
|
||
});
|
||
});
|
||
return;
|
||
}
|
||
|
||
el.addEventListener("click", () => {
|
||
if (action === "move") {
|
||
const delta = Number(el.getAttribute("data-delta"));
|
||
if (delta !== 1 && delta !== -1) return;
|
||
void post({ action: "move", slotRef, index, delta });
|
||
return;
|
||
}
|
||
if (action === "set_anchor") {
|
||
const anchor = el.getAttribute("data-anchor");
|
||
if (anchor !== "pre_history" && anchor !== "post_history") return;
|
||
void post({ action: "set_anchor", slotRef, index, anchor });
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
function renderReviewFeedCard(review, opts = {}) {
|
||
const flowHtml = review.creationFlowView
|
||
? renderCreationFlowView(review.creationFlowView)
|
||
: "";
|
||
// 模块产物直接出产物卡;完整 Worker 集 / 流程才展开规格视图
|
||
const wsHint = `${review.summary || ""} ${review.workerId || ""}`;
|
||
const showFullWorkerSet =
|
||
Boolean(review.workerSetView) &&
|
||
/worker集|refine|worker-spec|游玩拓扑|细化终稿/i.test(wsHint);
|
||
let structured = "";
|
||
if (flowHtml) {
|
||
structured = flowHtml;
|
||
} else if (showFullWorkerSet && review.workerSetView) {
|
||
structured = renderWorkerSetUserView(review.workerSetView, {
|
||
editable: false,
|
||
compact: true,
|
||
omitFocusBody: true,
|
||
});
|
||
}
|
||
const artifactHtml = formatArtifactBodyHtml(review.body, {
|
||
defaultOpen: true,
|
||
hideAskSidecar: opts.hideAskSidecar === true,
|
||
});
|
||
const contextId = review.sourceMessageId || review.id || "";
|
||
const hasContext = review.contextTrace ? "1" : "0";
|
||
const label = displayWorkerLabel(review.workerId) || "产物";
|
||
|
||
return `
|
||
<article class="msg msg-assistant-row msg-review" data-review="1" data-message-id="${esc(contextId)}" data-can-edit="0" data-has-context="${hasContext}">
|
||
<div class="msg-bubble msg-review-bubble">
|
||
<header class="msg-head">
|
||
<div class="msg-head-main">
|
||
<span class="msg-tag">待验收</span>
|
||
<span class="msg-subtitle">${esc(label)}</span>
|
||
</div>
|
||
</header>
|
||
${structured ? `<div class="review-worker-set">${structured}</div>` : ""}
|
||
<section class="review-json-block">
|
||
${artifactHtml}
|
||
</section>
|
||
</div>
|
||
</article>`;
|
||
}
|
||
|
||
/** @deprecated 验收已在主对话;无侧栏面板 */
|
||
export function renderReviewPanel(_view, _handlers = {}) {}
|
||
|
||
export function renderAgentPanel(view, loading) {
|
||
wireRailChrome();
|
||
maybeSyncRail(view);
|
||
|
||
const focusEl = document.getElementById("agent-focus");
|
||
const traceEl = document.getElementById("tool-trace");
|
||
const timelineEl = document.getElementById("agent-timeline");
|
||
const badgeEl = document.getElementById("burst-badge");
|
||
if (!focusEl || !timelineEl) return;
|
||
|
||
const f = view.focus;
|
||
if (f) {
|
||
focusEl.innerHTML = `
|
||
<div class="agent-focus-who">${esc(f.actorLabel)}</div>
|
||
<div class="agent-focus-action">${esc(loading ? "处理中…" : f.action)}</div>
|
||
${f.detail ? `<div class="agent-focus-detail">${esc(f.detail)}</div>` : ""}`;
|
||
} else {
|
||
focusEl.innerHTML = `<div class="agent-focus-detail">待命</div>`;
|
||
}
|
||
|
||
if (badgeEl && view.burst) {
|
||
const show = view.burst.count > 0 || view.phase === "running";
|
||
badgeEl.hidden = !show;
|
||
badgeEl.textContent = `burst ${view.burst.count}/${view.burst.max}`;
|
||
}
|
||
|
||
if (traceEl) {
|
||
const trace = view.toolTrace ?? [];
|
||
if (!trace.length) {
|
||
traceEl.hidden = true;
|
||
traceEl.innerHTML = "";
|
||
} else {
|
||
traceEl.hidden = false;
|
||
traceEl.innerHTML = trace
|
||
.map(
|
||
(t) => `
|
||
<div class="tool-trace-item">
|
||
<span class="tool-trace-name">${esc(t.name)}</span>
|
||
<span style="float:right;color:var(--muted)">${fmtTime(t.at)}</span>
|
||
<div>${esc(t.summary || "—")}</div>
|
||
</div>`,
|
||
)
|
||
.join("");
|
||
}
|
||
}
|
||
|
||
const items = [];
|
||
for (const msg of view.messages ?? []) {
|
||
if (msg.role === "user") {
|
||
items.push({ kind: "user_input", title: "你", body: msg.text, at: msg.createdAt });
|
||
continue;
|
||
}
|
||
const kind = msg.kind ?? "system_info";
|
||
if (HIDE_KINDS.has(kind)) continue;
|
||
if (isSkillSelectionMessage(msg)) continue;
|
||
items.push({
|
||
kind,
|
||
title: msg.title ?? msgLabel(msg),
|
||
body: msgBody(msg, view).slice(0, 160),
|
||
at: msg.createdAt,
|
||
});
|
||
}
|
||
if (loading && f) {
|
||
const live = view.liveStream;
|
||
items.push({
|
||
kind: "pending",
|
||
title: live?.label ?? f.action,
|
||
body: [live?.thinking, live?.output].filter(Boolean).join("\n").slice(0, 200) || (f.detail ?? ""),
|
||
at: "",
|
||
});
|
||
}
|
||
if (!items.length) {
|
||
timelineEl.innerHTML = `<p class="timeline-empty">调度记录将出现在这里</p>`;
|
||
return;
|
||
}
|
||
timelineEl.innerHTML = items
|
||
.map(
|
||
(it) => `
|
||
<div class="timeline-item">
|
||
<strong>${esc(it.title)}</strong>
|
||
<span style="color:var(--muted);margin-left:6px">${fmtTime(it.at)}</span>
|
||
<div style="margin-top:2px;color:var(--muted)">${esc(it.body)}</div>
|
||
</div>`,
|
||
)
|
||
.join("");
|
||
timelineEl.scrollTop = timelineEl.scrollHeight;
|
||
}
|
||
|
||
export function renderMessageFeed(view, loading, handlers = {}) {
|
||
const feed = document.getElementById("message-feed");
|
||
if (!feed) return;
|
||
|
||
if (feed.querySelector(".msg.is-editing")) {
|
||
return;
|
||
}
|
||
|
||
const reviewingNow =
|
||
view.waitingReason?.kind === "review_artifact" && Boolean(view.reviewArtifact);
|
||
document.body.classList.toggle("is-reviewing", reviewingNow);
|
||
|
||
const intake =
|
||
view.waitingReason?.kind === "intake" && view.intake?.fields?.length;
|
||
const showIntakePanel = intake && hasUserMessages(view);
|
||
|
||
feed.innerHTML = "";
|
||
|
||
if (showIntakePanel) {
|
||
const box = document.createElement("div");
|
||
box.className = "intake-panel";
|
||
box.innerHTML = renderIntakePanel(view.intake, { variant: "feed" });
|
||
feed.appendChild(box);
|
||
}
|
||
|
||
const visible = (view.messages ?? []).filter((m) => shouldShowInFeed(m, view));
|
||
|
||
if (!visible.length && !loading) {
|
||
const reviewing =
|
||
view.waitingReason?.kind === "review_artifact" && view.reviewArtifact;
|
||
if (!reviewing) {
|
||
const p = document.createElement("p");
|
||
p.className = "empty";
|
||
if (view.lifecycleStage === "play") {
|
||
p.textContent = "游玩模式:Agent 将按 Worker 集调度,推进世界与叙事。";
|
||
} else if (view.uiPrompt) {
|
||
const recipeLine = view.selectedRecipe?.name
|
||
? `\n\n已选配方:${view.selectedRecipe.name}`
|
||
: view.recipes?.length
|
||
? "\n\n(请先在新建作品时选定配方)"
|
||
: "";
|
||
p.textContent = `${view.uiPrompt}${recipeLine}`;
|
||
p.classList.add("empty-intake");
|
||
} else if (view.waitingReason?.kind === "worker_questions") {
|
||
p.textContent = "在下方回答 Skill 的提问。";
|
||
} else if (intake) {
|
||
p.textContent = "在下方描述你想创作什么;Agent 会收成 Worker 集供你验收。";
|
||
} else {
|
||
p.textContent = "在下方继续对话。";
|
||
}
|
||
p.classList.add("empty-intake");
|
||
feed.appendChild(p);
|
||
return;
|
||
}
|
||
}
|
||
|
||
for (const msg of visible) {
|
||
const isUser = msg.role === "user";
|
||
const kind = msg.kind ?? (isUser ? "user_input" : "system_info");
|
||
const body = msgBody(msg, view);
|
||
const card = document.createElement("article");
|
||
card.className = `msg ${MSG_CLASS[kind] ?? "system"}${isUser ? " msg-user-row" : " msg-assistant-row"}`;
|
||
card.dataset.messageId = msg.id;
|
||
|
||
const label = msgLabel(msg);
|
||
const subtitle = (msg.title ?? "").trim();
|
||
const showSubtitle =
|
||
!isUser &&
|
||
kind !== "orchestrator_thinking" &&
|
||
subtitle.length > 0 &&
|
||
!label.includes(subtitle) &&
|
||
subtitle !== label;
|
||
const headInner = isUser
|
||
? `<span class="msg-time">${fmtTime(msg.createdAt)}</span>${renderMsgVariantBadge(msg)}`
|
||
: `<div class="msg-head-main">
|
||
<span class="msg-tag">${esc(label)}</span>
|
||
${showSubtitle ? `<span class="msg-subtitle">${esc(subtitle)}</span>` : ""}
|
||
</div>
|
||
${renderMsgVariantBadge(msg)}
|
||
<span class="msg-time">${fmtTime(msg.createdAt)}</span>`;
|
||
|
||
card.dataset.canEdit = canEditMessage(msg) ? "1" : "0";
|
||
card.dataset.hasContext = msg.contextTrace ? "1" : "0";
|
||
card.dataset.originalText = body;
|
||
|
||
card.innerHTML = `
|
||
<div class="msg-bubble">
|
||
${!isUser && kind === "worker_questions" ? `<div class="msg-questions-banner">需要你回答</div>` : ""}
|
||
${isUser ? "" : `<header class="msg-head">${headInner}</header>`}
|
||
${!isUser && msg.thinking ? renderThinkingBlock(msg.thinking) : ""}
|
||
<div class="msg-body">${
|
||
kind === "worker_questions"
|
||
? formatQuestionsHtml(body)
|
||
: kind === "worker_output"
|
||
? formatArtifactBodyHtml(body)
|
||
: esc(body)
|
||
}</div>
|
||
${isUser ? `<footer class="msg-foot">${headInner}</footer>` : ""}
|
||
</div>`;
|
||
feed.appendChild(card);
|
||
}
|
||
|
||
wireMessageFeedActions(feed, handlers);
|
||
wireMessageContextMenu(feed, handlers);
|
||
|
||
if (
|
||
view.waitingReason?.kind === "review_artifact" &&
|
||
view.reviewArtifact &&
|
||
!loading
|
||
) {
|
||
const wrap = document.createElement("div");
|
||
wrap.innerHTML = renderReviewFeedCard(view.reviewArtifact, {
|
||
hideAskSidecar: Boolean(getActiveQuestions(view)),
|
||
});
|
||
const card = wrap.firstElementChild;
|
||
if (card) feed.appendChild(card);
|
||
}
|
||
|
||
if (loading) {
|
||
const pending = document.createElement("article");
|
||
pending.className = "msg agent msg-assistant-row msg-pending";
|
||
pending.id = "msg-live-pending";
|
||
const live = view.liveStream;
|
||
const label = live?.label ?? view.focus?.action ?? "处理中";
|
||
pending.innerHTML = `
|
||
<div class="msg-bubble">
|
||
<header class="msg-head"><span class="msg-tag">${esc(label)}</span><span class="msg-live-indicator">流式输出中</span></header>
|
||
<div class="msg-body msg-live-body">${renderLiveStreamBody(live)}</div>
|
||
</div>`;
|
||
feed.appendChild(pending);
|
||
}
|
||
|
||
feed.scrollTop = feed.scrollHeight;
|
||
}
|
||
|
||
/** 轮询时仅更新流式 pending 卡片,避免整页重绘 */
|
||
export function updateLiveStreamPanel(view) {
|
||
const pending = document.getElementById("msg-live-pending");
|
||
if (!pending) return;
|
||
const body = pending.querySelector(".msg-live-body");
|
||
if (!body) return;
|
||
const live = view.liveStream;
|
||
const labelEl = pending.querySelector(".msg-tag");
|
||
if (labelEl && live?.label) labelEl.textContent = live.label;
|
||
body.innerHTML = renderLiveStreamBody(live);
|
||
const feed = document.getElementById("message-feed");
|
||
if (feed) feed.scrollTop = feed.scrollHeight;
|
||
}
|
||
|
||
export function renderBoardPanel(view) {
|
||
const panel = document.getElementById("board-panel");
|
||
if (!panel) return;
|
||
const board = view.boardPanel;
|
||
if (!board) {
|
||
panel.innerHTML = `<p class="empty-sm">尚无黑板条目。Worker 写入 tag 后会出现在这里。</p>`;
|
||
return;
|
||
}
|
||
|
||
const tagRow = (row, badge) => `
|
||
<li class="board-tag-item" data-board-tag="${esc(row.tag)}">
|
||
<div class="board-tag-head">
|
||
<code>${esc(row.tag)}</code>
|
||
<span class="board-badge">${badge}</span>
|
||
<button type="button" class="btn-sm board-edit-btn" data-edit-tag="${esc(row.tag)}" title="编辑">改</button>
|
||
</div>
|
||
<div class="board-tag-meta">${esc(row.source)} · ${esc(String(row.updatedAt).slice(0, 19))}</div>
|
||
<div class="board-tag-preview">${esc(row.preview)}</div>
|
||
</li>`;
|
||
|
||
const finals = (board.finals ?? []).map((r) => tagRow(r, "定稿")).join("");
|
||
const active = (board.active ?? []).map((r) => tagRow(r, "进行中")).join("");
|
||
|
||
panel.innerHTML = `
|
||
<div class="board-section">
|
||
<h4>定稿摘要(给下一 Worker)</h4>
|
||
${
|
||
board.brief
|
||
? `<pre class="board-brief">${esc(board.brief)}</pre>`
|
||
: `<p class="empty-sm">验收产物后生成。下一 Worker 会自动读到此处。</p>`
|
||
}
|
||
</div>
|
||
<div class="board-section">
|
||
<h4>终产物 tag ${board.finals?.length ? `(${board.finals.length})` : ""}</h4>
|
||
${finals ? `<ul class="board-tag-list">${finals}</ul>` : `<p class="empty-sm">暂无</p>`}
|
||
</div>
|
||
<div class="board-section">
|
||
<h4>当前活跃 tag ${board.active?.length ? `(${board.active.length})` : ""}</h4>
|
||
${active ? `<ul class="board-tag-list">${active}</ul>` : `<p class="empty-sm">暂无</p>`}
|
||
</div>
|
||
${
|
||
board.archivedCount
|
||
? `<p class="board-archived">已压缩归档 ${board.archivedCount} 个过程 tag(默认不进入后续 Worker 取数)</p>`
|
||
: ""
|
||
}
|
||
`;
|
||
|
||
panel.querySelectorAll("[data-edit-tag]").forEach((btn) => {
|
||
btn.addEventListener("click", () => {
|
||
const tag = btn.getAttribute("data-edit-tag");
|
||
if (!tag || !view.id) return;
|
||
const current =
|
||
[...(board.finals ?? []), ...(board.active ?? [])].find((r) => r.tag === tag)
|
||
?.preview ?? "";
|
||
const next = prompt(`编辑黑板「${tag}」\n(完整内容请从导出或后续增强编辑器查看;此处为预览级修改)`, current);
|
||
if (next == null) return;
|
||
void fetch(`/api/sessions/${encodeURIComponent(view.id)}/board`, {
|
||
method: "POST",
|
||
headers: { "Content-Type": "application/json" },
|
||
body: JSON.stringify({ tag, content: next }),
|
||
})
|
||
.then(async (res) => {
|
||
const data = await res.json();
|
||
if (!res.ok) throw new Error(data.error || "写入失败");
|
||
window.dispatchEvent(new CustomEvent("wa:session-updated", { detail: data }));
|
||
})
|
||
.catch((err) => alert(err.message));
|
||
});
|
||
});
|
||
}
|
||
|
||
export function renderWorkspace(view, loading, _onPickSkill, handlers = {}) {
|
||
renderLifecycle(view);
|
||
renderSkillPicker(view);
|
||
const qHost = document.getElementById("questions-card-host");
|
||
if (qHost) {
|
||
renderQuestionsCard(qHost, view, {
|
||
onSkipQuestions: () => handlers.onSkipQuestions?.(),
|
||
});
|
||
}
|
||
renderMessageFeed(view, loading, handlers);
|
||
renderAgentPanel(view, loading);
|
||
}
|
||
|
||
document.addEventListener("click", (e) => {
|
||
if (!e.target.closest("#msg-action-menu")) hideMsgMenu();
|
||
});
|
||
document.addEventListener("keydown", (e) => {
|
||
if (e.key === "Escape") hideMsgMenu();
|
||
});
|
||
document.addEventListener("scroll", hideMsgMenu, true);
|