feat: F022 source acquisition, crawling & connector abstraction

This commit is contained in:
Benjamin Sutter
2026-05-15 15:32:53 +02:00
parent 8efd6e1974
commit fce0f684af
20 changed files with 1647 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { Alert, Typography } from '@mui/material'
import { AlertCircle } from 'lucide-react'
interface SourceErrorPanelProps {
errorState: string
}
export function SourceErrorPanel({ errorState }: SourceErrorPanelProps) {
return (
<Alert
severity="error"
icon={<AlertCircle size={16} />}
sx={{ mb: 2, fontSize: '0.8rem', '& .MuiAlert-message': { width: '100%' } }}
>
<Typography variant="caption" sx={{ fontWeight: 600, display: 'block', mb: 0.25 }}>
Fehlerzustand
</Typography>
<Typography variant="caption" sx={{ lineHeight: 1.4 }}>
{errorState}
</Typography>
</Alert>
)
}