2025-09-02 13:18:46 +09:00
|
|
|
"use client";
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
import { useState } from "react";
|
2025-09-02 13:18:46 +09:00
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
|
|
|
import { Badge } from "@/components/ui/badge";
|
|
|
|
|
import { LoadingSpinner } from "@/components/common/LoadingSpinner";
|
|
|
|
|
import { CodeFormModal } from "./CodeFormModal";
|
2025-09-02 18:25:44 +09:00
|
|
|
import { SortableCodeItem } from "./SortableCodeItem";
|
2025-09-02 13:18:46 +09:00
|
|
|
import { AlertModal } from "@/components/common/AlertModal";
|
2025-09-02 18:25:44 +09:00
|
|
|
import { Search, Plus } from "lucide-react";
|
2025-09-02 13:18:46 +09:00
|
|
|
import { cn } from "@/lib/utils";
|
2025-09-02 18:25:44 +09:00
|
|
|
import { useCodes, useDeleteCode, useReorderCodes } from "@/hooks/queries/useCodes";
|
|
|
|
|
import type { CodeInfo } from "@/types/commonCode";
|
|
|
|
|
|
|
|
|
|
// Drag and Drop
|
2025-09-03 14:57:52 +09:00
|
|
|
import { DndContext, DragOverlay } from "@dnd-kit/core";
|
|
|
|
|
import { SortableContext, verticalListSortingStrategy } from "@dnd-kit/sortable";
|
|
|
|
|
import { useDragAndDrop } from "@/hooks/useDragAndDrop";
|
|
|
|
|
import { useSearchAndFilter } from "@/hooks/useSearchAndFilter";
|
2025-09-02 13:18:46 +09:00
|
|
|
|
|
|
|
|
interface CodeDetailPanelProps {
|
|
|
|
|
categoryCode: string;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
export function CodeDetailPanel({ categoryCode }: CodeDetailPanelProps) {
|
|
|
|
|
// React Query로 코드 데이터 관리
|
|
|
|
|
const { data: codes = [], isLoading, error } = useCodes(categoryCode);
|
|
|
|
|
const deleteCodeMutation = useDeleteCode();
|
|
|
|
|
const reorderCodesMutation = useReorderCodes();
|
2025-09-02 13:57:53 +09:00
|
|
|
|
2025-09-03 14:57:52 +09:00
|
|
|
// 검색 및 필터링 훅 사용
|
|
|
|
|
const {
|
|
|
|
|
searchTerm,
|
|
|
|
|
setSearchTerm,
|
|
|
|
|
showActiveOnly,
|
|
|
|
|
setShowActiveOnly,
|
|
|
|
|
filteredItems: filteredCodes,
|
|
|
|
|
} = useSearchAndFilter(codes, {
|
|
|
|
|
searchFields: ["code_name", "code_value"],
|
|
|
|
|
});
|
2025-09-02 13:57:53 +09:00
|
|
|
|
2025-09-03 14:57:52 +09:00
|
|
|
// 모달 상태
|
2025-09-02 18:25:44 +09:00
|
|
|
const [showFormModal, setShowFormModal] = useState(false);
|
|
|
|
|
const [editingCode, setEditingCode] = useState<CodeInfo | null>(null);
|
|
|
|
|
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
|
|
|
|
const [deletingCode, setDeletingCode] = useState<CodeInfo | null>(null);
|
2025-09-02 13:57:53 +09:00
|
|
|
|
2025-09-03 14:57:52 +09:00
|
|
|
// 드래그 앤 드롭 훅 사용
|
|
|
|
|
const dragAndDrop = useDragAndDrop({
|
|
|
|
|
items: filteredCodes,
|
|
|
|
|
onReorder: async (reorderedItems) => {
|
|
|
|
|
await reorderCodesMutation.mutateAsync({
|
|
|
|
|
categoryCode,
|
|
|
|
|
codes: reorderedItems.map((item) => ({
|
|
|
|
|
codeValue: item.id,
|
|
|
|
|
sortOrder: item.sortOrder,
|
|
|
|
|
})),
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getItemId: (code) => code.code_value,
|
2025-09-02 13:57:53 +09:00
|
|
|
});
|
2025-09-02 13:18:46 +09:00
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
// 새 코드 생성
|
|
|
|
|
const handleNewCode = () => {
|
|
|
|
|
setEditingCode(null);
|
2025-09-02 13:18:46 +09:00
|
|
|
setShowFormModal(true);
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
// 코드 수정
|
|
|
|
|
const handleEditCode = (code: CodeInfo) => {
|
|
|
|
|
setEditingCode(code);
|
2025-09-02 13:18:46 +09:00
|
|
|
setShowFormModal(true);
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
// 코드 삭제 확인
|
|
|
|
|
const handleDeleteCode = (code: CodeInfo) => {
|
|
|
|
|
setDeletingCode(code);
|
2025-09-02 13:18:46 +09:00
|
|
|
setShowDeleteModal(true);
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
// 코드 삭제 실행
|
2025-09-02 13:18:46 +09:00
|
|
|
const handleConfirmDelete = async () => {
|
2025-09-02 18:25:44 +09:00
|
|
|
if (!deletingCode) return;
|
2025-09-02 13:18:46 +09:00
|
|
|
|
|
|
|
|
try {
|
2025-09-02 18:25:44 +09:00
|
|
|
await deleteCodeMutation.mutateAsync({
|
|
|
|
|
categoryCode,
|
|
|
|
|
codeValue: deletingCode.code_value,
|
|
|
|
|
});
|
|
|
|
|
|
2025-09-02 13:18:46 +09:00
|
|
|
setShowDeleteModal(false);
|
2025-09-02 18:25:44 +09:00
|
|
|
setDeletingCode(null);
|
2025-09-02 13:18:46 +09:00
|
|
|
} catch (error) {
|
2025-09-02 18:25:44 +09:00
|
|
|
console.error("코드 삭제 실패:", error);
|
2025-09-02 13:18:46 +09:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-03 14:57:52 +09:00
|
|
|
// 드래그 앤 드롭 로직은 useDragAndDrop 훅에서 처리
|
2025-09-02 13:57:53 +09:00
|
|
|
|
2025-09-02 13:18:46 +09:00
|
|
|
if (!categoryCode) {
|
|
|
|
|
return (
|
2025-09-02 18:25:44 +09:00
|
|
|
<div className="flex h-full items-center justify-center">
|
|
|
|
|
<div className="text-center text-gray-500">
|
|
|
|
|
<p>카테고리를 선택하세요</p>
|
2025-09-02 13:18:46 +09:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
if (error) {
|
2025-09-02 13:18:46 +09:00
|
|
|
return (
|
2025-09-02 18:25:44 +09:00
|
|
|
<div className="flex h-full items-center justify-center">
|
|
|
|
|
<div className="text-center">
|
|
|
|
|
<p className="text-red-600">코드를 불러오는 중 오류가 발생했습니다.</p>
|
|
|
|
|
<Button variant="outline" onClick={() => window.location.reload()} className="mt-2">
|
|
|
|
|
다시 시도
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
2025-09-02 13:18:46 +09:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
2025-09-02 18:25:44 +09:00
|
|
|
<div className="flex h-full flex-col">
|
|
|
|
|
{/* 검색 및 필터 */}
|
|
|
|
|
<div className="border-b p-4">
|
|
|
|
|
<div className="space-y-3">
|
|
|
|
|
{/* 검색 */}
|
|
|
|
|
<div className="relative">
|
|
|
|
|
<Search className="absolute top-1/2 left-3 h-4 w-4 -translate-y-1/2 text-gray-400" />
|
2025-09-02 13:18:46 +09:00
|
|
|
<Input
|
|
|
|
|
placeholder="코드 검색..."
|
|
|
|
|
value={searchTerm}
|
|
|
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
|
|
|
className="pl-10"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
{/* 활성 필터 */}
|
|
|
|
|
<div className="flex items-center space-x-2">
|
2025-09-02 13:57:53 +09:00
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
2025-09-02 18:25:44 +09:00
|
|
|
id="activeOnlyCodes"
|
2025-09-02 13:57:53 +09:00
|
|
|
checked={showActiveOnly}
|
|
|
|
|
onChange={(e) => setShowActiveOnly(e.target.checked)}
|
2025-09-02 18:25:44 +09:00
|
|
|
className="rounded border-gray-300"
|
2025-09-02 13:57:53 +09:00
|
|
|
/>
|
2025-09-02 18:25:44 +09:00
|
|
|
<label htmlFor="activeOnlyCodes" className="text-sm text-gray-600">
|
|
|
|
|
활성 코드만 표시
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2025-09-02 13:57:53 +09:00
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
{/* 새 코드 버튼 */}
|
|
|
|
|
<Button onClick={handleNewCode} className="w-full" size="sm">
|
|
|
|
|
<Plus className="mr-2 h-4 w-4" />새 코드
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
2025-09-02 13:18:46 +09:00
|
|
|
</div>
|
|
|
|
|
|
2025-09-02 18:25:44 +09:00
|
|
|
{/* 코드 목록 */}
|
|
|
|
|
<div className="flex-1 overflow-y-auto">
|
|
|
|
|
{isLoading ? (
|
|
|
|
|
<div className="flex h-32 items-center justify-center">
|
|
|
|
|
<LoadingSpinner />
|
2025-09-02 13:18:46 +09:00
|
|
|
</div>
|
|
|
|
|
) : filteredCodes.length === 0 ? (
|
2025-09-02 18:25:44 +09:00
|
|
|
<div className="p-4 text-center text-gray-500">
|
|
|
|
|
{searchTerm ? "검색 결과가 없습니다." : "코드가 없습니다."}
|
2025-09-02 13:18:46 +09:00
|
|
|
</div>
|
|
|
|
|
) : (
|
2025-09-02 18:25:44 +09:00
|
|
|
<div className="p-2">
|
2025-09-03 14:57:52 +09:00
|
|
|
<DndContext {...dragAndDrop.dndContextProps}>
|
2025-09-02 18:25:44 +09:00
|
|
|
<SortableContext
|
|
|
|
|
items={filteredCodes.map((code) => code.code_value)}
|
|
|
|
|
strategy={verticalListSortingStrategy}
|
|
|
|
|
>
|
|
|
|
|
<div className="space-y-1">
|
|
|
|
|
{filteredCodes.map((code) => (
|
|
|
|
|
<SortableCodeItem
|
|
|
|
|
key={code.code_value}
|
|
|
|
|
code={code}
|
|
|
|
|
categoryCode={categoryCode}
|
|
|
|
|
onEdit={() => handleEditCode(code)}
|
|
|
|
|
onDelete={() => handleDeleteCode(code)}
|
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
</SortableContext>
|
|
|
|
|
|
2025-09-03 17:23:09 +09:00
|
|
|
<DragOverlay dropAnimation={null}>
|
2025-09-03 14:57:52 +09:00
|
|
|
{dragAndDrop.activeItem ? (
|
2025-09-02 18:25:44 +09:00
|
|
|
<div className="cursor-grabbing rounded-lg border border-gray-300 bg-white p-3 shadow-lg">
|
|
|
|
|
{(() => {
|
2025-09-03 14:57:52 +09:00
|
|
|
const activeCode = dragAndDrop.activeItem;
|
2025-09-02 18:25:44 +09:00
|
|
|
if (!activeCode) return null;
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex items-start justify-between">
|
|
|
|
|
<div className="min-w-0 flex-1">
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
<h3 className="font-medium text-gray-900">{activeCode.code_name}</h3>
|
|
|
|
|
<Badge
|
|
|
|
|
variant={activeCode.is_active === "Y" ? "default" : "secondary"}
|
|
|
|
|
className={cn(
|
|
|
|
|
"transition-colors",
|
|
|
|
|
activeCode.is_active === "Y"
|
|
|
|
|
? "bg-green-100 text-green-800"
|
|
|
|
|
: "bg-gray-100 text-gray-600",
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
{activeCode.is_active === "Y" ? "활성" : "비활성"}
|
|
|
|
|
</Badge>
|
|
|
|
|
</div>
|
|
|
|
|
<p className="mt-1 text-sm text-gray-600">{activeCode.code_value}</p>
|
|
|
|
|
{activeCode.description && (
|
|
|
|
|
<p className="mt-1 text-sm text-gray-500">{activeCode.description}</p>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
})()}
|
|
|
|
|
</div>
|
|
|
|
|
) : null}
|
|
|
|
|
</DragOverlay>
|
|
|
|
|
</DndContext>
|
|
|
|
|
</div>
|
2025-09-02 13:18:46 +09:00
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* 코드 폼 모달 */}
|
|
|
|
|
{showFormModal && (
|
|
|
|
|
<CodeFormModal
|
|
|
|
|
isOpen={showFormModal}
|
2025-09-02 15:41:07 +09:00
|
|
|
onClose={() => {
|
|
|
|
|
setShowFormModal(false);
|
2025-09-02 18:25:44 +09:00
|
|
|
setEditingCode(null);
|
2025-09-02 15:41:07 +09:00
|
|
|
}}
|
2025-09-02 13:18:46 +09:00
|
|
|
categoryCode={categoryCode}
|
2025-09-02 18:25:44 +09:00
|
|
|
editingCode={editingCode}
|
2025-09-02 13:18:46 +09:00
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* 삭제 확인 모달 */}
|
|
|
|
|
{showDeleteModal && (
|
|
|
|
|
<AlertModal
|
|
|
|
|
isOpen={showDeleteModal}
|
|
|
|
|
onClose={() => setShowDeleteModal(false)}
|
2025-09-02 15:41:07 +09:00
|
|
|
type="error"
|
2025-09-02 18:25:44 +09:00
|
|
|
title="코드 삭제"
|
|
|
|
|
message="정말로 이 코드를 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다."
|
2025-09-02 13:18:46 +09:00
|
|
|
confirmText="삭제"
|
2025-09-02 18:25:44 +09:00
|
|
|
onConfirm={handleConfirmDelete}
|
2025-09-02 13:18:46 +09:00
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|