import * as React from "react"; import { ColumnDef } from "@tanstack/react-table"; import { Eye, MoreVertical, SquarePen, Trash2 } from "lucide-react"; import { cn } from "@/lib/utils"; import { DropdownMenu, DropdownMenuContent, DropdownMenuTrigger, DropdownMenuItem, } from "@/components/ui/dropdown-menu"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { format } from "date-fns"; import { Link, useRouter } from "@/components/navigation"; import Swal from "sweetalert2"; import withReactContent from "sweetalert2-react-content"; import { deleteBlog } from "@/service/blog/blog"; import { error, loading } from "@/lib/swal"; import { useTranslations } from "next-intl"; const useTableColumns = () => { const t = useTranslations("Table"); // Panggil di dalam hook const columns: ColumnDef[] = [ { accessorKey: "no", header: t("no", { defaultValue: "No" }), cell: ({ row }) => {row.getValue("no")}, }, { accessorKey: "title", header: t("title", { defaultValue: "Title" }), cell: ({ row }) => ( {row.getValue("title")} ), }, { accessorKey: "categoryName", header: t("category", { defaultValue: "Category" }), cell: ({ row }) => {row.getValue("categoryName")}, }, { accessorKey: "createdAt", header: t("upload-date", { defaultValue: "Upload Date" }), cell: ({ row }) => { const createdAt = row.getValue("createdAt") as | string | number | undefined; const formattedDate = createdAt && !isNaN(new Date(createdAt).getTime()) ? format(new Date(createdAt), "dd-MM-yyyy HH:mm:ss") : "-"; return {formattedDate}; }, }, { accessorKey: "tags", header: t("tag", { defaultValue: "Tag" }), cell: ({ row }) => {row.getValue("tags")}, }, { accessorKey: "statusName", header: "Status", cell: ({ row }) => { const statusColors: Record = { diterima: "bg-green-100 text-green-600", "menunggu review": "bg-orange-100 text-orange-600", }; // Mengambil `statusName` dari data API const status = row.getValue("statusName") as string; const statusName = status?.toLocaleLowerCase(); // Ubah ke huruf kecil // Gunakan `statusName` untuk pencocokan const statusStyles = statusColors[statusName] || "bg-gray-100 text-gray-600"; return ( {status} {/* Tetap tampilkan nilai asli */} ); }, }, { id: "actions", accessorKey: "action", header: t("action", { defaultValue: "Action" }), enableHiding: false, cell: ({ row }) => { const router = useRouter(); const MySwal = withReactContent(Swal); async function deleteProcess(id: any) { loading(); const resDelete = await deleteBlog(id); if (resDelete?.error) { error(resDelete.message); return false; } success(); } function success() { MySwal.fire({ title: "Sukses", icon: "success", confirmButtonColor: "#3085d6", confirmButtonText: "OK", }).then((result) => { if (result.isConfirmed) { window.location.reload(); } }); } const handleDeleteBlog = (id: any) => { MySwal.fire({ title: "Hapus Data", text: "", icon: "warning", showCancelButton: true, cancelButtonColor: "#3085d6", confirmButtonColor: "#d33", confirmButtonText: "Hapus", }).then((result) => { if (result.isConfirmed) { deleteProcess(id); } }); }; return ( View Edit handleDeleteBlog(row.original.id)} className="p-2 border-b text-destructive bg-destructive/30 focus:bg-destructive focus:text-destructive-foreground rounded-none" > Delete ); }, }, ]; return columns; }; export default useTableColumns;