Replace @remixicon/react with a shared Icon component that renders via <use href> references to a single hidden SVG sprite. This reduces DOM node count by replacing inline SVGs with lightweight references. - Create Icon component with sprite injection (packages/ui/src/components/icon/) - Migrate all 164 files from @remixicon/react to Icon component - Auto-generate sprite data from remixicon bundle (scripts/generate-icon-sprite.mjs) - Add bun run icons:generate to package.json - Move @remixicon/react to devDependencies - Add icon usage instructions to theme-system skill
120 lines
3.7 KiB
TypeScript
120 lines
3.7 KiB
TypeScript
import React from 'react';
|
|
import { Button } from '../ui/button';
|
|
import { Card, CardContent, CardHeader, CardTitle } from '../ui/card';
|
|
import { useI18n } from '@/lib/i18n';
|
|
import { Icon } from "@/components/icon/Icon";
|
|
|
|
interface ChatErrorBoundaryState {
|
|
hasError: boolean;
|
|
error?: Error;
|
|
errorInfo?: React.ErrorInfo;
|
|
}
|
|
|
|
interface ChatErrorBoundaryProps {
|
|
children: React.ReactNode;
|
|
sessionId?: string;
|
|
}
|
|
|
|
interface ChatErrorBoundaryTexts {
|
|
title: string;
|
|
description: string;
|
|
sessionLabel: string;
|
|
detailsSummary: string;
|
|
resetAction: string;
|
|
persistentHint: string;
|
|
}
|
|
|
|
interface ChatErrorBoundaryViewProps extends ChatErrorBoundaryProps {
|
|
texts: ChatErrorBoundaryTexts;
|
|
}
|
|
|
|
class ChatErrorBoundaryView extends React.Component<ChatErrorBoundaryViewProps, ChatErrorBoundaryState> {
|
|
constructor(props: ChatErrorBoundaryViewProps) {
|
|
super(props);
|
|
this.state = { hasError: false };
|
|
}
|
|
|
|
static getDerivedStateFromError(error: Error): ChatErrorBoundaryState {
|
|
return { hasError: true, error };
|
|
}
|
|
|
|
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
|
|
this.setState({ error, errorInfo });
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
console.error('Chat error caught by boundary:', error, errorInfo);
|
|
}
|
|
}
|
|
|
|
handleReset = () => {
|
|
this.setState({ hasError: false, error: undefined, errorInfo: undefined });
|
|
};
|
|
|
|
render() {
|
|
if (this.state.hasError) {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen p-4">
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader className="text-center">
|
|
<CardTitle className="flex items-center justify-center gap-2 text-destructive">
|
|
<Icon name="chat-3" className="h-5 w-5" />
|
|
{this.props.texts.title}
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<p className="text-sm text-muted-foreground text-center">
|
|
{this.props.texts.description}
|
|
</p>
|
|
|
|
{this.props.sessionId && (
|
|
<div className="text-xs text-muted-foreground text-center">
|
|
{this.props.texts.sessionLabel}: {this.props.sessionId}
|
|
</div>
|
|
)}
|
|
|
|
{this.state.error && (
|
|
<details className="text-xs font-mono bg-muted p-3 rounded">
|
|
<summary className="cursor-pointer hover:bg-interactive-hover/80">{this.props.texts.detailsSummary}</summary>
|
|
<pre className="mt-2 max-h-48 overflow-auto">
|
|
{this.state.error.toString()}
|
|
</pre>
|
|
</details>
|
|
)}
|
|
|
|
<div className="flex gap-2">
|
|
<Button onClick={this.handleReset} variant="outline" className="flex-1">
|
|
<Icon name="restart" className="h-4 w-4 mr-2" />
|
|
{this.props.texts.resetAction}
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="text-xs text-muted-foreground text-center">
|
|
{this.props.texts.persistentHint}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return this.props.children;
|
|
}
|
|
}
|
|
|
|
export function ChatErrorBoundary(props: ChatErrorBoundaryProps) {
|
|
const { t } = useI18n();
|
|
return (
|
|
<ChatErrorBoundaryView
|
|
{...props}
|
|
texts={{
|
|
title: t('chat.errorBoundary.title'),
|
|
description: t('chat.errorBoundary.description'),
|
|
sessionLabel: t('chat.errorBoundary.sessionLabel'),
|
|
detailsSummary: t('chat.errorBoundary.detailsSummary'),
|
|
resetAction: t('chat.errorBoundary.resetAction'),
|
|
persistentHint: t('chat.errorBoundary.persistentHint'),
|
|
}}
|
|
/>
|
|
);
|
|
}
|