mirror of
https://github.com/SkalaraAI/skalara-core.git
synced 2025-04-09 23:20:15 -04:00
157 lines
4.0 KiB
TypeScript
157 lines
4.0 KiB
TypeScript
"use client";
|
|
|
|
import { ColumnDef } from "@tanstack/react-table";
|
|
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
import Link from "next/link";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from "@/components/ui/tooltip";
|
|
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetDescription,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
SheetTrigger,
|
|
} from "@/components/ui/sheet";
|
|
|
|
import {
|
|
// labels,
|
|
priorities,
|
|
statuses,
|
|
} from "@/components/task-table/data";
|
|
import { Task } from "@/components/task-table/schema";
|
|
import { DataTableColumnHeader } from "./data-table-column-header";
|
|
import { DataTableRowActions } from "./data-table-row-actions";
|
|
|
|
export const columns: ColumnDef<Task>[] = [
|
|
{
|
|
id: "select",
|
|
header: ({ table }) => (
|
|
<Checkbox
|
|
checked={table.getIsAllPageRowsSelected()}
|
|
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
|
|
aria-label="Select all"
|
|
className="translate-y-[2px]"
|
|
/>
|
|
),
|
|
cell: ({ row }) => (
|
|
<Checkbox
|
|
checked={row.getIsSelected()}
|
|
onCheckedChange={(value) => row.toggleSelected(!!value)}
|
|
aria-label="Select row"
|
|
className="translate-y-[2px]"
|
|
/>
|
|
),
|
|
enableSorting: false,
|
|
enableHiding: false,
|
|
},
|
|
{
|
|
accessorKey: "id",
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title="Project" />
|
|
),
|
|
cell: ({ row }) => (
|
|
<div className="w-[80px]">TASK-{row.getValue("id")}</div>
|
|
),
|
|
enableSorting: false,
|
|
enableHiding: false,
|
|
},
|
|
{
|
|
accessorKey: "name",
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title="Name" />
|
|
),
|
|
cell: ({ row }) => {
|
|
return (
|
|
<Sheet>
|
|
<div className="flex space-x-2">
|
|
{row.original.feature_id && (
|
|
<Badge variant="outline">FEAT-{row.original.feature_id}</Badge>
|
|
)}
|
|
<SheetTrigger className="max-w-[500px] truncate font-medium">
|
|
{row.getValue("name")}
|
|
</SheetTrigger>
|
|
</div>
|
|
<SheetContent className="w-[800px]">
|
|
<SheetHeader>
|
|
<SheetTitle>{row.getValue("name")}</SheetTitle>
|
|
<SheetDescription>{row.original.description}</SheetDescription>
|
|
</SheetHeader>
|
|
</SheetContent>
|
|
</Sheet>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "status",
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title="Status" />
|
|
),
|
|
cell: ({ row }) => {
|
|
const status = statuses.find(
|
|
(status) => status.value === row.getValue("status")
|
|
);
|
|
|
|
if (!status) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="flex w-[100px] items-center">
|
|
{status.icon && (
|
|
<status.icon className="mr-2 h-4 w-4 text-muted-foreground" />
|
|
)}
|
|
<span>{status.label}</span>
|
|
</div>
|
|
);
|
|
},
|
|
filterFn: (row, id, value) => {
|
|
return value.includes(row.getValue(id));
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "priority",
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title="Priority" />
|
|
),
|
|
cell: ({ row }) => {
|
|
const priority = priorities.find(
|
|
(priority) => priority.value === row.getValue("priority")
|
|
);
|
|
|
|
if (!priority) {
|
|
return (
|
|
<div className="flex items-center">
|
|
<Button variant="outline" size="sm">
|
|
Set Priority
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex items-center">
|
|
{priority.icon && (
|
|
<priority.icon className="mr-2 h-4 w-4 text-muted-foreground" />
|
|
)}
|
|
<span>{priority.label}</span>
|
|
</div>
|
|
);
|
|
},
|
|
filterFn: (row, id, value) => {
|
|
return value.includes(row.getValue(id));
|
|
},
|
|
},
|
|
{
|
|
id: "actions",
|
|
cell: ({ row }) => <DataTableRowActions row={row} />,
|
|
},
|
|
];
|