61 lines
2.2 KiB
TypeScript
61 lines
2.2 KiB
TypeScript
import { ArrowDown, ArrowUp, ChevronsUpDown, EyeOff } from "lucide-react"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu"
|
|
import { DataTableColumnHeaderProps } from "@/types"
|
|
|
|
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="-ml-3 h-8 data-[state=open]:bg-accent"
|
|
>
|
|
<span>{title}</span>
|
|
{column.getIsSorted() === "desc" ? (
|
|
<ArrowDown />
|
|
) : column.getIsSorted() === "asc" ? (
|
|
<ArrowUp />
|
|
) : (
|
|
<ChevronsUpDown />
|
|
)}
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start">
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(false)}>
|
|
<ArrowUp className="h-3.5 w-3.5 text-muted-foreground/70" />
|
|
Asc
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(true)}>
|
|
<ArrowDown className="h-3.5 w-3.5 text-muted-foreground/70" />
|
|
Desc
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={() => column.toggleVisibility(false)}>
|
|
<EyeOff className="h-3.5 w-3.5 text-muted-foreground/70" />
|
|
Hide
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
)
|
|
}
|