76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
|
|
import type { Column } from "@tanstack/react-table";
|
||
|
|
import { cn } from "~/lib/utils";
|
||
|
|
import {
|
||
|
|
DropdownMenu,
|
||
|
|
DropdownMenuContent,
|
||
|
|
DropdownMenuItem,
|
||
|
|
DropdownMenuSeparator,
|
||
|
|
DropdownMenuTrigger,
|
||
|
|
} from "~/components/ui/dropdown-menu";
|
||
|
|
import { Button } from "~/components/ui/button";
|
||
|
|
import {
|
||
|
|
ArrowDownIcon,
|
||
|
|
ArrowUpIcon,
|
||
|
|
ChevronsUpDown,
|
||
|
|
EyeOff,
|
||
|
|
} from "lucide-react";
|
||
|
|
import { type HTMLAttributes } from "react";
|
||
|
|
|
||
|
|
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
|
||
|
|
variant="ghost"
|
||
|
|
size="sm"
|
||
|
|
className="data-[state=open]:bg-accent -ml-3 h-8"
|
||
|
|
>
|
||
|
|
<span>{title}</span>
|
||
|
|
{column.getIsSorted() === "desc" ? (
|
||
|
|
<ArrowDownIcon className="ml-2 size-4" />
|
||
|
|
) : column.getIsSorted() === "asc" ? (
|
||
|
|
<ArrowUpIcon className="ml-2 size-4" />
|
||
|
|
) : (
|
||
|
|
<ChevronsUpDown className="ml-2 size-4" />
|
||
|
|
)}
|
||
|
|
</Button>
|
||
|
|
</DropdownMenuTrigger>
|
||
|
|
<DropdownMenuContent align="start">
|
||
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(false)}>
|
||
|
|
<ArrowUpIcon className="text-muted-foreground/70 mr-2 h-3.5 w-3.5" />
|
||
|
|
Asc
|
||
|
|
</DropdownMenuItem>
|
||
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(true)}>
|
||
|
|
<ArrowDownIcon className="text-muted-foreground/70 mr-2 h-3.5 w-3.5" />
|
||
|
|
Desc
|
||
|
|
</DropdownMenuItem>
|
||
|
|
{column.getCanHide() && (
|
||
|
|
<>
|
||
|
|
<DropdownMenuSeparator />
|
||
|
|
<DropdownMenuItem onClick={() => column.toggleVisibility(false)}>
|
||
|
|
<EyeOff className="text-muted-foreground/70 mr-2 h-3.5 w-3.5" />
|
||
|
|
Nascondi
|
||
|
|
</DropdownMenuItem>
|
||
|
|
</>
|
||
|
|
)}
|
||
|
|
</DropdownMenuContent>
|
||
|
|
</DropdownMenu>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|