Spaces:
Running
Running
File size: 13,366 Bytes
17fabdd 65eda56 d81bdc0 65eda56 d81bdc0 65eda56 17fabdd 65eda56 17fabdd |
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 |
"use client";
import { useEffect, useState } from "react";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import { Button } from "@/components/ui/button";
import { DownloadIcon, EyeOpenIcon, TrashIcon } from "@radix-ui/react-icons";
import { ChevronLeft, ChevronRight, Loader2 } from "lucide-react";
import { formatDatetime } from "@/utils/formatDatetime";
import { createClient } from "@/utils/supabase/client";
import { toast } from "@/hooks/use-toast";
interface FileTableProps {
fetchData: () => Promise<void>;
ragData: any[];
}
export default function FileTable({ fetchData, ragData }: FileTableProps) {
const supabase = createClient();
const [loadingMap, setLoadingMap] = useState<Record<string, boolean>>({});
const [currentPage, setCurrentPage] = useState(1);
const [sortedData, setSortedData] = useState<any[]>([]);
const itemsPerPage = 10; // Adjust as needed
const pagesToShow = 2; // Number of page buttons to display at once
useEffect(() => {
// Sort data by created_at in descending order (newest first)
if (ragData && ragData.length > 0) {
const sorted = [...ragData].sort((a, b) => {
return (
new Date(b.created_at).getTime() - new Date(a.created_at).getTime()
);
});
setSortedData(sorted);
} else {
setSortedData([]);
}
}, [ragData]);
const downloadAllFiles = async () => {
try {
const res = await fetch("/api/download-all");
if (!res.ok) {
throw new Error("Gagal mengunduh file ZIP");
}
const blob = await res.blob();
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
link.download = "all-files.zip";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
URL.revokeObjectURL(url);
} catch (error) {
toast({
title: "Gagal",
description: "Tidak dapat mengunduh semua file.",
variant: "destructive",
});
}
};
const deleteAllFiles = async () => {
const confirmed = window.confirm("Yakin ingin menghapus SEMUA file?");
if (!confirmed) return;
try {
const fileNames = sortedData.map((item) => item.name);
setLoadingMap(
fileNames.reduce((acc, name) => ({ ...acc, [name]: true }), {}),
);
const { error } = await supabase.storage
.from("pnp-bot-storage")
.remove(fileNames);
if (error) {
toast({
title: "Gagal menghapus semua file",
description: error.message,
variant: "destructive",
});
} else {
toast({
title: "Semua file berhasil dihapus",
description: `${fileNames.length} file telah dihapus.`,
});
fetchData(); // refresh data
}
} catch (err) {
console.error("Gagal menghapus semua file:", err);
toast({
title: "Terjadi kesalahan",
description: "Tidak dapat menghapus semua file.",
variant: "destructive",
});
} finally {
setLoadingMap({});
}
};
const deleteItem = async (fileName: string) => {
const confirmed = window.confirm(
`Yakin ingin menghapus file "${fileName}"?`,
);
if (!confirmed) return;
try {
setLoadingMap((prev) => ({ ...prev, [fileName]: true }));
const { error } = await supabase.storage
.from("pnp-bot-storage")
.remove([fileName]);
if (error) {
toast({
title: "Gagal menghapus file",
description: error.message,
variant: "destructive",
});
} else {
toast({
title: "File berhasil dihapus",
description: `File "${fileName}" telah dihapus.`,
});
fetchData(); // refresh daftar file
}
} catch (err) {
console.error("Gagal menghapus:", err);
toast({
title: "Terjadi kesalahan",
description: "Tidak dapat menghapus file.",
variant: "destructive",
});
} finally {
setLoadingMap((prev) => ({ ...prev, [fileName]: false }));
}
};
// Lihat File (Open in New Tab)
const inspectItem = (fileName: string) => {
const { data } = supabase.storage
.from("pnp-bot-storage")
.getPublicUrl(fileName);
if (!data?.publicUrl) {
toast({
title: "Gagal membuka file",
description: `File "${fileName}" tidak memiliki URL publik.`,
variant: "destructive",
});
return;
}
window.open(data.publicUrl, "_blank");
};
// Unduh File
const downloadItem = async (fileName: string) => {
try {
// Retrieve the file as a blob using the download method
const { data, error } = await supabase.storage
.from("pnp-bot-storage") // Use your bucket name
.download(fileName);
if (error) {
toast({
title: "Gagal mengunduh file",
description: error.message || "Terjadi kesalahan saat mengunduh.",
variant: "destructive",
});
return;
}
// Create a link element to download the file
const url = URL.createObjectURL(data);
const link = document.createElement("a");
link.href = url;
link.download = fileName;
// Programmatically trigger the download
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
// Clean up the object URL
URL.revokeObjectURL(url);
toast({
title: "Unduh berhasil",
description: `File "${fileName}" berhasil diunduh.`,
duration: 2000,
});
} catch (err) {
console.error("Gagal mengunduh:", err);
toast({
title: "Terjadi kesalahan",
description: "Tidak dapat mengunduh file.",
variant: "destructive",
});
}
};
// Calculate pagination
const totalPages = Math.ceil(sortedData.length / itemsPerPage);
const paginatedData = sortedData.slice(
(currentPage - 1) * itemsPerPage,
currentPage * itemsPerPage,
);
const goToNextPage = () => {
if (currentPage < totalPages) {
setCurrentPage(currentPage + 1);
}
};
const goToPrevPage = () => {
if (currentPage > 1) {
setCurrentPage(currentPage - 1);
}
};
const goToPage = (page: number) => {
setCurrentPage(page);
};
// Calculate the range of page numbers to display
const startPage = Math.max(1, currentPage - Math.floor(pagesToShow / 2));
const endPage = Math.min(totalPages, startPage + pagesToShow - 1);
const pageNumbers = Array.from(
{ length: endPage - startPage + 1 },
(_, index) => startPage + index,
);
return (
<div className="space-y-4">
<Table>
<TableHeader className="bg-slate-100">
<TableRow>
<TableHead className="text-center">#</TableHead>
<TableHead className="min-w-[240px]">Name</TableHead>
<TableHead>Uploaded At</TableHead>
<TableHead>File Size</TableHead>
<TableHead className="text-center">
<div className="flex justify-center gap-2">
<Button
size="sm"
variant="outline"
className="hover:bg-blue-600 hover:text-white"
onClick={downloadAllFiles}
>
<DownloadIcon className="mr-1 h-4 w-4" />
All
</Button>
<Button
size="sm"
variant="destructive"
className="hover:bg-red-800"
onClick={deleteAllFiles}
>
<TrashIcon className="mr-1 h-4 w-4" />
All
</Button>
</div>
</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{paginatedData && paginatedData.length > 0 ? (
paginatedData.map((item: any, index: number) => (
<TableRow key={index}>
<TableCell className="text-center">
{(currentPage - 1) * itemsPerPage + index + 1}
</TableCell>
<TableCell className="min-w-[240px] font-medium">
{item.name}
</TableCell>
<TableCell>{formatDatetime(item.created_at)}</TableCell>
<TableCell>{item.metadata.size}</TableCell>
<TableCell className="flex justify-center gap-2">
<Button
variant={"secondary"}
className="hover:bg-neutral-500 hover:text-white"
onClick={() => inspectItem(item.name)}
>
<EyeOpenIcon className="h-4 w-4" />
</Button>
<Button
variant="outline"
className="hover:bg-blue-600 hover:text-white"
onClick={() => downloadItem(item.name)}
>
<DownloadIcon className="h-4 w-4" />
</Button>
<Button
variant={"destructive"}
className="hover:bg-red-800"
onClick={() => deleteItem(item.name)}
>
{loadingMap[item.name] ? (
<Loader2 className="h-4 w-4 animate-spin" />
) : (
<TrashIcon className="h-4 w-4" />
)}
</Button>
</TableCell>
</TableRow>
))
) : (
<TableRow>
<TableCell colSpan={5} className="py-4 text-center">
No Data Available
</TableCell>
</TableRow>
)}
</TableBody>
</Table>
{/* Pagination Controls */}
{sortedData.length > 0 && (
<div className="flex items-center justify-between px-4 py-3">
<div className="text-sm text-muted-foreground">
Showing{" "}
<span className="font-medium">
{(currentPage - 1) * itemsPerPage + 1}
</span>{" "}
to{" "}
<span className="font-medium">
{Math.min(currentPage * itemsPerPage, sortedData.length)}
</span>{" "}
of <span className="font-medium">{sortedData.length}</span> files
</div>
<div className="flex items-center space-x-2">
<Button
variant="outline"
size="sm"
onClick={goToPrevPage}
disabled={currentPage === 1}
className="px-3"
>
<ChevronLeft className="h-4 w-4" />
</Button>
{/* Always show first page */}
<Button
variant="outline"
size="sm"
onClick={() => goToPage(1)}
className={currentPage === 1 ? "bg-blue-500 text-white" : ""}
disabled={currentPage === 1}
>
1
</Button>
{/* Show "..." if current page is far from start */}
{currentPage > 3 && <span className="px-2">...</span>}
{/* Dynamic page numbers (middle range) */}
<div className="flex space-x-1">
{Array.from({ length: Math.min(3, totalPages - 2) }, (_, i) => {
let page;
if (currentPage <= 2)
page = i + 2; // Near start: 2, 3, 4
else if (currentPage >= totalPages - 1)
page = totalPages - 2 + i; // Near end
else page = currentPage - 1 + i; // Middle range
if (page > 1 && page < totalPages) {
return (
<Button
key={page}
variant="outline"
size="sm"
className={
currentPage === page ? "bg-blue-500 text-white" : ""
}
onClick={() => goToPage(page)}
>
{page}
</Button>
);
}
return null;
})}
</div>
{/* Show "..." if current page is far from end */}
{currentPage < totalPages - 2 && <span className="px-2">...</span>}
{/* Always show last page (if different from first) */}
{totalPages > 1 && (
<Button
variant="outline"
size="sm"
onClick={() => goToPage(totalPages)}
disabled={currentPage === totalPages}
className={
currentPage === totalPages ? "bg-blue-500 text-white" : ""
}
>
{totalPages}
</Button>
)}
<Button
variant="outline"
size="sm"
onClick={goToNextPage}
disabled={currentPage === totalPages || totalPages === 0}
className="px-3"
>
<ChevronRight className="h-4 w-4" />
</Button>
</div>
</div>
)}
</div>
);
}
|