70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
|
|
import { Column } from "@tanstack/react-table";
|
||
|
|
import { ArrowDown, ArrowUp, ChevronsUpDown, EyeOff } from "lucide-react";
|
||
|
|
|
||
|
|
import { useTranslation } from "../../locales/i18n.ts";
|
||
|
|
|
||
|
|
import {
|
||
|
|
Button, DropdownMenu,
|
||
|
|
DropdownMenuContent,
|
||
|
|
DropdownMenuItem,
|
||
|
|
DropdownMenuSeparator,
|
||
|
|
DropdownMenuTrigger
|
||
|
|
} from '@repo/shadcn-ui/components';
|
||
|
|
import { cn } from '@repo/shadcn-ui/lib/utils';
|
||
|
|
|
||
|
|
interface DataTableColumnHeaderProps<TData, TValue>
|
||
|
|
extends React.HTMLAttributes<HTMLDivElement> {
|
||
|
|
column: Column<TData, TValue>
|
||
|
|
title: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export function DataTableColumnHeader<TData, TValue>({
|
||
|
|
column,
|
||
|
|
title,
|
||
|
|
className,
|
||
|
|
}: DataTableColumnHeaderProps<TData, TValue>) {
|
||
|
|
const { t } = useTranslation();
|
||
|
|
|
||
|
|
if (!column.getCanSort()) {
|
||
|
|
return <div className={cn("text-xs text-muted-foreground text-nowrap", className)}>{title}</div>
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className={cn("flex items-center gap-2", className)}>
|
||
|
|
<DropdownMenu>
|
||
|
|
<DropdownMenuTrigger asChild>
|
||
|
|
<Button
|
||
|
|
variant="ghost"
|
||
|
|
size="sm"
|
||
|
|
className="data-[state=open]:bg-accent -ml-3 h-8 text-xs text-muted-foreground text-nowrap cursor-pointer"
|
||
|
|
>
|
||
|
|
<span>{title}</span>
|
||
|
|
{column.getIsSorted() === "desc" ? (
|
||
|
|
<ArrowDown />
|
||
|
|
) : column.getIsSorted() === "asc" ? (
|
||
|
|
<ArrowUp />
|
||
|
|
) : (
|
||
|
|
<ChevronsUpDown />
|
||
|
|
)}
|
||
|
|
</Button>
|
||
|
|
</DropdownMenuTrigger>
|
||
|
|
<DropdownMenuContent align="start">
|
||
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(false)}>
|
||
|
|
<ArrowUp />
|
||
|
|
{t("components.datatabla.asc")}
|
||
|
|
</DropdownMenuItem>
|
||
|
|
<DropdownMenuItem onClick={() => column.toggleSorting(true)}>
|
||
|
|
<ArrowDown />
|
||
|
|
{t("components.datatabla.desc")}
|
||
|
|
</DropdownMenuItem>
|
||
|
|
<DropdownMenuSeparator />
|
||
|
|
<DropdownMenuItem onClick={() => column.toggleVisibility(false)}>
|
||
|
|
<EyeOff />
|
||
|
|
{t("components.datatabla.hide")}
|
||
|
|
</DropdownMenuItem>
|
||
|
|
</DropdownMenuContent>
|
||
|
|
</DropdownMenu>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|