mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-14 06:39:08 +02:00
85 lines
2.4 KiB
TypeScript
85 lines
2.4 KiB
TypeScript
|
"use client";
|
||
|
|
||
|
import { ColumnDef } from "@tanstack/react-table";
|
||
|
import { ResourcesDataTable } from "./ResourcesDataTable";
|
||
|
import {
|
||
|
DropdownMenu,
|
||
|
DropdownMenuContent,
|
||
|
DropdownMenuItem,
|
||
|
DropdownMenuTrigger,
|
||
|
} from "@app/components/ui/dropdown-menu";
|
||
|
import { Button } from "@app/components/ui/button";
|
||
|
import { ArrowUpDown, MoreHorizontal } from "lucide-react";
|
||
|
import Link from "next/link";
|
||
|
import { useRouter } from "next/navigation";
|
||
|
|
||
|
export type ResourceRow = {
|
||
|
id: string;
|
||
|
name: string;
|
||
|
orgId: string;
|
||
|
};
|
||
|
|
||
|
export const columns: ColumnDef<ResourceRow>[] = [
|
||
|
{
|
||
|
accessorKey: "name",
|
||
|
header: ({ column }) => {
|
||
|
return (
|
||
|
<Button
|
||
|
variant="ghost"
|
||
|
onClick={() =>
|
||
|
column.toggleSorting(column.getIsSorted() === "asc")
|
||
|
}
|
||
|
>
|
||
|
Name
|
||
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
||
|
</Button>
|
||
|
);
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
id: "actions",
|
||
|
cell: ({ row }) => {
|
||
|
const resourceRow = row.original;
|
||
|
|
||
|
return (
|
||
|
<DropdownMenu>
|
||
|
<DropdownMenuTrigger asChild>
|
||
|
<Button variant="ghost" className="h-8 w-8 p-0">
|
||
|
<span className="sr-only">Open menu</span>
|
||
|
<MoreHorizontal className="h-4 w-4" />
|
||
|
</Button>
|
||
|
</DropdownMenuTrigger>
|
||
|
<DropdownMenuContent align="end">
|
||
|
<DropdownMenuItem>
|
||
|
<Link
|
||
|
href={`/${resourceRow.orgId}/resources/${resourceRow.id}`}
|
||
|
>
|
||
|
View settings
|
||
|
</Link>
|
||
|
</DropdownMenuItem>
|
||
|
</DropdownMenuContent>
|
||
|
</DropdownMenu>
|
||
|
);
|
||
|
},
|
||
|
},
|
||
|
];
|
||
|
|
||
|
type ResourcesTableProps = {
|
||
|
resources: ResourceRow[];
|
||
|
orgId: string;
|
||
|
};
|
||
|
|
||
|
export default function SitesTable({ resources, orgId }: ResourcesTableProps) {
|
||
|
const router = useRouter();
|
||
|
|
||
|
return (
|
||
|
<ResourcesDataTable
|
||
|
columns={columns}
|
||
|
data={resources}
|
||
|
addResource={() => {
|
||
|
router.push(`/${orgId}/resources/create`);
|
||
|
}}
|
||
|
/>
|
||
|
);
|
||
|
}
|