ml-intern3 / frontend /src /components /Chat /ChatErrorBanner.tsx
cmpatino's picture
cmpatino HF Staff
Fix endpoint for free calls (#279)
f247952 unverified
import { useEffect, useMemo, useState } from 'react';
import { Alert, AlertTitle, Box, Button, Typography } from '@mui/material';
interface ChatErrorBannerProps {
error: string;
sessionId: string;
model?: string | null;
onDismiss: () => void;
}
export default function ChatErrorBanner({ error, sessionId, model, onDismiss }: ChatErrorBannerProps) {
const [copied, setCopied] = useState(false);
const [reportedAt, setReportedAt] = useState(() => new Date().toISOString());
useEffect(() => {
setReportedAt(new Date().toISOString());
setCopied(false);
}, [error]);
const details = useMemo(
() => [
'ML Intern message failure',
`time: ${reportedAt}`,
`session: ${sessionId}`,
`model: ${model || 'unknown'}`,
`error: ${error}`,
].join('\n'),
[error, model, reportedAt, sessionId],
);
const copyDetails = async () => {
try {
await navigator.clipboard.writeText(details);
setCopied(true);
} catch {
setCopied(false);
}
};
return (
<Box sx={{ maxWidth: 880, mx: 'auto', width: '100%', px: { xs: 0, sm: 1, md: 2 }, mb: 1 }}>
<Alert
severity="error"
variant="outlined"
onClose={onDismiss}
sx={{
bgcolor: 'rgba(224, 90, 79, 0.08)',
borderColor: 'rgba(224, 90, 79, 0.4)',
color: 'var(--text)',
'& .MuiAlert-icon': { color: 'var(--accent-red)' },
}}
action={
<Box sx={{ display: 'flex', gap: 0.5 }}>
<Button color="inherit" size="small" onClick={copyDetails} sx={{ textTransform: 'none' }}>
{copied ? 'Copied' : 'Copy details'}
</Button>
<Button color="inherit" size="small" onClick={onDismiss} sx={{ textTransform: 'none' }}>
Dismiss
</Button>
</Box>
}
>
<AlertTitle sx={{ fontWeight: 700, fontSize: '0.86rem' }}>
Message failed
</AlertTitle>
<Typography variant="body2" sx={{ fontSize: '0.8rem', lineHeight: 1.5 }}>
The backend could not process the last message. Retry after a moment. If it keeps
happening, raise an issue with the copied details.
</Typography>
<Typography
variant="caption"
component="pre"
sx={{
display: 'block',
mt: 1,
mb: 0,
p: 1,
maxHeight: 96,
overflow: 'auto',
bgcolor: 'var(--code-bg)',
borderRadius: '6px',
whiteSpace: 'pre-wrap',
wordBreak: 'break-word',
fontSize: '0.72rem',
}}
>
{error}
</Typography>
</Alert>
</Box>
);
}