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>
104 lines
3.8 KiB
React
104 lines
3.8 KiB
React
// dudu 移动端 UI kit · 共享:Lucide 图标子集、DuduLogo、手机框
|
|
|
|
function DuMIcon({ size = 16, sw = 2, children, ...rest }) {
|
|
return (
|
|
<svg width={size} height={size} viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
|
strokeWidth={sw} strokeLinecap="round" strokeLinejoin="round" aria-hidden="true" {...rest}>
|
|
{children}
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
const DuMIcons = {
|
|
Mic: (p) => (
|
|
<DuMIcon {...p}>
|
|
<path d="M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z"></path>
|
|
<path d="M19 10v2a7 7 0 0 1-14 0v-2"></path>
|
|
<line x1="12" x2="12" y1="19" y2="22"></line>
|
|
</DuMIcon>
|
|
),
|
|
Globe: (p) => (
|
|
<DuMIcon {...p}>
|
|
<circle cx="12" cy="12" r="10"></circle>
|
|
<path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"></path>
|
|
<path d="M2 12h20"></path>
|
|
</DuMIcon>
|
|
),
|
|
Backspace: (p) => (
|
|
<DuMIcon {...p}>
|
|
<path d="M20 5H9l-7 7 7 7h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z"></path>
|
|
<line x1="18" x2="12" y1="9" y2="15"></line>
|
|
<line x1="12" x2="18" y1="9" y2="15"></line>
|
|
</DuMIcon>
|
|
),
|
|
Enter: (p) => (
|
|
<DuMIcon {...p}>
|
|
<polyline points="9 10 4 15 9 20"></polyline>
|
|
<path d="M20 4v7a4 4 0 0 1-4 4H4"></path>
|
|
</DuMIcon>
|
|
),
|
|
Check: (p) => <DuMIcon {...p}><path d="M20 6 9 17l-5-5"></path></DuMIcon>,
|
|
ChevronRight: (p) => <DuMIcon {...p}><path d="m9 18 6-6-6-6"></path></DuMIcon>,
|
|
User: (p) => (
|
|
<DuMIcon {...p}>
|
|
<path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"></path>
|
|
<circle cx="12" cy="7" r="4"></circle>
|
|
</DuMIcon>
|
|
),
|
|
Keyboard: (p) => (
|
|
<DuMIcon {...p}>
|
|
<rect width="20" height="16" x="2" y="4" rx="2"></rect>
|
|
<path d="M6 8h.01"></path><path d="M10 8h.01"></path><path d="M14 8h.01"></path><path d="M18 8h.01"></path>
|
|
<path d="M6 12h.01"></path><path d="M10 12h.01"></path><path d="M14 12h.01"></path><path d="M18 12h.01"></path>
|
|
<path d="M7 16h10"></path>
|
|
</DuMIcon>
|
|
),
|
|
Shield: (p) => (
|
|
<DuMIcon {...p}>
|
|
<path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path>
|
|
</DuMIcon>
|
|
),
|
|
ArrowUp: (p) => <DuMIcon {...p}><path d="m5 12 7-7 7 7"></path><path d="M12 19V5"></path></DuMIcon>,
|
|
Wechat: (p) => (
|
|
/* 简化对话气泡(代微信图标占位,正式包内用官方资源)*/
|
|
<DuMIcon {...p}>
|
|
<path d="M7.9 20A9 9 0 1 0 4 16.1L2 22Z"></path>
|
|
</DuMIcon>
|
|
),
|
|
};
|
|
|
|
function DuduMLogo({ size = 20, sw = 3.5 }) {
|
|
return (
|
|
<svg width={size} height={size} viewBox="0 0 48 48" fill="none" stroke="currentColor"
|
|
strokeWidth={sw} strokeLinecap="round" aria-hidden="true">
|
|
<circle cx="24" cy="24" r="18"></circle>
|
|
<path d="M17 20.5v7"></path>
|
|
<path d="M24 16.5v15"></path>
|
|
<path d="M31 20.5v7"></path>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
// 中性手机框:深色边框 + 打孔/刘海,内容区由调用方填充
|
|
function PhoneFrame({ width = 312, height = 596, children }) {
|
|
return (
|
|
<div style={{
|
|
width, height, boxSizing: 'border-box', background: '#0B0C10' /* ds-ignore: 手机外壳装饰,非 UI 色 */, borderRadius: 38,
|
|
padding: 9, boxShadow: 'var(--shadow-window)', flex: 'none',
|
|
}}>
|
|
<div style={{
|
|
width: '100%', height: '100%', boxSizing: 'border-box', background: 'var(--bg-app)',
|
|
borderRadius: 30, overflow: 'hidden', display: 'flex', flexDirection: 'column', position: 'relative',
|
|
}}>
|
|
{/* 状态栏 */}
|
|
<div style={{ height: 30, flex: 'none', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
|
|
<div style={{ width: 84, height: 18, background: '#0B0C10' /* ds-ignore: 手机刘海装饰,非 UI 色 */, borderRadius: 10 }}></div>
|
|
</div>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Object.assign(window, { DuMIcon, DuMIcons, DuduMLogo, PhoneFrame });
|