154 lines
4.4 KiB
TypeScript
154 lines
4.4 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 { format } from "date-fns";
|
|
import { Link } from "@/components/navigation";
|
|
|
|
const columns: ColumnDef<any>[] = [
|
|
{
|
|
accessorKey: "no",
|
|
header: "No",
|
|
cell: ({ row }) => <span>{row.getValue("no")}</span>,
|
|
},
|
|
{
|
|
accessorKey: "title",
|
|
header: "Title",
|
|
cell: ({ row }) => (
|
|
<div>
|
|
<span>{row.getValue("title")}</span>
|
|
{row.original.isForward && (
|
|
<Button
|
|
variant={"outline"}
|
|
color="primary"
|
|
size="sm"
|
|
className="ml-3 rounded-xl"
|
|
>
|
|
Forward
|
|
</Button>
|
|
)}
|
|
</div>
|
|
),
|
|
},
|
|
|
|
{
|
|
accessorKey: "uniqueCode",
|
|
header: "Code",
|
|
cell: ({ row }) => <span>{row.getValue("uniqueCode")}</span>,
|
|
},
|
|
|
|
{
|
|
accessorKey: "assignmentMainType",
|
|
header: "Type Task",
|
|
cell: ({ row }) => {
|
|
const type = row.getValue("assignmentMainType") as { name: string };
|
|
return <span>{type?.name}</span>;
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "assignmentType",
|
|
header: "Category Task",
|
|
cell: ({ row }) => {
|
|
const type = row.getValue("assignmentType") as { name: string };
|
|
return <span>{type?.name}</span>;
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "createdAt",
|
|
header: "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 <span className="whitespace-nowrap">{formattedDate}</span>;
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "status",
|
|
header: "Status",
|
|
cell: ({ row }) => {
|
|
const isActive = row.original.isActive;
|
|
const isDone = row.original.isDone;
|
|
|
|
let statusText = "";
|
|
if (isDone) {
|
|
statusText = "Selesai";
|
|
} else if (isActive) {
|
|
statusText = "Aktif";
|
|
} else {
|
|
statusText = "Nonaktif";
|
|
}
|
|
|
|
const statusColors: Record<string, string> = {
|
|
Aktif: "bg-primary/20 text-primary",
|
|
Selesai: "bg-success/20 text-success",
|
|
Nonaktif: "bg-gray-200 text-gray-500",
|
|
};
|
|
|
|
const statusStyles = statusColors[statusText] || "default";
|
|
|
|
return (
|
|
<Badge className={cn("rounded-full px-5", statusStyles)}>
|
|
{statusText}
|
|
</Badge>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
id: "actions",
|
|
accessorKey: "action",
|
|
header: "Actions",
|
|
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={`/contributor/task/detail/${row.original.id}`}>
|
|
<DropdownMenuItem className="p-2 border-b text-default-700 group focus:bg-default focus:text-primary-foreground rounded-none">
|
|
<Eye className="w-4 h-4 me-1.5" />
|
|
View
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
<Link href={`/contributor/task/update/${row.original.id}`}>
|
|
<DropdownMenuItem className="p-2 border-b text-default-700 group focus:bg-default focus:text-primary-foreground rounded-none">
|
|
<SquarePen className="w-4 h-4 me-1.5" />
|
|
Edit
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
<DropdownMenuItem className="p-2 border-b text-destructive bg-destructive/30 focus:bg-destructive focus:text-destructive-foreground rounded-none">
|
|
<Trash2 className="w-4 h-4 me-1.5" />
|
|
Delete
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
|
|
export default columns;
|