203 lines
6.3 KiB
TypeScript
203 lines
6.3 KiB
TypeScript
import React, { useState, useEffect } from "react";
|
|
import { useTableOptions } from "@/contexts/TableOptionsContext";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
|
import { GripVertical, Eye, EyeOff } from "lucide-react";
|
|
import { ColumnVisibility } from "@/types/table-options";
|
|
|
|
interface Props {
|
|
tableId: string;
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
}
|
|
|
|
export const ColumnVisibilityPanel: React.FC<Props> = ({
|
|
tableId,
|
|
open,
|
|
onOpenChange,
|
|
}) => {
|
|
const { getTable } = useTableOptions();
|
|
const table = getTable(tableId);
|
|
|
|
const [localColumns, setLocalColumns] = useState<ColumnVisibility[]>([]);
|
|
|
|
// 테이블 정보 로드
|
|
useEffect(() => {
|
|
if (table) {
|
|
setLocalColumns(
|
|
table.columns.map((col) => ({
|
|
columnName: col.columnName,
|
|
visible: col.visible,
|
|
width: col.width,
|
|
order: 0,
|
|
}))
|
|
);
|
|
}
|
|
}, [table]);
|
|
|
|
const handleVisibilityChange = (columnName: string, visible: boolean) => {
|
|
setLocalColumns((prev) =>
|
|
prev.map((col) =>
|
|
col.columnName === columnName ? { ...col, visible } : col
|
|
)
|
|
);
|
|
};
|
|
|
|
const handleWidthChange = (columnName: string, width: number) => {
|
|
setLocalColumns((prev) =>
|
|
prev.map((col) =>
|
|
col.columnName === columnName ? { ...col, width } : col
|
|
)
|
|
);
|
|
};
|
|
|
|
const handleApply = () => {
|
|
table?.onColumnVisibilityChange(localColumns);
|
|
onOpenChange(false);
|
|
};
|
|
|
|
const handleReset = () => {
|
|
if (table) {
|
|
setLocalColumns(
|
|
table.columns.map((col) => ({
|
|
columnName: col.columnName,
|
|
visible: true,
|
|
width: 150,
|
|
order: 0,
|
|
}))
|
|
);
|
|
}
|
|
};
|
|
|
|
const visibleCount = localColumns.filter((col) => col.visible).length;
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="max-w-[95vw] sm:max-w-2xl">
|
|
<DialogHeader>
|
|
<DialogTitle className="text-base sm:text-lg">
|
|
테이블 옵션
|
|
</DialogTitle>
|
|
<DialogDescription className="text-xs sm:text-sm">
|
|
컬럼 표시/숨기기, 순서 변경, 너비 등을 설정할 수 있습니다. 모든
|
|
테두리를 드래그하여 크기를 조정할 수 있습니다.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-3 sm:space-y-4">
|
|
{/* 상태 표시 */}
|
|
<div className="flex items-center justify-between rounded-lg border bg-muted/50 p-3">
|
|
<div className="text-xs text-muted-foreground sm:text-sm">
|
|
{visibleCount}/{localColumns.length}개 컬럼 표시 중
|
|
</div>
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={handleReset}
|
|
className="h-7 text-xs"
|
|
>
|
|
초기화
|
|
</Button>
|
|
</div>
|
|
|
|
{/* 컬럼 리스트 */}
|
|
<ScrollArea className="h-[300px] sm:h-[400px]">
|
|
<div className="space-y-2 pr-4">
|
|
{localColumns.map((col) => {
|
|
const columnMeta = table?.columns.find(
|
|
(c) => c.columnName === col.columnName
|
|
);
|
|
return (
|
|
<div
|
|
key={col.columnName}
|
|
className="flex items-center gap-3 rounded-lg border bg-background p-3 transition-colors hover:bg-muted/50"
|
|
>
|
|
{/* 드래그 핸들 */}
|
|
<GripVertical className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
|
|
{/* 체크박스 */}
|
|
<Checkbox
|
|
checked={col.visible}
|
|
onCheckedChange={(checked) =>
|
|
handleVisibilityChange(
|
|
col.columnName,
|
|
checked as boolean
|
|
)
|
|
}
|
|
/>
|
|
|
|
{/* 가시성 아이콘 */}
|
|
{col.visible ? (
|
|
<Eye className="h-4 w-4 shrink-0 text-primary" />
|
|
) : (
|
|
<EyeOff className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
)}
|
|
|
|
{/* 컬럼명 */}
|
|
<div className="flex-1">
|
|
<div className="text-xs font-medium sm:text-sm">
|
|
{columnMeta?.columnLabel}
|
|
</div>
|
|
<div className="text-[10px] text-muted-foreground sm:text-xs">
|
|
{col.columnName}
|
|
</div>
|
|
</div>
|
|
|
|
{/* 너비 설정 */}
|
|
<div className="flex items-center gap-2">
|
|
<Label className="text-xs text-muted-foreground">
|
|
너비:
|
|
</Label>
|
|
<Input
|
|
type="number"
|
|
value={col.width || 150}
|
|
onChange={(e) =>
|
|
handleWidthChange(
|
|
col.columnName,
|
|
parseInt(e.target.value) || 150
|
|
)
|
|
}
|
|
className="h-7 w-16 text-xs sm:h-8 sm:w-20 sm:text-sm"
|
|
min={50}
|
|
max={500}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</ScrollArea>
|
|
</div>
|
|
|
|
<DialogFooter className="gap-2 sm:gap-0">
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => onOpenChange(false)}
|
|
className="h-8 flex-1 text-xs sm:h-10 sm:flex-none sm:text-sm"
|
|
>
|
|
취소
|
|
</Button>
|
|
<Button
|
|
onClick={handleApply}
|
|
className="h-8 flex-1 text-xs sm:h-10 sm:flex-none sm:text-sm"
|
|
>
|
|
저장
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|