134 lines
4.0 KiB
TypeScript
134 lines
4.0 KiB
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { Columns3, Check, Bookmark } from 'lucide-react';
|
||
|
|
|
||
|
|
import { Button } from '@/components/ui/button';
|
||
|
|
import {
|
||
|
|
DropdownMenu,
|
||
|
|
DropdownMenuContent,
|
||
|
|
DropdownMenuItem,
|
||
|
|
DropdownMenuLabel,
|
||
|
|
DropdownMenuSeparator,
|
||
|
|
DropdownMenuTrigger,
|
||
|
|
} from '@/components/ui/dropdown-menu';
|
||
|
|
|
||
|
|
export interface ColumnPickerOption {
|
||
|
|
/** Stable ID matching the column's `id` field in the table. */
|
||
|
|
id: string;
|
||
|
|
/** Human-readable label shown in the dropdown menu. */
|
||
|
|
label: string;
|
||
|
|
/**
|
||
|
|
* When true, the column can't be toggled off (e.g. Name + actions).
|
||
|
|
* It still appears in the menu but with a disabled checkmark.
|
||
|
|
*/
|
||
|
|
alwaysVisible?: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Dropdown menu for toggling table column visibility. Lives next to the
|
||
|
|
* filter bar — single source of truth for which columns the current
|
||
|
|
* user wants to see in this table. Persistence is handled by the
|
||
|
|
* parent (typically via `useTablePreferences`).
|
||
|
|
*/
|
||
|
|
export function ColumnPicker({
|
||
|
|
columns,
|
||
|
|
hidden,
|
||
|
|
onChange,
|
||
|
|
onSaveView,
|
||
|
|
}: {
|
||
|
|
columns: ColumnPickerOption[];
|
||
|
|
hidden: string[];
|
||
|
|
onChange: (hidden: string[]) => void;
|
||
|
|
/**
|
||
|
|
* Optional callback. When provided, a "Save current view" item is
|
||
|
|
* appended to the menu — folds the save-view affordance into the
|
||
|
|
* column picker instead of a separate top-level button.
|
||
|
|
*/
|
||
|
|
onSaveView?: () => void;
|
||
|
|
}) {
|
||
|
|
const hiddenSet = new Set(hidden);
|
||
|
|
|
||
|
|
function toggle(id: string) {
|
||
|
|
const next = new Set(hiddenSet);
|
||
|
|
if (next.has(id)) next.delete(id);
|
||
|
|
else next.add(id);
|
||
|
|
onChange(Array.from(next));
|
||
|
|
}
|
||
|
|
|
||
|
|
function showAll() {
|
||
|
|
onChange([]);
|
||
|
|
}
|
||
|
|
|
||
|
|
// The "All visible" affordance is only useful when something is
|
||
|
|
// hidden — a no-op button is noise.
|
||
|
|
const canShowAll = hidden.some((id) =>
|
||
|
|
columns.some((col) => col.id === id && !col.alwaysVisible),
|
||
|
|
);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<DropdownMenu>
|
||
|
|
<DropdownMenuTrigger asChild>
|
||
|
|
<Button variant="outline" size="sm" className="gap-1.5 h-8">
|
||
|
|
<Columns3 className="h-3.5 w-3.5" />
|
||
|
|
<span className="hidden sm:inline">Columns</span>
|
||
|
|
</Button>
|
||
|
|
</DropdownMenuTrigger>
|
||
|
|
<DropdownMenuContent align="end" className="w-56">
|
||
|
|
<DropdownMenuLabel className="text-xs text-muted-foreground">
|
||
|
|
Show / hide columns
|
||
|
|
</DropdownMenuLabel>
|
||
|
|
<DropdownMenuSeparator />
|
||
|
|
{columns.map((col) => {
|
||
|
|
const isVisible = !hiddenSet.has(col.id);
|
||
|
|
return (
|
||
|
|
<DropdownMenuItem
|
||
|
|
key={col.id}
|
||
|
|
disabled={col.alwaysVisible}
|
||
|
|
onSelect={(e) => {
|
||
|
|
// Keep the menu open while toggling so the user can
|
||
|
|
// flip multiple columns in one pass.
|
||
|
|
e.preventDefault();
|
||
|
|
if (col.alwaysVisible) return;
|
||
|
|
toggle(col.id);
|
||
|
|
}}
|
||
|
|
className="flex items-center gap-2"
|
||
|
|
>
|
||
|
|
<span
|
||
|
|
aria-hidden
|
||
|
|
className={`flex h-4 w-4 items-center justify-center rounded-sm border ${
|
||
|
|
isVisible ? 'bg-primary border-primary text-primary-foreground' : 'border-border'
|
||
|
|
}`}
|
||
|
|
>
|
||
|
|
{isVisible && <Check className="h-3 w-3" />}
|
||
|
|
</span>
|
||
|
|
<span className="flex-1">{col.label}</span>
|
||
|
|
{col.alwaysVisible && (
|
||
|
|
<span className="text-[10px] uppercase tracking-wide text-muted-foreground">
|
||
|
|
always
|
||
|
|
</span>
|
||
|
|
)}
|
||
|
|
</DropdownMenuItem>
|
||
|
|
);
|
||
|
|
})}
|
||
|
|
{canShowAll && (
|
||
|
|
<>
|
||
|
|
<DropdownMenuSeparator />
|
||
|
|
<DropdownMenuItem onClick={showAll} className="text-xs text-muted-foreground">
|
||
|
|
Show all columns
|
||
|
|
</DropdownMenuItem>
|
||
|
|
</>
|
||
|
|
)}
|
||
|
|
{onSaveView && (
|
||
|
|
<>
|
||
|
|
<DropdownMenuSeparator />
|
||
|
|
<DropdownMenuItem onClick={onSaveView}>
|
||
|
|
<Bookmark className="mr-2 h-3.5 w-3.5" />
|
||
|
|
Save current view
|
||
|
|
</DropdownMenuItem>
|
||
|
|
</>
|
||
|
|
)}
|
||
|
|
</DropdownMenuContent>
|
||
|
|
</DropdownMenu>
|
||
|
|
);
|
||
|
|
}
|