75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
import type { Column } from "@tanstack/react-table";
|
|
import {
|
|
ArrowDownIcon,
|
|
ArrowUpIcon,
|
|
ChevronsUpDown,
|
|
EyeOff,
|
|
} from "lucide-react";
|
|
import type { HTMLAttributes } from "react";
|
|
import { Button } from "~/components/ui/button";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "~/components/ui/dropdown-menu";
|
|
import { cn } from "~/lib/utils";
|
|
|
|
interface DataTableColumnHeaderProps<TData, TValue>
|
|
extends HTMLAttributes<HTMLDivElement> {
|
|
column: Column<TData, TValue>;
|
|
title: string;
|
|
}
|
|
|
|
export function DataTableColumnHeader<TData, TValue>({
|
|
column,
|
|
title,
|
|
className,
|
|
}: DataTableColumnHeaderProps<TData, TValue>) {
|
|
if (!column.getCanSort()) {
|
|
return <div className={cn(className)}>{title}</div>;
|
|
}
|
|
|
|
return (
|
|
<div className={cn("flex items-center space-x-2", className)}>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
className="-ml-3 h-8 data-[state=open]:bg-accent"
|
|
size="sm"
|
|
variant="ghost"
|
|
>
|
|
<span>{title}</span>
|
|
{(() => {
|
|
if (column.getIsSorted() === "desc")
|
|
return <ArrowDownIcon className="ml-2 size-4" />;
|
|
if (column.getIsSorted() === "asc")
|
|
return <ArrowUpIcon className="ml-2 size-4" />;
|
|
return <ChevronsUpDown className="ml-2 size-4" />;
|
|
})()}
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start">
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(false)}>
|
|
<ArrowUpIcon className="mr-2 h-3.5 w-3.5 text-muted-foreground/70" />
|
|
Asc
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(true)}>
|
|
<ArrowDownIcon className="mr-2 h-3.5 w-3.5 text-muted-foreground/70" />
|
|
Desc
|
|
</DropdownMenuItem>
|
|
{column.getCanHide() && (
|
|
<>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={() => column.toggleVisibility(false)}>
|
|
<EyeOff className="mr-2 h-3.5 w-3.5 text-muted-foreground/70" />
|
|
Nascondi
|
|
</DropdownMenuItem>
|
|
</>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
);
|
|
}
|