123 lines
3.5 KiB
TypeScript
123 lines
3.5 KiB
TypeScript
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 {
|
|
formatDateToIndonesian,
|
|
getOnlyDate,
|
|
htmlToString,
|
|
} from "@/utils/globals";
|
|
import { Link, useRouter } from "@/i18n/routing";
|
|
import {
|
|
Accordion,
|
|
AccordionContent,
|
|
AccordionItem,
|
|
AccordionTrigger,
|
|
} from "@/components/ui/accordion";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Collapsible, CollapsibleContent } from "@/components/ui/collapsible";
|
|
|
|
const columns: ColumnDef<any>[] = [
|
|
{
|
|
accessorKey: "no",
|
|
header: "No",
|
|
cell: ({ row }) => <span>{row.getValue("no")}</span>,
|
|
},
|
|
|
|
{
|
|
accessorKey: "title",
|
|
header: "Judul",
|
|
cell: ({ row }) => <span>{row.getValue("title")}</span>,
|
|
},
|
|
{
|
|
accessorKey: "link",
|
|
header: "Jumlah Amplifikasi",
|
|
cell: ({ row }) => <span>{row.getValue("resultTotal")}</span>,
|
|
},
|
|
// {
|
|
// accessorKey: "status",
|
|
// header: "Status",
|
|
// cell: ({ row }) => <span>{row.getValue("status")}</span>,
|
|
// },
|
|
{
|
|
accessorKey: "isProcessing",
|
|
header: () => <div className="text-center">Status</div>,
|
|
cell: ({ row }) => {
|
|
const raw = row.getValue("isProcessing");
|
|
var status = "Sedang Diproses"
|
|
if (Boolean(raw) == true) {
|
|
status = "Selesai Diproses";
|
|
}
|
|
return <div className="text-center">{status}</div>;
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "createdAt",
|
|
header: () => <div className="text-center">Tanggal Penarikan</div>,
|
|
cell: ({ row }) => {
|
|
const raw = row.getValue("createdAt");
|
|
if (!raw || typeof raw !== "string")
|
|
return <div className="text-center">-</div>;
|
|
|
|
const date = new Date(raw);
|
|
if (isNaN(date.getTime())) return <div className="text-center">-</div>;
|
|
|
|
const formatted = date.toLocaleDateString("id-ID", {
|
|
day: "2-digit",
|
|
month: "short",
|
|
year: "numeric",
|
|
});
|
|
|
|
return <div className="text-center">{formatted}</div>;
|
|
},
|
|
},
|
|
{
|
|
id: "actions",
|
|
accessorKey: "action",
|
|
header: "Action",
|
|
enableHiding: false,
|
|
cell: ({ row }) => {
|
|
return (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
size="icon"
|
|
className="bg-transparent ring-offset-transparent hover:bg-transparent hover:ring-0 hover:ring-transparent"
|
|
>
|
|
<span className="sr-only">Open menu</span>
|
|
<MoreVertical className="h-4 w-4 text-default-800" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="p-0" align="end">
|
|
<Link href={`/admin/media-tracking/detail/${row.original.id}`}>
|
|
<DropdownMenuItem className="p-2 border-b text-default-700 group focus:bg-default focus:text-primary-foreground items-center rounded-none">
|
|
<Eye className="w-4 h-4 me-1.5" />
|
|
View
|
|
{row.original.mediaUpload.fileType.secondaryName &&
|
|
row.original.mediaUpload.fileType.secondaryName.toLowerCase()}
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
|
|
export default columns;
|