Spaces:
Running
Running
File size: 16,936 Bytes
b03f016 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 | import { useState, useEffect, useCallback, useRef } from "react";
import { HF_ORG } from "../../../config";
const PAGE_SIZE = 100;
const CELL_TRUNCATE_LEN = 200;
interface HfRow {
row_idx: number;
row: Record<string, unknown>;
}
interface HfFeature {
feature_idx: number;
name: string;
type: Record<string, unknown>;
}
interface HfResponse {
rows: HfRow[];
features: HfFeature[];
num_rows_total: number;
}
interface TableViewerProps {
datasetRepo: string;
split?: string;
onClose: () => void;
}
// βββ Cell Expansion Modal βββββββββββββββββββββββββββββββββββββββββββββββββββββ
interface CellModalProps {
value: string;
colName: string;
onClose: () => void;
}
function CellModal({ value, colName, onClose }: CellModalProps) {
const [copied, setCopied] = useState(false);
const handleCopy = useCallback(async () => {
try {
await navigator.clipboard.writeText(value);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
} catch {
// fallback: do nothing
}
}, [value]);
// Close on Escape
useEffect(() => {
const handler = (e: KeyboardEvent) => {
if (e.key === "Escape") onClose();
};
window.addEventListener("keydown", handler);
return () => window.removeEventListener("keydown", handler);
}, [onClose]);
return (
<div
className="fixed inset-0 z-50 flex items-center justify-center bg-black/80 p-4"
onClick={(e) => {
if (e.target === e.currentTarget) onClose();
}}
>
<div className="bg-gray-900 border border-gray-700 rounded-lg w-full max-w-4xl max-h-[90vh] flex flex-col shadow-2xl">
{/* Header */}
<div className="flex items-center justify-between px-4 py-3 border-b border-gray-700 flex-shrink-0">
<span className="text-sm font-medium text-gray-200 truncate max-w-[80%]">
{colName}
</span>
<div className="flex items-center gap-2">
<button
onClick={handleCopy}
className="text-xs px-3 py-1 rounded bg-gray-700 hover:bg-gray-600 text-gray-300 transition-colors border border-gray-600"
title="Copy to clipboard"
>
{copied ? "Copied!" : "Copy"}
</button>
<button
onClick={onClose}
className="text-gray-400 hover:text-gray-200 transition-colors text-lg leading-none px-1"
title="Close (Esc)"
>
Γ
</button>
</div>
</div>
{/* Full value β scrollable, monospace */}
<div className="flex-1 overflow-auto p-4">
<pre className="font-mono text-sm text-gray-100 whitespace-pre-wrap break-words leading-relaxed">
{value}
</pre>
</div>
{/* Footer with char count */}
<div className="px-4 py-2 border-t border-gray-700 flex-shrink-0">
<span className="text-xs text-gray-500">{value.length.toLocaleString()} characters β complete, untruncated</span>
</div>
</div>
</div>
);
}
// βββ Table Cell βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
interface CellProps {
value: unknown;
colName: string;
onExpand: (value: string, colName: string) => void;
}
function TableCell({ value, colName, onExpand }: CellProps) {
const str = value === null || value === undefined
? ""
: typeof value === "object"
? JSON.stringify(value, null, 2)
: String(value);
const isTruncated = str.length > CELL_TRUNCATE_LEN;
const display = isTruncated ? str.slice(0, CELL_TRUNCATE_LEN) + "..." : str;
return (
<td className="px-3 py-2 text-xs text-gray-300 max-w-xs border-b border-gray-800 align-top">
<span className="whitespace-pre-wrap break-words">{display}</span>
{isTruncated && (
<button
onClick={() => onExpand(str, colName)}
className="ml-1 text-cyan-400 hover:text-cyan-300 text-xs underline underline-offset-2 transition-colors whitespace-nowrap"
title="Show complete value"
>
Show more
</button>
)}
</td>
);
}
// βββ Sort icon ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function SortIcon({ dir }: { dir: "asc" | "desc" | null }) {
if (dir === null) return <span className="text-gray-600 ml-1 text-xs">β
</span>;
if (dir === "asc") return <span className="text-cyan-400 ml-1 text-xs">β</span>;
return <span className="text-cyan-400 ml-1 text-xs">β</span>;
}
// βββ Main Component βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export default function TableViewer({ datasetRepo, split = "train", onClose }: TableViewerProps) {
// Ensure dataset repo has org prefix for HF API calls
const fullRepo = datasetRepo.includes("/") ? datasetRepo : `${HF_ORG}/${datasetRepo}`;
const [rows, setRows] = useState<HfRow[]>([]);
const [columns, setColumns] = useState<string[]>([]);
const [totalRows, setTotalRows] = useState<number | null>(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [page, setPage] = useState(0);
const [searchQuery, setSearchQuery] = useState("");
const [sortCol, setSortCol] = useState<string | null>(null);
const [sortDir, setSortDir] = useState<"asc" | "desc">("asc");
const [expandedCell, setExpandedCell] = useState<{ value: string; colName: string } | null>(null);
const fetchRef = useRef(0);
const fetchRows = useCallback(async (pageIndex: number) => {
setLoading(true);
setError(null);
const fetchId = ++fetchRef.current;
const offset = pageIndex * PAGE_SIZE;
const baseUrl = "https://datasets-server.huggingface.co/rows";
const urlWithConfig = `${baseUrl}?dataset=${encodeURIComponent(fullRepo)}&config=default&split=${split}&offset=${offset}&length=${PAGE_SIZE}`;
const urlWithoutConfig = `${baseUrl}?dataset=${encodeURIComponent(fullRepo)}&split=${split}&offset=${offset}&length=${PAGE_SIZE}`;
let data: HfResponse | null = null;
try {
const res = await fetch(urlWithConfig);
if (res.ok) {
data = await res.json() as HfResponse;
} else {
// Try without config param
const res2 = await fetch(urlWithoutConfig);
if (res2.ok) {
data = await res2.json() as HfResponse;
} else {
const errText = await res2.text();
throw new Error(`API error ${res2.status}: ${errText.slice(0, 200)}`);
}
}
} catch (e) {
if (fetchRef.current === fetchId) {
setError(e instanceof Error ? e.message : "Failed to fetch dataset rows");
setLoading(false);
}
return;
}
if (fetchRef.current !== fetchId) return;
if (data) {
const cols = data.features.map((f) => f.name);
setColumns(cols);
setRows(data.rows);
setTotalRows(data.num_rows_total);
}
setLoading(false);
}, [fullRepo, split]);
useEffect(() => {
fetchRows(page);
}, [fetchRows, page]);
// ββ Derived: search + sort applied to currently loaded page ββ
const filteredRows = (() => {
let result = rows;
if (searchQuery.trim()) {
const q = searchQuery.toLowerCase();
result = result.filter((r) =>
columns.some((col) => {
const v = r.row[col];
if (v === null || v === undefined) return false;
return String(typeof v === "object" ? JSON.stringify(v) : v).toLowerCase().includes(q);
})
);
}
if (sortCol) {
result = [...result].sort((a, b) => {
const av = a.row[sortCol];
const bv = b.row[sortCol];
const as = av === null || av === undefined ? "" : typeof av === "object" ? JSON.stringify(av) : String(av);
const bs = bv === null || bv === undefined ? "" : typeof bv === "object" ? JSON.stringify(bv) : String(bv);
// Try numeric sort first
const an = Number(as);
const bn = Number(bs);
if (!isNaN(an) && !isNaN(bn)) {
return sortDir === "asc" ? an - bn : bn - an;
}
return sortDir === "asc" ? as.localeCompare(bs) : bs.localeCompare(as);
});
}
return result;
})();
const handleSort = (col: string) => {
if (sortCol === col) {
if (sortDir === "asc") {
setSortDir("desc");
} else {
setSortCol(null);
setSortDir("asc");
}
} else {
setSortCol(col);
setSortDir("asc");
}
};
const handleExpand = (value: string, colName: string) => {
setExpandedCell({ value, colName });
};
const startRow = page * PAGE_SIZE + 1;
const endRow = totalRows !== null ? Math.min((page + 1) * PAGE_SIZE, totalRows) : (page + 1) * PAGE_SIZE;
const hasPrev = page > 0;
const hasNext = totalRows !== null ? (page + 1) * PAGE_SIZE < totalRows : rows.length === PAGE_SIZE;
const shortName = datasetRepo.split("/").pop() ?? datasetRepo;
return (
<>
{/* Full-screen overlay */}
<div className="fixed inset-0 z-40 bg-gray-950 flex flex-col">
{/* ββ Top bar ββββββββββββββββββββββββββββββββββββββββββββββββββ */}
<div className="flex items-center justify-between px-4 py-3 border-b border-gray-800 flex-shrink-0 bg-gray-900">
<div className="flex items-center gap-3 min-w-0">
<span className="text-xs text-gray-500 uppercase tracking-wider font-medium">Table Viewer</span>
<span className="text-gray-600">Β·</span>
<span className="text-sm font-medium text-gray-200 truncate" title={datasetRepo}>
{shortName}
</span>
<span className="text-xs text-gray-500 truncate hidden sm:block" title={datasetRepo}>
({datasetRepo.split("/")[0]})
</span>
{totalRows !== null && (
<span className="text-xs text-gray-500 flex-shrink-0">
{totalRows.toLocaleString()} rows
</span>
)}
</div>
<div className="flex items-center gap-3 flex-shrink-0">
{/* Search */}
<input
type="text"
placeholder="Search all cellsβ¦"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
className="text-xs bg-gray-800 border border-gray-700 rounded px-2.5 py-1.5 text-gray-200 placeholder-gray-500 focus:outline-none focus:border-cyan-600 w-48 sm:w-64"
/>
{/* Close */}
<button
onClick={onClose}
className="text-gray-400 hover:text-gray-200 transition-colors text-xl leading-none px-1"
title="Close viewer"
>
Γ
</button>
</div>
</div>
{/* ββ Body βββββββββββββββββββββββββββββββββββββββββββββββββββββββ */}
<div className="flex-1 overflow-auto">
{loading && (
<div className="flex items-center justify-center h-32">
<div className="flex items-center gap-3 text-gray-400">
<svg className="animate-spin h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" />
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z" />
</svg>
<span className="text-sm">Loading rowsβ¦</span>
</div>
</div>
)}
{error && !loading && (
<div className="flex flex-col items-center justify-center h-32 gap-3">
<p className="text-sm text-red-400">{error}</p>
<button
onClick={() => fetchRows(page)}
className="text-xs px-3 py-1.5 rounded bg-gray-700 hover:bg-gray-600 text-gray-300 border border-gray-600 transition-colors"
>
Retry
</button>
</div>
)}
{!loading && !error && filteredRows.length === 0 && (
<div className="flex items-center justify-center h-32">
<p className="text-sm text-gray-500 italic">
{searchQuery.trim() ? "No rows match your search." : "No rows returned."}
</p>
</div>
)}
{!loading && !error && filteredRows.length > 0 && (
<table className="w-full border-collapse text-left table-auto">
<thead className="sticky top-0 z-10 bg-gray-900">
<tr>
{/* Row index column */}
<th className="px-3 py-2.5 text-xs font-medium text-gray-500 border-b border-gray-700 w-12 bg-gray-900">
#
</th>
{columns.map((col) => (
<th
key={col}
onClick={() => handleSort(col)}
className="px-3 py-2.5 text-xs font-medium text-gray-300 border-b border-gray-700 cursor-pointer select-none hover:text-gray-100 hover:bg-gray-800 transition-colors whitespace-nowrap bg-gray-900"
>
{col}
<SortIcon dir={sortCol === col ? sortDir : null} />
</th>
))}
</tr>
</thead>
<tbody>
{filteredRows.map((r) => (
<tr
key={r.row_idx}
className="hover:bg-gray-800/40 transition-colors"
>
<td className="px-3 py-2 text-xs text-gray-600 border-b border-gray-800 align-top tabular-nums">
{r.row_idx}
</td>
{columns.map((col) => (
<TableCell
key={col}
value={r.row[col]}
colName={col}
onExpand={handleExpand}
/>
))}
</tr>
))}
</tbody>
</table>
)}
</div>
{/* ββ Pagination bar βββββββββββββββββββββββββββββββββββββββββββββ */}
{!loading && !error && totalRows !== null && (
<div className="flex items-center justify-between px-4 py-2.5 border-t border-gray-800 bg-gray-900 flex-shrink-0">
<span className="text-xs text-gray-500">
{searchQuery.trim()
? `${filteredRows.length} matching rows on this page`
: `Rows ${startRow}β${endRow} of ${totalRows.toLocaleString()}`}
</span>
<div className="flex items-center gap-2">
<button
onClick={() => setPage((p) => p - 1)}
disabled={!hasPrev}
className="text-xs px-3 py-1 rounded bg-gray-800 hover:bg-gray-700 text-gray-300 border border-gray-700 transition-colors disabled:opacity-40 disabled:cursor-not-allowed"
>
β Prev
</button>
<span className="text-xs text-gray-500 tabular-nums">
Page {page + 1} / {Math.ceil(totalRows / PAGE_SIZE)}
</span>
<button
onClick={() => setPage((p) => p + 1)}
disabled={!hasNext}
className="text-xs px-3 py-1 rounded bg-gray-800 hover:bg-gray-700 text-gray-300 border border-gray-700 transition-colors disabled:opacity-40 disabled:cursor-not-allowed"
>
Next β
</button>
</div>
</div>
)}
</div>
{/* ββ Cell Expansion Modal βββββββββββββββββββββββββββββββββββββββ */}
{expandedCell && (
<CellModal
value={expandedCell.value}
colName={expandedCell.colName}
onClose={() => setExpandedCell(null)}
/>
)}
</>
);
}
|