# 起因:上一轮的「现代化」基本不算现代化
用户指出「我说的是 webui 现代化」。回看上一轮,我交付的其实是**底层改进**:
圆角加大一档、自定义滚动条、焦点环、过渡、reduce-motion、令牌与可访问性。
这些都对,但**可见变化几乎只有圆角** —— 界面看起来还是老样子。
实测数据确认了「老」在哪:
text-xs(12px) 172 处 ← 被当正文用
text-[10px] 84 处
text-[11px] 68 处
text-[9px] 19 处 ← 现代显示器上基本读不了
text-sm(14px) 69 处
text-base(16px) 4 处
57 处 border-b + 21 处 border-r,其中 67 条是 border-gray-200 的硬灰线
阴影:全站共 10 处,且全是 Tailwind 系统默认档;
index.css 里 --shadow-1/2/3 三个语义令牌**定义了但零处使用**
所以真正的病因是三条:**字太小、层次为零、硬线切分**。
# 改动
## 1. 字号体系抬一档(tailwind.config.js)
不用 Tailwind 默认档,重定为:
3xs 11px(角标下限,取代 9/10px 魔法数字)
2xs 12px(元信息,取代 11px)
xs 13px(次要正文,原 12px —— 拿它当正文的地方自动变舒适)
sm 14px(正文)
base 15px
并把 171 处裸 px 类名(text-[9px]/[10px]/[11px])统一换成令牌 ——
顺带消除魔法数字。行高一起给:小档位 1.35/1.45,正文 1.55,
只放大字号不放行高会把密排列表顶得很难看。
## 2. 把层次接出来(原本是死代码)
tailwind.config.js 新增 boxShadow 映射 `--shadow-1/2/3` + 新增
`--shadow-panel`(横向偏移 + 大扩散,竖向几乎不偏移,否则全高面板像浮在半空)。
用于:列表面板(lg:shadow-panel,**同时去掉 border-r 硬线**)、
登录/初始化卡片(shadow-sm → shadow-2 + 去硬边框)、
地址自动补全下拉(shadow-lg → shadow-2)、窄屏滑入详情面板
(shadow-2xl → shadow-3 + 去 border-l)、主题分段控件的选中滑块。
深色下层次比浅色更难感知,所以 --shadow-panel 在深色里更实一些;
深色里靠边框分组几乎看不见,层次是**唯一**有效的分组手段。
## 3. 分隔线软化(改令牌而不是改 67 处类名)
`--c-gray-200` 浅色 229 231 235 → 234 236 241,深色 44 49 59 → 39 43 52。
改在令牌上,67 条边框 + 8 处底色一次性生效且不会漏。
**刻意没有一起调 gray-300**:它同时是滚动条滑块色,调淡会让滑块更难看见。
## 4. 配比放宽(列表行的呼吸感)
MailList:行内距 px-3 py-2.5 → px-3.5 py-3,列表 gap space-y-0.5 → space-y-1,
表头 py-3 → py-3.5。未读主题字重 medium → semibold,已读 gray-500 → gray-600。
## 5. 量出来的两个真实对比度缺陷(不是估算)
新增 `test/manual/modernization-verify.mjs`,用真实渲染做四条判据。
它量出浅色下两个 WCAG AA 不达标(阈值 4.5:1):
- 会话别名 `text-blue-500` 白底 3.68:1(别名在 mail list / thread / mailview
共 4 处,都是 11px 小字)→ 改 blue-600/700,达 5.17:1
- 时间戳 `text-gray-400` 压在选中行淡蓝底 `bg-blue-50` 上 4.44:1
第二个的**根因是调色板缺一档**:浅色下 `--c-gray-400` 与 `--c-gray-500`
完全相同(都是 107 114 128),于是「比次要文字再深一档的中间色」根本不存在,
时间戳无处可退。拉开 gray-500 → 90 98 112(5.65:1),并把 5 个列表组件的
行内元信息(19 处)从 gray-400 提到 gray-500。
# 验证
- typecheck 干净
- 前端全量 `npm test` EXIT=0(markdown-xss / narrow-layout / theme 30 /
background 15 / vitest 216)
- **真实渲染** `modernization-verify.mjs`:浅色 8/8、深色 8/8,判据含
最小字号 ≥ 11px(改造前 9px)、邮件正文 ≥ 14px、列表面板真有 box-shadow、
gray-200 是软化值、40 处正文对比度全部达标
# 我自己的三处错(都被这次的度量拦下)
1. **判据量错对象**:第一版拿「收件箱列表」要求 40% 元素 ≥13px,量出 39.7%
判失败 —— 而收件箱本质是元信息密集区,发件人/时间/别名本来就该小。
改成量真正该达标的**邮件正文**(≥14px)。
2. **探针忽略 alpha**:`parseRgb` 把 `rgba(239,246,255,0.4)` 的 alpha 丢掉当实色,
于是把淡蓝底当纯蓝算出 4.44:1 的假缺陷。改为按画家算法合成整条背景链。
3. **config 注释换算写错**:3xs 注释写 10px,0.6875rem 其实是 11px。
151 lines
5.3 KiB
TypeScript
151 lines
5.3 KiB
TypeScript
import type { Contact } from '../types';
|
||
import {
|
||
ArchiveIcon,
|
||
ComposeIcon,
|
||
ChevronRightIcon,
|
||
GaugeIcon,
|
||
PersonIcon,
|
||
BotIcon
|
||
} from './icons';
|
||
import PermissionChip from './PermissionChip';
|
||
|
||
/**
|
||
* 工作卡片:中间栏的另一种呈现。
|
||
*
|
||
* 与列表行(ContactPanel 的 ContactRow)的分工:
|
||
* 列表答「跟谁在聊」,卡片答「在聊什么、进展如何」。
|
||
* 一条线索是一件正在进行的工作,卡片上要能直接看出:
|
||
* - 主题(多由 Agent 平台的模型生成的摘要)
|
||
* - 最新一封说了什么、谁说的
|
||
* - 往返预算还剩多少 —— 预算是任务的属性,快跑满的任务需要人介入
|
||
*
|
||
* 容器(列表/滚动/空态)由 ContactPanel 负责:两种视图共用同一份数据与同一套
|
||
* 打开/写信/归档动作,只有单项的渲染不同。竖向堆叠而非网格 ——
|
||
* 卡片在中间栏里,320~400px 放不下多列。
|
||
*/
|
||
export function WorkCard({
|
||
contact: c,
|
||
active,
|
||
onOpen,
|
||
onCompose,
|
||
onArchive
|
||
}: {
|
||
contact: Contact;
|
||
active: boolean;
|
||
onOpen: () => void;
|
||
onCompose: () => void;
|
||
onArchive: () => void;
|
||
}) {
|
||
const time = new Date(c.last_activity).toLocaleString('zh-CN', {
|
||
month: '2-digit',
|
||
day: '2-digit',
|
||
hour: '2-digit',
|
||
minute: '2-digit'
|
||
});
|
||
const fromHuman = c.last_from !== c.agent_name;
|
||
|
||
return (
|
||
<div
|
||
className={`group flex flex-col rounded-lg border bg-white transition-colors ${
|
||
active ? 'border-blue-300 ring-1 ring-blue-100' : 'border-gray-200 hover:border-blue-300'
|
||
}`}
|
||
>
|
||
<button onClick={onOpen} className="flex-1 text-left p-3 min-w-0">
|
||
<div className="flex items-center gap-1.5">
|
||
<span className="text-xs font-semibold text-gray-900 truncate">{c.agent_name}</span>
|
||
<span className="text-3xs text-gray-500 font-mono truncate">{c.path}</span>
|
||
{c.unread_count > 0 && (
|
||
<span className="ml-auto shrink-0 min-w-[16px] h-4 px-1 rounded-full bg-blue-600 text-white text-3xs font-bold flex items-center justify-center">
|
||
{c.unread_count}
|
||
</span>
|
||
)}
|
||
</div>
|
||
|
||
<div className="flex items-center gap-1 mt-0.5">
|
||
<ChevronRightIcon className="w-3 h-3 text-blue-400 shrink-0" />
|
||
<span className="text-2xs text-blue-600 font-mono truncate">
|
||
{c.session_alias || '(未命名会话)'}
|
||
</span>
|
||
</div>
|
||
|
||
{/* 主题是这张卡片的主角:它回答「这条线索在干什么」 */}
|
||
<p className="text-xs text-gray-800 mt-1.5 line-clamp-2 leading-snug">
|
||
{c.subject || '(无主题)'}
|
||
</p>
|
||
|
||
{c.last_preview && (
|
||
<div className="flex items-start gap-1 mt-1.5">
|
||
{fromHuman ? (
|
||
<PersonIcon className="w-3 h-3 text-gray-400 shrink-0 mt-0.5" />
|
||
) : (
|
||
<BotIcon className="w-3 h-3 text-gray-400 shrink-0 mt-0.5" />
|
||
)}
|
||
<p className="text-2xs text-gray-500 line-clamp-2 leading-snug">
|
||
{c.last_preview}
|
||
</p>
|
||
</div>
|
||
)}
|
||
|
||
<div className="flex items-center gap-2 mt-2">
|
||
<span className="text-3xs text-gray-500">
|
||
{c.mail_count} 封 · {time}
|
||
</span>
|
||
<div className="flex-1" />
|
||
<PermissionChip mode={c.permission_mode} enforcement={c.permission_enforcement} compact />
|
||
<BudgetChip max={c.max_rounds} used={c.used_rounds} />
|
||
</div>
|
||
</button>
|
||
|
||
<div className="reveal flex gap-1 px-3 pb-2.5">
|
||
<button
|
||
onClick={onCompose}
|
||
title="写信给该地址"
|
||
className="tap inline-flex items-center gap-1 px-2 py-0.5 rounded border border-gray-300 text-3xs text-gray-600 hover:bg-gray-50"
|
||
>
|
||
<ComposeIcon className="w-3 h-3" />
|
||
写信
|
||
</button>
|
||
<button
|
||
onClick={onArchive}
|
||
title="归档该 name@path.session"
|
||
className="tap inline-flex items-center gap-1 px-2 py-0.5 rounded border border-gray-300 text-3xs text-gray-600 hover:bg-gray-50 hover:text-red-600 hover:border-red-300"
|
||
>
|
||
<ArchiveIcon className="w-3 h-3" />
|
||
归档
|
||
</button>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
/**
|
||
* 预算指示条。
|
||
*
|
||
* 0 = 不限,此时不显示 —— 一个「0/0」或「不限」的徽标对每张卡片都成立,
|
||
* 等于纯噪声。只在真正设了上限时才占位置。
|
||
* 剩 1 个来回时转红:那是需要人介入的时刻(要么加预算,要么让它收尾)。
|
||
*
|
||
* 导出供测试单独渲染 —— 它是纯展示件,而通过 WorkCard 渲染要先造一整个 Contact。
|
||
*/
|
||
export function BudgetChip({ max, used }: { max: number; used: number }) {
|
||
if (!max || max <= 0) return null;
|
||
|
||
const remaining = Math.max(max - used, 0);
|
||
const tone =
|
||
remaining === 0
|
||
? 'bg-red-100 text-red-700'
|
||
: remaining <= 1
|
||
? 'bg-orange-100 text-orange-700'
|
||
: 'bg-gray-100 text-gray-500';
|
||
|
||
return (
|
||
<span
|
||
className={`inline-flex items-center gap-0.5 px-1.5 py-0.5 rounded-full text-3xs font-medium shrink-0 ${tone}`}
|
||
title={`往返预算:已用 ${used}/${max}${remaining === 0 ? '(已用尽)' : ''}`}
|
||
>
|
||
<GaugeIcon className="w-2.5 h-2.5" />
|
||
{remaining}/{max}
|
||
</span>
|
||
);
|
||
}
|