mirror of
https://github.com/christianvidalwolf-prog/Craze-Data-check.git
synced 2026-08-03 19:35:24 +02:00
93 lines
3.7 KiB
TypeScript
93 lines
3.7 KiB
TypeScript
import React, { useState, useMemo } from 'react';
|
|||
|
|
import { ExcelRow } from '../types';
|
||
|
|
|
||
|
|
interface MatrixViewProps {
|
||
|
|
data: ExcelRow[];
|
||
|
|
headers: string[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export function MatrixView({ data, headers }: MatrixViewProps) {
|
||
|
|
const [page, setPage] = useState(1);
|
||
|
|
const [pageSize, setPageSize] = useState(25);
|
||
|
|
|
||
|
|
const paginatedData = useMemo(() => {
|
||
|
|
const start = (page - 1) * pageSize;
|
||
|
|
return data.slice(start, start + pageSize);
|
||
|
|
}, [data, page, pageSize]);
|
||
|
|
|
||
|
|
const totalPages = Math.ceil(data.length / pageSize);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col h-full bg-slate-800 rounded-xl border border-slate-700 shadow-xl overflow-hidden">
|
||
|
|
<div className="p-4 border-b border-slate-700 bg-slate-800/50">
|
||
|
|
<h2 className="text-lg font-semibold text-white">Matrix View</h2>
|
||
|
|
<p className="text-sm text-slate-400">All data fields in their original order.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="overflow-auto flex-1">
|
||
|
|
<table className="w-full text-left text-sm whitespace-nowrap">
|
||
|
|
<thead className="bg-slate-900/50 text-slate-400 sticky top-0 z-10">
|
||
|
|
<tr>
|
||
|
|
{headers.map((header, index) => (
|
||
|
|
<th key={index} className="px-4 py-3 font-medium border-b border-slate-700">
|
||
|
|
{header}
|
||
|
|
</th>
|
||
|
|
))}
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody className="divide-y divide-slate-700/50">
|
||
|
|
{paginatedData.map((row, rowIndex) => (
|
||
|
|
<tr key={rowIndex} className="hover:bg-slate-700/30 transition-colors">
|
||
|
|
{headers.map((_, colIndex) => (
|
||
|
|
<td key={colIndex} className="px-4 py-3 text-slate-300 max-w-[200px] truncate" title={String(row[colIndex] || '')}>
|
||
|
|
{row[colIndex]}
|
||
|
|
</td>
|
||
|
|
))}
|
||
|
|
</tr>
|
||
|
|
))}
|
||
|
|
{paginatedData.length === 0 && (
|
||
|
|
<tr>
|
||
|
|
<td colSpan={headers.length} className="px-4 py-8 text-center text-slate-500">
|
||
|
|
No data available.
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
)}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="bg-slate-900 border-t border-slate-700 p-4 flex items-center justify-between text-sm text-slate-400">
|
||
|
|
<div className="flex items-center gap-4">
|
||
|
|
<span>Showing {Math.min((page - 1) * pageSize + 1, data.length)} to {Math.min(page * pageSize, data.length)} of {data.length} entries</span>
|
||
|
|
<select
|
||
|
|
value={pageSize}
|
||
|
|
onChange={e => { setPageSize(Number(e.target.value)); setPage(1); }}
|
||
|
|
className="bg-slate-800 border border-slate-700 rounded px-2 py-1 focus:outline-none focus:border-blue-500"
|
||
|
|
>
|
||
|
|
<option value={25}>25 per page</option>
|
||
|
|
<option value={50}>50 per page</option>
|
||
|
|
<option value={100}>100 per page</option>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
<div className="flex items-center gap-2">
|
||
|
|
<button
|
||
|
|
disabled={page === 1}
|
||
|
|
onClick={() => setPage(p => p - 1)}
|
||
|
|
className="px-3 py-1 rounded bg-slate-800 hover:bg-slate-700 disabled:opacity-50 disabled:cursor-not-allowed transition-colors"
|
||
|
|
>
|
||
|
|
Previous
|
||
|
|
</button>
|
||
|
|
<span className="px-3 py-1 font-medium text-white">Page {page} of {totalPages || 1}</span>
|
||
|
|
<button
|
||
|
|
disabled={page === totalPages || totalPages === 0}
|
||
|
|
onClick={() => setPage(p => p + 1)}
|
||
|
|
className="px-3 py-1 rounded bg-slate-800 hover:bg-slate-700 disabled:opacity-50 disabled:cursor-not-allowed transition-colors"
|
||
|
|
>
|
||
|
|
Next
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|