cleanup 4
continuous-integration/drone/pr Build is failing

This commit is contained in:
2026-07-03 18:41:49 -04:00
parent 232a821dc0
commit c9c9563a1f
24 changed files with 313 additions and 387 deletions
+30 -56
View File
@@ -1,67 +1,41 @@
import { useGetImportResults } from '../generated/anthoLumeAPIV1';
import { LoadingState } from '../components';
import { Table, type Column } from '../components';
import type { ImportResult } from '../generated/model';
import { Link } from 'react-router-dom';
export default function AdminImportResultsPage() {
const { data: resultsData, isLoading } = useGetImportResults();
const results =
resultsData?.status === 200 ? resultsData.data.results || [] : [];
const results = resultsData?.status === 200 ? (resultsData.data.results ?? []) : [];
if (isLoading) {
return <LoadingState />;
}
const columns: Column<ImportResult>[] = [
{
id: 'document',
header: 'Document',
render: result => (
<div className="grid grid-cols-[4rem_auto] gap-y-1">
<span className="text-content-muted">Name:</span>
{result.id ? (
<Link to={`/documents/${result.id}`} className="text-secondary-600 hover:underline">
{result.name}
</Link>
) : (
<span>N/A</span>
)}
<span className="text-content-muted">File:</span>
<span>{result.path}</span>
</div>
),
},
{ id: 'status', header: 'Status', render: result => result.status },
{ id: 'error', header: 'Error', render: result => result.error ?? '' },
];
return (
<div className="overflow-x-auto">
<div className="inline-block min-w-full overflow-hidden rounded shadow-sm">
<table className="min-w-full bg-surface text-sm leading-normal text-content">
<thead className="text-content-muted">
<tr>
<th className="border-b border-border p-3 text-left font-normal uppercase">
Document
</th>
<th className="border-b border-border p-3 text-left font-normal uppercase">Status</th>
<th className="border-b border-border p-3 text-left font-normal uppercase">Error</th>
</tr>
</thead>
<tbody>
{results.length === 0 ? (
<tr>
<td className="p-3 text-center" colSpan={3}>
No Results
</td>
</tr>
) : (
results.map((result: ImportResult, index: number) => (
<tr key={result.path ?? index}>
<td className="grid grid-cols-[4rem_auto] border-b border-border p-3">
<span className="text-content-muted">Name:</span>
{result.id ? (
<Link
to={`/documents/${result.id}`}
className="text-secondary-600 hover:underline"
>
{result.name}
</Link>
) : (
<span>N/A</span>
)}
<span className="text-content-muted">File:</span>
<span>{result.path}</span>
</td>
<td className="border-b border-border p-3">
<p>{result.status}</p>
</td>
<td className="border-b border-border p-3">
<p>{result.error || ''}</p>
</td>
</tr>
))
)}
</tbody>
</table>
</div>
</div>
<Table
columns={columns}
data={results}
loading={isLoading}
rowKey={result => result.path ?? result.name ?? ''}
/>
);
}