40760aa884
- server:Go 网关(WS 流式识别中继/计费配额/微信登录支付 mock/反馈/埋点),gummy provider 已真实联调 - desktop:Tauri 2(全局快捷键 push-to-talk/浮层/托盘/设置/登录购买/反馈/首启引导) - android:Compose 主 App + IME(键盘内录音直传) - ios:App + 键盘扩展(1A spike 实证键盘内不可录音,走 deep link 听写) - design/design-pipeline:设计系统 + token 导出 iOS/Android 主题 - doc:前后端设计文档(HTML);web:官网宣传页;todo:任务看板 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
25 lines
1.0 KiB
React
25 lines
1.0 KiB
React
const ddProgressCss = `
|
|
.dd-progress { background: var(--surface-3); border-radius: var(--radius-full); overflow: hidden; }
|
|
.dd-progress i { display: block; height: 100%; border-radius: var(--radius-full);
|
|
background: var(--accent); transition: width var(--dur-slow) var(--ease-out); }
|
|
.dd-progress--warning i { background: var(--warning); }
|
|
`;
|
|
|
|
if (typeof document !== 'undefined' && !document.getElementById('dd-progress-css')) {
|
|
const s = document.createElement('style');
|
|
s.id = 'dd-progress-css';
|
|
s.textContent = ddProgressCss;
|
|
document.head.appendChild(s);
|
|
}
|
|
|
|
export function ProgressBar({ value = 0, max = 100, height = 6, warnAt = 0.9, style, ...rest }) {
|
|
const ratio = Math.min(1, max > 0 ? value / max : 0);
|
|
const warning = ratio >= warnAt;
|
|
return (
|
|
<div className={`dd-progress${warning ? ' dd-progress--warning' : ''}`}
|
|
style={{ height, ...style }} role="progressbar" aria-valuenow={value} aria-valuemax={max} {...rest}>
|
|
<i style={{ width: `${ratio * 100}%` }}></i>
|
|
</div>
|
|
);
|
|
}
|