#5 规则 DELETE + id:暴露 RuleView.id(PK);新增 DELETE /projects/{id}/rules/{rule_id} (项目/规则不存在→404,成功→204,按 (id,project_id) 限定);rule_repo 加 list_for_project/delete;RulesPage 每条加删除(乐观删+回滚+toast)。assemble 侧 RuleView(缓存前缀)不动,列表另立 RuleListItemView。 #7 codex 角色 relations:写侧本已持久化、读端点 _existing_characters 硬编码 []。 加 _relations_from_jsonb 解析 {name,kind,note},CodexPage 渲染关系 chip。 #8 角色入库幂等:SqlCharacterWriteRepo.create 改 (project_id,name) app 层 upsert—— 重复入库改更新而非插入;不加 UNIQUE/迁移(线上已有重复行会让约束迁移失败)。 #1 大纲卷过滤:GET /outline 支持可选 ?volume(无参=全部,向后兼容);OutlineEditor 加「查看:全部/卷N」筛选,与生成目标卷解耦。 H3/#9 文风回炉锚点:StyleDriftSegment 加 text(逐字命中段),style.md 指示审稿输出; 前端按内容锚点定位回炉目标(idx 仅排序),命中失败 → 提示「无法定位该段」而非 静默 no-op。style golden fixture 已重生成。 契约变更已 pnpm gen:api(RuleView.id / DELETE rules / outline ?volume)。无迁移 (alembic 无漂移)。门禁绿:ruff/mypy(210)/alembic/pytest 760 · 前端 tsc/lint/vitest 329。
124 lines
4.6 KiB
TypeScript
124 lines
4.6 KiB
TypeScript
// 文风纯逻辑:指纹归一(dims+evidence)、漂移归一(从 chapter_reviews.style)、
|
||
// 学文风/回炉请求体组装。纯逻辑,便于 node 环境单测(C3 扩 T4.3 / C4 扩 T4.2)。
|
||
|
||
import type {
|
||
ReviewHistoryItem,
|
||
StyleFingerprintResponse,
|
||
StyleLearnRequest,
|
||
RefineRequest,
|
||
} from "@/lib/api/types";
|
||
import type { StyleDriftReport, StyleDriftSegment } from "@/lib/review/sse";
|
||
|
||
export type { StyleDriftReport, StyleDriftSegment } from "@/lib/review/sse";
|
||
|
||
// ── 指纹(16 维 + 证据,UX §6.9)─────────────────────────────────
|
||
// 后端 dimensions: DimensionEntry[](每条 {name,value,evidence},强类型,替代弱类型 dict)。
|
||
export interface FingerprintDimension {
|
||
name: string;
|
||
value: string;
|
||
evidence: string[];
|
||
}
|
||
|
||
export interface Fingerprint {
|
||
dimensions: FingerprintDimension[];
|
||
version: number;
|
||
}
|
||
|
||
// 把 GET /style 响应映射成 Fingerprint。
|
||
// dimensions 数组顺序即维度顺序(身份);每条已携带 name/value/evidence。
|
||
export function normalizeFingerprint(
|
||
resp: StyleFingerprintResponse | undefined,
|
||
): Fingerprint | null {
|
||
if (!resp) return null;
|
||
const dimensions: FingerprintDimension[] = (resp.dimensions ?? []).map(
|
||
(d) => ({
|
||
name: d.name,
|
||
value: d.value,
|
||
evidence: d.evidence ?? [],
|
||
}),
|
||
);
|
||
return { dimensions, version: resp.version };
|
||
}
|
||
|
||
// ── 漂移(第四审,C4 扩 T4.2)────────────────────────────────────
|
||
// chapter_reviews.style = {score:int, segments:[{idx,score,label?}]}。
|
||
// 类型 StyleDriftReport/StyleDriftSegment 在 lib/review/sse.ts(reduce 复用),上面已 re-export。
|
||
|
||
function asInt(v: unknown, fallback = 0): number {
|
||
return typeof v === "number" && Number.isFinite(v) ? Math.round(v) : fallback;
|
||
}
|
||
|
||
function asOptionalString(v: unknown): string | null {
|
||
return typeof v === "string" ? v : null;
|
||
}
|
||
|
||
function asString(v: unknown): string {
|
||
return typeof v === "string" ? v : "";
|
||
}
|
||
|
||
// 把松散 style dict 收窄成漂移报告;缺失/非 dict → null(不渲染)。
|
||
export function normalizeStyleDrift(
|
||
item: ReviewHistoryItem | undefined,
|
||
): StyleDriftReport | null {
|
||
const raw = item?.style;
|
||
if (typeof raw !== "object" || raw === null) return null;
|
||
const dict = raw as Record<string, unknown>;
|
||
const segRaw = Array.isArray(dict["segments"]) ? dict["segments"] : [];
|
||
const segments: StyleDriftSegment[] = segRaw
|
||
.filter((s): s is Record<string, unknown> => typeof s === "object" && s !== null)
|
||
.map((s) => ({
|
||
idx: asInt(s["idx"]),
|
||
text: asString(s["text"]),
|
||
score: asInt(s["score"], 100),
|
||
label: asOptionalString(s["label"]),
|
||
}));
|
||
// score 缺省 100(无指纹降级态,对齐后端默认)。
|
||
return { score: asInt(dict["score"], 100), segments };
|
||
}
|
||
|
||
// 同 style SSE 事件 data 也用此收窄(reduceReview case "style" 复用)。
|
||
export function narrowStyleEvent(data: unknown): StyleDriftReport {
|
||
if (typeof data !== "object" || data === null) {
|
||
return { score: 100, segments: [] };
|
||
}
|
||
const dict = data as Record<string, unknown>;
|
||
const segRaw = Array.isArray(dict["segments"]) ? dict["segments"] : [];
|
||
const segments: StyleDriftSegment[] = segRaw
|
||
.filter((s): s is Record<string, unknown> => typeof s === "object" && s !== null)
|
||
.map((s) => ({
|
||
idx: asInt(s["idx"]),
|
||
text: asString(s["text"]),
|
||
score: asInt(s["score"], 100),
|
||
label: asOptionalString(s["label"]),
|
||
}));
|
||
return { score: asInt(dict["score"], 100), segments };
|
||
}
|
||
|
||
// ── 请求体组装 ──────────────────────────────────────────────────
|
||
export type StyleLearnMode = "create" | "update";
|
||
|
||
// 组装学文风请求体:去掉空白样本;mode 透传(首学/更新仅前端语义)。
|
||
export function buildLearnRequest(
|
||
samples: readonly string[],
|
||
mode: StyleLearnMode,
|
||
): StyleLearnRequest {
|
||
const cleaned = samples.map((s) => s.trim()).filter((s) => s.length > 0);
|
||
return { samples: cleaned, mode };
|
||
}
|
||
|
||
// 至少一条非空样本才可提交(对齐后端 min_length=1)。
|
||
export function hasUsableSamples(samples: readonly string[]): boolean {
|
||
return samples.some((s) => s.trim().length > 0);
|
||
}
|
||
|
||
// 组装回炉请求体(段去空白;空指令省略)。
|
||
export function buildRefineRequest(
|
||
segment: string,
|
||
instruction?: string | null,
|
||
): RefineRequest {
|
||
const body: RefineRequest = { segment: segment.trim() };
|
||
const trimmed = instruction?.trim();
|
||
if (trimmed) body.instruction = trimmed;
|
||
return body;
|
||
}
|