208d0cda12
真相源整固: - design/index.html 登记簿:token 色板(var() 实时渲染)/ 组件登记卡 / 图标与跨端映射 / guidelines / ui_kits 单一入口,check-ds 强制登记 - design/icons.js 图标单源(Lucide 线条)+ icon-map.json 跨端映射表 (web/iOS/Android 三列,iOS 12 个 SF Symbol 全部收编登记) - components/core/Icon.jsx 单源图标渲染器;MicBar/RecognitionOverlay 接入 - tokens 新增 --brand-wechat(-press)(微信官方绿)与 --overlay-wave - fonts.css 弃 Google Fonts CDN,Outfit 可变字体自托管 (assets/outfit-latin.woff2,40KB;中国网络下 CDN 不可用会卡字体) - design/serve.mjs 零依赖预览服务器(登记簿与原型评审入口) codegen 强化(export-tokens.mjs): - 产物直写消费位置:ios/dudu/Shared/DuduTheme.swift、 android/.../design/DuduTheme.kt——删除 design-pipeline/generated/ 中间拷贝层(此前 app 内是手工拷贝,--check 守不到真实消费文件已漂移) - 新增 web/tokens.css 产物(custom props 透传 + Outfit data URI 内嵌) - tokens 文件遍历排序,产物确定性 存量收编: - desktop:三个窗口内联 SVG → Icon 组件;tray 裸 rgba → token+opacity - Android:LoginScreen 微信绿常量 → DuduPalette.brandWechat(Press), Color.White → textOnAccent - 官网 web/index.html:接入 tokens.css,34 处硬编码 hex 全部 var() 化; 深色板块(metrics/cta/footer)改挂 data-theme="dark" 复用 dark 令牌; 移除 Google Fonts CDN - design 包内 8 处裸色:微信绿 token 化、装饰色 ds-ignore 白名单、 同值色改 var() 引用 防漂移闸(零依赖 Node): - design-pipeline/check-ds.mjs:真相源自检 7 道(dark⊆light / var 链 / 裸色∈tokens 值集 / 组件登记 / icons 唯一 / icon-map 双向同集 / 禁 emoji) - design-pipeline/check-code.mjs:代码侧单源(desktop 禁字面色+内联 path / iOS 禁字面色+SF Symbol 同集 / Android 禁 Color(0x / web 禁字面色), ds-ignore 行级豁免制 - .githooks/pre-commit(启用:git config core.hooksPath .githooks) - CI design job 扩展为三道闸全绿 - 反向验证通过:注入裸色/孤儿 token/未登记组件/未登记 symbol 均被拦截 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
97 lines
3.4 KiB
JavaScript
97 lines
3.4 KiB
JavaScript
// 零依赖本地热重载静态服务器
|
|
// 用法: node serve.mjs [port] 默认 5180
|
|
import http from 'node:http';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const ROOT = path.dirname(fileURLToPath(import.meta.url));
|
|
const PORT = Number(process.argv[2]) || 5180;
|
|
|
|
const MIME = {
|
|
'.html': 'text/html; charset=utf-8',
|
|
'.css': 'text/css; charset=utf-8',
|
|
'.js': 'text/javascript; charset=utf-8',
|
|
'.mjs': 'text/javascript; charset=utf-8',
|
|
'.json': 'application/json; charset=utf-8',
|
|
'.svg': 'image/svg+xml',
|
|
'.png': 'image/png',
|
|
'.jpg': 'image/jpeg',
|
|
'.woff2': 'font/woff2',
|
|
};
|
|
|
|
const clients = new Set();
|
|
const RELOAD_SNIPPET = `\n<script>
|
|
(function(){ try{
|
|
var es=new EventSource('/__reload');
|
|
es.onmessage=function(){ location.reload(); };
|
|
}catch(e){} })();
|
|
</script>\n`;
|
|
|
|
const server = http.createServer((req, res) => {
|
|
if (req.url === '/__reload') {
|
|
res.writeHead(200, {
|
|
'Content-Type': 'text/event-stream',
|
|
'Cache-Control': 'no-cache',
|
|
Connection: 'keep-alive',
|
|
});
|
|
res.write('retry: 500\n\n');
|
|
clients.add(res);
|
|
req.on('close', () => clients.delete(res));
|
|
return;
|
|
}
|
|
|
|
let urlPath = decodeURIComponent(req.url.split('?')[0]);
|
|
if (urlPath === '/') urlPath = '/index.html';
|
|
const filePath = path.join(ROOT, urlPath);
|
|
if (!filePath.startsWith(ROOT)) { res.writeHead(403); res.end('forbidden'); return; }
|
|
|
|
fs.readFile(filePath, (err, data) => {
|
|
if (err) { res.writeHead(404, { 'Content-Type': 'text/html; charset=utf-8' }); res.end('<h1>404</h1>'); return; }
|
|
const ext = path.extname(filePath).toLowerCase();
|
|
const mime = MIME[ext] || 'application/octet-stream';
|
|
const noCache = { 'Cache-Control': 'no-store, no-cache, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0' };
|
|
if (ext === '.html') {
|
|
const html = data.toString('utf8').replace('</body>', RELOAD_SNIPPET + '</body>');
|
|
res.writeHead(200, { 'Content-Type': mime, ...noCache });
|
|
res.end(html);
|
|
} else {
|
|
res.writeHead(200, { 'Content-Type': mime, ...noCache });
|
|
res.end(data);
|
|
}
|
|
});
|
|
});
|
|
|
|
// 设计系统守门:启动 + 每次改动自动跑 check-ds.mjs,控制台报 PASS/FAIL
|
|
import { spawn } from 'node:child_process';
|
|
function runDsCheck() {
|
|
const p = spawn(process.execPath, [path.join(ROOT, 'tools', 'check-ds.mjs')], { cwd: ROOT });
|
|
let out = '';
|
|
p.stdout.on('data', d => out += d);
|
|
p.stderr.on('data', d => out += d);
|
|
p.on('close', code => {
|
|
const t = new Date().toLocaleTimeString();
|
|
if (code === 0) console.log(`\x1b[32m[设计系统 ✓ ${t}] screens 颜色全部走 token、变量均已定义\x1b[0m`);
|
|
else {
|
|
const m = out.match(/❶[^\n]*共 (\d+)[\s\S]*?❷[^\n]*共 (\d+)/);
|
|
const sum = m ? `硬编码颜色 ${m[1]} · 未定义 token ${m[2]}` : '存在违规';
|
|
console.log(`\x1b[31m[设计系统 ✗ ${t}] ${sum} —— 运行 node tools/check-ds.mjs 看详情\x1b[0m`);
|
|
}
|
|
});
|
|
}
|
|
|
|
let debounce;
|
|
fs.watch(ROOT, { recursive: true }, (_ev, file) => {
|
|
if (file && file.endsWith('serve.mjs')) return;
|
|
clearTimeout(debounce);
|
|
debounce = setTimeout(() => {
|
|
for (const c of clients) c.write('data: reload\n\n');
|
|
if (file && /\.(html|css|js)$/.test(file)) runDsCheck();
|
|
}, 80);
|
|
});
|
|
|
|
server.listen(PORT, () => {
|
|
console.log(`prototype live at http://localhost:${PORT}/ (watching ${ROOT})`);
|
|
runDsCheck();
|
|
});
|