portal-dashboard/app/routes/file-manager/columns.tsx

118 lines
3.3 KiB
TypeScript
Raw Normal View History

import { TrashIcon } from "@radix-ui/react-icons";
import type { ColumnDef } from "@tanstack/react-table";
2024-03-27 06:22:58 +00:00
import { DownloadIcon, FileIcon, MoreIcon } from "~/components/icons";
import { Checkbox } from "~/components/ui/checkbox";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuGroup,
DropdownMenuItem,
DropdownMenuTrigger,
} from "~/components/ui/dropdown-menu";
import { cn } from "~/utils";
import type { FileItem } from "~/data/file-provider";
2024-03-26 13:42:18 +00:00
import { usePinning } from "~/hooks/usePinning";
2024-03-27 06:02:21 +00:00
import filesize from "~/components/lib/filesize";
2024-03-27 06:22:58 +00:00
import { Button } from "~/components/ui/button";
2024-03-27 06:02:21 +00:00
// This type is used to define the shape of our data.
// You can use a Zod schema here if you want.
export type File = {
name: string;
cid: string;
size: string;
createdOn: string;
};
2024-03-21 20:46:02 +00:00
export const columns: ColumnDef<FileItem>[] = [
// {
// id: "select",
// size: 20,
// header: ({ table }) => (
// <Checkbox
// checked={
// table.getIsAllPageRowsSelected() ||
// (table.getIsSomePageRowsSelected() && "indeterminate")
// }
// onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
// aria-label="Select all"
// />
// ),
// cell: ({ row }) => (
// <Checkbox
// checked={row.getIsSelected()}
// onCheckedChange={(value) => row.toggleSelected(!!value)}
// aria-label="Select row"
// />
// ),
// enableSorting: false,
// enableHiding: false,
// },
{
2024-03-27 06:22:58 +00:00
accessorKey: "cid",
header: "CID",
cell: ({ row }) => (
<div className="flex items-center gap-x-2">
<FileIcon />
2024-03-27 06:22:58 +00:00
{row.getValue("name") ?? row.getValue("cid")}
</div>
),
},
{
accessorKey: "size",
header: "Size",
2024-03-27 06:02:21 +00:00
cell: ({ row }) => {
const size = row.getValue("size");
return size ? filesize(size as number, 2) : "";
},
},
{
accessorKey: "pinned",
header: "Pinned On",
cell: ({ row }) => new Date(row.getValue("pinned")).toLocaleString(),
},
{
accessorKey: "actions",
header: () => null,
size: 20,
2024-03-26 13:42:18 +00:00
cell: ({ row }) => {
2024-03-26 14:54:51 +00:00
const { unpin } = usePinning();
2024-03-27 06:22:58 +00:00
const downloadFile = () => {
// TODO: @pcfreak30 download file
const cid = row.getValue("cid");
console.log(cid);
};
2024-03-26 13:42:18 +00:00
return (
2024-03-27 06:22:58 +00:00
<div className="flex space-x-2 w-10 items-center justify-between">
<Button size={"icon"} variant="ghost" onClick={downloadFile}>
<DownloadIcon className="w-5"/>
</Button>
2024-03-26 14:54:51 +00:00
<DropdownMenu>
<DropdownMenuTrigger
className={cn(
2024-03-27 06:22:58 +00:00
"opacity-0 group-hover:opacity-100 data-[state=open]:opacity-100",
2024-03-26 14:54:51 +00:00
row.getIsSelected() && "block",
)}>
<MoreIcon />
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuGroup>
<DropdownMenuItem
variant="destructive"
onClick={() => {
unpin(row.getValue("cid"));
}}>
<TrashIcon className="mr-2" />
Delete
</DropdownMenuItem>
</DropdownMenuGroup>
</DropdownMenuContent>
</DropdownMenu>
</div>
);
},
},
];