P0(4): 假数据清除(avg_latency_ms:2400→null,无端点字段改null)、假进度条改诚实的不确定态、 公共页不再反向依赖 admin(api/public.ts)、PredictProgress 重写 P1(6): 23处 any 归零(对齐后端 Pydantic 契约新增 PredictionMatchRef/HealthProbe 等)、 a11y(aria-live 0→4,htmlFor 1→17,aria-describedby/invalid 补齐)、App.tsx 抽 SiteLayout、 路由级 lazy+代码分割(首屏 315KB→238KB)、index.html 补 SEO/favicon/OG、死代码清理(AdminIcon 抽出) P2(7): Login/index.css 裸色值令牌化、groupByDate useMemo、滚动监听统一、原生控件基元化、 useLeagues 静默失败补告警、路由级 ErrorBoundary 另修复审计未列问题: - Monitoring todos 过滤器 t!==false 放行 null 导致整页崩溃 → Boolean(t) 真值过滤 - Collection 渲染期 Date.now()(react-hooks/purity 捕获)→ 计时器 effect - bg-press-wash/60 透明度修饰符静默失效 → RGB 三元组 + 构建期令牌守卫(下个提交接入) 工程化:数据层 dal/api/types(1047行)git mv 至 src/api/,admin 留 @deprecated 兼容壳, 21 个引用方直指新路径;tsconfig 开启 noUnusedLocals/noUnusedParameters(清理9处存量)
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import { Component, ErrorInfo, ReactNode } from 'react'
|
|
import { Button } from './ui'
|
|
|
|
interface Props {
|
|
children: ReactNode
|
|
fallback?: ReactNode
|
|
/**
|
|
* 该边界是否铺满整个视口。
|
|
*
|
|
* 应用最外层的边界应铺满(`true`,默认);而当边界下沉到
|
|
* 路由级、嵌在 SiteLayout 的 <main> 里时,铺满视口会撑开
|
|
* 布局并让页头页脚错位 —— 那种场景传 `false`,改为局部卡片。
|
|
*/
|
|
fullScreen?: boolean
|
|
}
|
|
|
|
interface State {
|
|
hasError: boolean
|
|
error: Error | null
|
|
}
|
|
|
|
export class ErrorBoundary extends Component<Props, State> {
|
|
public state: State = {
|
|
hasError: false,
|
|
error: null,
|
|
}
|
|
|
|
public static getDerivedStateFromError(error: Error): State {
|
|
return { hasError: true, error }
|
|
}
|
|
|
|
public componentDidCatch(error: Error, errorInfo: ErrorInfo) {
|
|
console.error('Uncaught error:', error, errorInfo)
|
|
}
|
|
|
|
public render() {
|
|
if (this.state.hasError) {
|
|
if (this.props.fallback) {
|
|
return this.props.fallback
|
|
}
|
|
const fullScreen = this.props.fullScreen ?? true
|
|
return (
|
|
<div
|
|
className={
|
|
fullScreen
|
|
? 'flex min-h-screen items-center justify-center bg-paper-50 p-6'
|
|
: 'flex min-h-[50vh] items-center justify-center p-6'
|
|
}
|
|
role="alert"
|
|
>
|
|
<div className="max-w-md space-y-3 border border-ink-900 bg-paper-50 p-6 text-center">
|
|
<p className="text-2xs tracking-[0.3em] text-ink-400">EXCEPTION</p>
|
|
<h2 className="font-serif text-lg font-bold text-ink-900">页面出现错误</h2>
|
|
<p className="text-sm leading-relaxed text-ink-500">
|
|
{this.state.error?.message || '未知错误'}
|
|
</p>
|
|
<Button size="sm" onClick={() => this.setState({ hasError: false, error: null })}>
|
|
重试
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return this.props.children
|
|
}
|
|
}
|