用户四封信(同一线索)提的六件事,都在这里: ## ① 导航合并(「导航栏的内容有点多了」) 收件箱/发件箱/授权 → 一项「通信」,进去由**内部页签**区分(CommTabs); 新建 → 「通信」页内**悬浮圆形加号**(ComposeFab);导航只剩 通信/日历/联系人; 管理 → 合进「我的」,管理员在页面**最下面**看得到(非管理员不渲染,不是禁用)。 `viewMode` 仍是原来那三个值(几十处调用点不用改),新增 `commTab` 记住上次用的子页签; 通信项的徽标 = 未读 + 待决策(授权信息不能因为合并而消失)。 ## ② 窄屏底部导航:悬浮玻璃(「还是固定底部延伸,没有玻璃效果,也没有悬浮」) 原来是 `border-t bg-chrome-900` 通栏贴底。改成:左右/离底各留 10px、圆角、 深色半透明 + `blur(18px)`、投影,安全区并入下外边距。 ## ③ 页面动画(「页面极度缺少动画,所有页面都是直接出现」) 在 `<html>` 上挂一个短命类触发外壳直接子面板的入场动画。**没有用 key 重挂载**: 面板是 flex 链上的一环,套 wrapper 会改掉 flex 传递(窄屏覆盖层最先坏)。 并且尊重 `prefers-reduced-motion`(关了就一点都不动)。 ## ④ 控件档透明度(「复选框和地址猜测项…他们才是真正需要拉低透明度的地方」) 新增第三档 `--bg-glass-control`(0.5/0.55):授权多选胶囊、地址建议菜单。 三档递减:正文面 0.88 > 嵌套 0.82 > 控件 0.5。 ## ⑤ 打底 vs 透明(上一封「该打底的地方透了、该透的空白处糊了」) 正文面回到 0.88(读得清优先)、空白/页面底透明**且不模糊**、面板模糊降到 10px。 ## ⑥ 圆角与玻璃**无条件**生效(「大面积缺失圆角与玻璃效果…都是硬截断」) 根因:`.app-shell` 的留缝/圆角/投影原先全写在 `html[data-bg='on']` 里 ⇒ **没开壁纸的账号**看到的是硬边不透明面板。现在几何下沉为无条件基线, 壁纸相关的加强仍叠加在上面。窄屏内容面板同样浮起来。 ## 判据 - `test/nav-merge.test.mjs` 8 条(含自检:重构前的写法必须判红)—— 改完跑老套件 254 条**全绿却一条都没测导航结构**,结构改动必须自带判据。 - `test/manual/nav-restructure-verify.mjs`:真浏览器 9 条(导航项数、页签切换真的换内容、 加号 56×56 且 `elementFromPoint` 命中自己、我的页底部管理入口在退出登录之后、 控件档 α=0.5 对正文面 α=0.88 的反向对照)。 - `test/manual/narrow-glass-verify.mjs` 6 条:悬浮几何(三边留缝 10px、圆角 14px、 缝隙处命中的是页面底 ⇒ 真的浮着)、玻璃(α=0.82 + blur18)、触摸高度最小 49px、 动画真的在跑(静止时 `animationName=none`,切换后 =pane-in)且 reduced-motion 下不动。 - `test/background.test.mjs`:把三条**过时判据**(早前那版"越透越好")按现行契约重写 —— 旧判据留着只会把我拽回错误方向。30 条全绿。 ## 顺带 窄屏探针原先只调视口、**没模拟触屏**,于是 `(hover: hover)` 仍为真, 把「悬停才显形的次要动作」误报成透明 —— 差点去"修"一个本来就对的规则。 已改成 hasTouch + isMobile + DPR 的触屏上下文,且收尾只关自己的 context (CDP 连的是共享 Chromium,`browser.close()` 会把别人的标签页一起关掉)。
178 lines
7.1 KiB
JavaScript
178 lines
7.1 KiB
JavaScript
/**
|
||
* 窄屏实测验收:390px 与 320px 下量真实盒子、真实命中。
|
||
*
|
||
* 每一条都对应一个曾经真实存在的问题(见 docs/PLAN.md §7.10.1):
|
||
* 抽屉盖住底部导航、工具按钮只有 16px 高、看不见却按得动的「归档」、
|
||
* 对话树缩进把卡片压成竖条、对话树没有返回出口。
|
||
*
|
||
* 用法:ADMIN_PW=<密码> node client/electron/test/manual/narrow-verify.mjs
|
||
*/
|
||
import {
|
||
openApp,
|
||
overflowX,
|
||
tapTargets,
|
||
hitTest,
|
||
scrollHealth,
|
||
SMALL
|
||
} from './narrow-probe-helper.mjs';
|
||
|
||
const { browser, ctx, page, issues } = await openApp();
|
||
const failed = [];
|
||
|
||
async function check(name, fn) {
|
||
try {
|
||
const r = await fn();
|
||
console.log(` ${r.ok ? '通过' : '失败'} ${name}${r.note ? ' — ' + r.note : ''}`);
|
||
if (!r.ok) failed.push(name);
|
||
} catch (e) {
|
||
console.log(` 错误 ${name} — ${e.message.slice(0, 90)}`);
|
||
failed.push(name);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 打开收件箱里的第一封邮件。
|
||
*
|
||
* 邮件行是 `<button class="w-full text-left ...">`,不是带 cursor-pointer 的 div
|
||
* —— 按后者找会一直等到超时。
|
||
*/
|
||
async function openFirstMail(page) {
|
||
await page.click('nav button:has-text("收件")');
|
||
await page.waitForTimeout(1000);
|
||
const rows = page.locator('button.w-full.text-left');
|
||
const n = await rows.count();
|
||
if (n === 0) throw new Error('收件箱是空的,没有邮件可点');
|
||
await rows.first().click();
|
||
await page.waitForTimeout(1200);
|
||
}
|
||
|
||
console.log('窄屏实测(390px):');
|
||
|
||
// 抽屉已删。它是 fixed z-50 铺满视口高度,把底部导航最左那项盖住点不到。
|
||
await check('抽屉入口已移除', async () => {
|
||
const n = await page.locator('button[aria-label="打开导航"]').count();
|
||
return { ok: n === 0, note: n ? `仍有 ${n} 个` : '' };
|
||
});
|
||
|
||
// 删抽屉时退出登录是它唯一的独有入口,必须有新去处
|
||
await check('「我的」页有退出登录', async () => {
|
||
await page.click('nav button:has-text("我的")');
|
||
await page.waitForTimeout(1200);
|
||
const btn = page.locator('button:has-text("退出登录")');
|
||
const n = await btn.count();
|
||
const b = n ? await btn.first().boundingBox() : null;
|
||
return {
|
||
ok: n === 1 && b.height >= 36,
|
||
note: b ? `${Math.round(b.width)}x${Math.round(b.height)}` : '找不到'
|
||
};
|
||
});
|
||
|
||
// 核心回归:底部导航每一项都要命中自己
|
||
await check('底部导航每项都命中自己', async () => {
|
||
const r = await hitTest(page, 'nav button');
|
||
const miss = r.filter(x => !x.hit);
|
||
return {
|
||
ok: r.length > 0 && miss.length === 0,
|
||
note: miss.length ? '未命中: ' + miss.map(m => m.text).join(',') : `${r.length} 项全部命中`
|
||
};
|
||
});
|
||
|
||
// 详情页工具按钮:视觉 15-16px,命中区必须补到 44
|
||
await check('详情页工具按钮命中区 >= 44px', async () => {
|
||
await openFirstMail(page);
|
||
|
||
const r = await tapTargets(page, ['标记已读', '对话树', '转发', '抄送', '发送', '清空']);
|
||
for (const x of r) console.log(' ', JSON.stringify(x));
|
||
const small = r.filter(x => x.hitH < 44 || x.hitW < 44);
|
||
return {
|
||
ok: r.length > 0 && small.length === 0,
|
||
note: small.length ? '仍偏小: ' + small.map(s => s.t).join(',') : `${r.length} 个都达标`
|
||
};
|
||
});
|
||
|
||
// 次要动作在触摸设备上必须可见(没有 hover 时曾经永远透明却接收点击)
|
||
await check('联系人页次要动作默认可见', async () => {
|
||
await page.click('nav button:has-text("联系人")');
|
||
await page.waitForTimeout(1200);
|
||
const r = await page.evaluate(() =>
|
||
[...document.querySelectorAll('.reveal')].slice(0, 3).map(d => getComputedStyle(d).opacity)
|
||
);
|
||
return { ok: r.length > 0 && r.every(o => o === '1'), note: `opacity=${r.join(',')}` };
|
||
});
|
||
|
||
// 对话树:窄屏要有返回出口
|
||
await check('对话树有返回出口', async () => {
|
||
await openFirstMail(page);
|
||
const t = page.locator('button:has-text("对话树")');
|
||
if ((await t.count()) === 0) return { ok: false, note: '找不到对话树入口' };
|
||
await t.first().click();
|
||
await page.waitForTimeout(1600);
|
||
const n = await page.locator('button[aria-label="返回"]').count();
|
||
return { ok: n >= 1, note: `${n} 个` };
|
||
});
|
||
|
||
// 各页无横向溢出
|
||
for (const label of ['收件', '联系人', '管理', '我的']) {
|
||
await check(`${label}页无横向溢出`, async () => {
|
||
await page.click(`nav button:has-text("${label}")`);
|
||
await page.waitForTimeout(1100);
|
||
const of = await overflowX(page);
|
||
for (const o of of.offenders) console.log(' 超出:', JSON.stringify(o));
|
||
return { ok: of.scrollWidth <= of.docWidth, note: `doc=${of.docWidth} scroll=${of.scrollWidth}` };
|
||
});
|
||
}
|
||
|
||
// 每个页面都必须有纵向滚动容器 —— 否则内容一超过视口就被裁掉看不到。
|
||
// 「我的」页曾经缺这个:390px 下内容需 860px、容器 795px,
|
||
// 「退出登录」按钮连同下面 65px 一起消失,滚也滚不到。
|
||
for (const label of ['收件', '发件', '联系人', '管理', '我的']) {
|
||
await check(`${label}页有纵向滚动容器`, async () => {
|
||
await page.click(`nav button:has-text("${label}")`);
|
||
await page.waitForTimeout(1200);
|
||
const h = await scrollHealth(page);
|
||
for (const c of h.clipped) console.log(' 被裁:', JSON.stringify(c));
|
||
return {
|
||
ok: h.hasScroller && h.clipped.length === 0,
|
||
note: h.hasScroller
|
||
? `${h.scrollers.length} 个容器${h.clipped.length ? ',但有内容被裁' : ''}`
|
||
: '没有滚动容器'
|
||
};
|
||
});
|
||
}
|
||
|
||
console.log('\n最窄(320px):');
|
||
await page.setViewportSize(SMALL);
|
||
await page.waitForTimeout(800);
|
||
|
||
await check('320px 收件箱无横向溢出', async () => {
|
||
await page.click('nav button:has-text("收件")');
|
||
await page.waitForTimeout(1000);
|
||
const of = await overflowX(page);
|
||
return { ok: of.scrollWidth <= of.docWidth, note: `doc=${of.docWidth} scroll=${of.scrollWidth}` };
|
||
});
|
||
|
||
await check('320px 模型范围排序按钮命中区达标', async () => {
|
||
await page.click('nav button:has-text("管理")');
|
||
await page.waitForTimeout(900);
|
||
await page.click('button:has-text("模型范围")');
|
||
await page.waitForTimeout(1000);
|
||
const first = page.locator('button:has-text("dsh")').first();
|
||
if ((await first.count()) === 0) return { ok: false, note: '没有 Agent 可展开' };
|
||
await first.click();
|
||
await page.waitForTimeout(1600);
|
||
const r = await tapTargets(page, ['↑', '↓', '×']);
|
||
if (r.length === 0) return { ok: true, note: '当前没有已选模型,跳过' };
|
||
const small = r.filter(x => x.hitH < 44 || x.hitW < 44);
|
||
return { ok: small.length === 0, note: `${r.length} 个,最小 ${Math.min(...r.map(x => x.hitH))}px 高` };
|
||
});
|
||
|
||
console.log('\nissues:', issues.length ? issues : '无');
|
||
console.log(failed.length === 0 ? '\n窄屏实测:全部通过' : `\n窄屏实测:${failed.length} 项失败 — ${failed.join(', ')}`);
|
||
|
||
// ★ 只关自己开的上下文再断开:CDP 连的是共享 Chromium,
|
||
// browser.close() 会把**别人的**标签页也一起关掉(本机多个 agent 共用 9222)。
|
||
await page.close();
|
||
await ctx.close();
|
||
// 共享浏览器(CDP 9222)不能 close:那是所有 agent 共用的实例。
|
||
process.exit(failed.length === 0 ? 0 : 1);
|