import * as React from "react"; import { ColumnDef } from "@tanstack/react-table"; import { Eye, MoreVertical, SquarePen, Trash2 } from "lucide-react"; import { cn, getCookiesDecrypt } 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 } from "@/components/navigation"; import { deleteMedia } from "@/service/content/content"; import Swal from "sweetalert2"; import withReactContent from "sweetalert2-react-content"; import { error } from "@/lib/swal"; import { useTranslations } from "next-intl"; const useTableColumns = () => { const t = useTranslations("Table"); // Panggil di dalam hook const MySwal = withReactContent(Swal); const userLevelId = getCookiesDecrypt("ulie"); const columns: ColumnDef[] = [ { accessorKey: "no", header: t("no"), cell: ({ row }) => (

{row.getValue("no")}

), }, { accessorKey: "title", header: t("title"), cell: ({ row }: { row: { getValue: (key: string) => string } }) => { const title: string = row.getValue("title"); return ( {title.length > 50 ? `${title.slice(0, 30)}...` : title} ); }, }, { accessorKey: "categoryName", header: t("category-name"), cell: ({ row }) => ( {row.getValue("categoryName")} ), }, { accessorKey: "createdAt", header: t("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: "creatorName", header: t("creator-group"), cell: ({ row }) => ( {row.getValue("creatorName")} ), }, { accessorKey: "creatorGroupLevelName", header: t("source"), cell: ({ row }) => ( {row.getValue("creatorGroupLevelName")} ), }, { accessorKey: "publishedOn", header: t("published"), cell: ({ row }) => { const isPublish = row.original.isPublish; const isPublishOnPolda = row.original.isPublishOnPolda; let displayText = "-"; if (isPublish && !isPublishOnPolda) { displayText = "Mabes"; } else if (isPublish && isPublishOnPolda) { displayText = "Mabes & Polda"; } else if (!isPublish && isPublishOnPolda) { displayText = "Polda"; } return (
{displayText}
); }, }, { accessorKey: "statusName", header: "Status", cell: ({ row }) => { const statusColors: Record = { diterima: "bg-green-100 text-green-600", "menunggu review": "bg-orange-100 text-orange-600", }; const colors = [ "bg-orange-100 text-orange-600", "bg-orange-100 text-orange-600", "bg-green-100 text-green-600", "bg-blue-100 text-blue-600", "bg-red-200 text-red-600", ]; const status = Number(row.original?.statusId) == 2 && row.original?.reviewedAtLevel !== null && !row.original?.reviewedAtLevel?.includes(`:${userLevelId}:`) && Number(row.original?.creatorGroupLevelId) != Number(userLevelId) ? "1" : row.original?.statusId; const statusStyles = colors[Number(status)] || "bg-red-200 text-red-600"; // const statusStyles = statusColors[status] || "bg-red-200 text-red-600"; return ( {(Number(row.original?.statusId) == 2 && !row.original?.reviewedAtLevel !== null && !row.original?.reviewedAtLevel?.includes( `:${Number(userLevelId)}:` ) && Number(row.original?.creatorGroupLevelId) != Number(userLevelId)) || (Number(row.original?.statusId) == 1 && Number(row.original?.needApprovalFromLevel) == Number(userLevelId)) ? "Menunggu Review" : row.original?.statusName}{" "} ); }, }, { id: "actions", accessorKey: "action", header: t("action"), enableHiding: false, cell: ({ row }) => { const MySwal = withReactContent(Swal); async function doDelete(id: any) { // loading(); const data = { id, }; const response = await deleteMedia(data); if (response?.error) { error(response.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 handleDeleteMedia = (id: any) => { MySwal.fire({ title: "Hapus Data", text: "", icon: "warning", showCancelButton: true, cancelButtonColor: "#3085d6", confirmButtonColor: "#d33", confirmButtonText: "Hapus", }).then((result) => { if (result.isConfirmed) { doDelete(id); } }); }; return ( View Edit handleDeleteMedia(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;