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-03 18:23:23 +09:00
|
|
|
import { useDeleteCode, useReorderCodes } from "@/hooks/queries/useCodes";
|
|
|
|
|
import { useCodesInfinite } from "@/hooks/queries/useCodesInfinite";
|
2025-09-02 18:25:44 +09:00
|
|
|
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) {
|
2025-09-03 18:23:23 +09:00
|
|
|
// 검색 및 필터 상태 (먼저 선언)
|
|
|
|
|
const [searchTerm, setSearchTerm] = useState("");
|
|
|
|
|
const [showActiveOnly, setShowActiveOnly] = useState(false);
|
|
|
|
|
|
|
|
|
|
// React Query로 코드 데이터 관리 (무한 스크롤)
|
|
|
|
|
const {
|
|
|
|
|
data: codes = [],
|
|
|
|
|
isLoading,
|
|
|
|
|
error,
|
|
|
|
|
handleScroll,
|
|
|
|
|
isFetchingNextPage,
|
|
|
|
|
hasNextPage,
|
|
|
|
|
} = useCodesInfinite(categoryCode, {
|
|
|
|
|
search: searchTerm || undefined,
|
|
|
|
|
active: showActiveOnly || undefined,
|
|
|
|
|
});
|
2025-09-02 18:25:44 +09:00
|
|
|
const deleteCodeMutation = useDeleteCode();
|
|
|
|
|
const reorderCodesMutation = useReorderCodes();
|
2025-09-02 13:57:53 +09:00
|
|
|
|
2025-09-03 18:23:23 +09:00
|
|
|
// 드래그앤드롭을 위해 필터링된 코드 목록 사용
|
|
|
|
|
const { filteredItems: filteredCodes } = useSearchAndFilter(codes, {
|
2025-09-03 14:57:52 +09:00
|
|
|
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
|
|
|
// 드래그 앤 드롭 훅 사용
|
2025-09-03 18:23:23 +09:00
|
|
|
const dragAndDrop = useDragAndDrop<CodeInfo>({
|
2025-09-03 14:57:52 +09:00
|
|
|
items: filteredCodes,
|
|
|
|
|
onReorder: async (reorderedItems) => {
|
|
|
|
|
await reorderCodesMutation.mutateAsync({
|
|
|
|
|
categoryCode,
|
|
|
|
|
codes: reorderedItems.map((item) => ({
|
|
|
|
|
codeValue: item.id,
|
|
|
|
|
sortOrder: item.sortOrder,
|
|
|
|
|
})),
|
|
|
|
|
});
|
|
|
|
|
},
|
2025-09-30 14:28:40 +09:00
|
|
|
getItemId: (code: CodeInfo) => code.codeValue || 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,
|
2025-09-30 14:28:40 +09:00
|
|
|
codeValue: deletingCode.codeValue || deletingCode.code_value,
|
2025-09-02 18:25:44 +09:00
|
|
|
});
|
|
|
|
|
|
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">
|
2025-10-02 14:34:15 +09:00
|
|
|
<p className="text-destructive">코드를 불러오는 중 오류가 발생했습니다.</p>
|
2025-09-02 18:25:44 +09:00
|
|
|
<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-10-02 14:34:15 +09:00
|
|
|
<label htmlFor="activeOnlyCodes" className="text-sm text-muted-foreground">
|
2025-09-02 18:25:44 +09:00
|
|
|
활성 코드만 표시
|
|
|
|
|
</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-03 18:23:23 +09:00
|
|
|
{/* 코드 목록 (무한 스크롤) */}
|
|
|
|
|
<div className="h-96 overflow-y-auto" onScroll={handleScroll}>
|
2025-09-02 18:25:44 +09:00
|
|
|
{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">
|
2025-09-03 18:23:23 +09:00
|
|
|
{codes.length === 0 ? "코드가 없습니다." : "검색 결과가 없습니다."}
|
2025-09-02 13:18:46 +09:00
|
|
|
</div>
|
|
|
|
|
) : (
|
2025-09-03 18:23:23 +09:00
|
|
|
<>
|
|
|
|
|
<div className="p-2">
|
|
|
|
|
<DndContext {...dragAndDrop.dndContextProps}>
|
|
|
|
|
<SortableContext
|
2025-09-30 14:28:40 +09:00
|
|
|
items={filteredCodes.map((code) => code.codeValue || code.code_value)}
|
2025-09-03 18:23:23 +09:00
|
|
|
strategy={verticalListSortingStrategy}
|
|
|
|
|
>
|
|
|
|
|
<div className="space-y-1">
|
|
|
|
|
{filteredCodes.map((code, index) => (
|
|
|
|
|
<SortableCodeItem
|
2025-09-30 14:28:40 +09:00
|
|
|
key={`${code.codeValue || code.code_value}-${index}`}
|
2025-09-03 18:23:23 +09:00
|
|
|
code={code}
|
|
|
|
|
categoryCode={categoryCode}
|
|
|
|
|
onEdit={() => handleEditCode(code)}
|
|
|
|
|
onDelete={() => handleDeleteCode(code)}
|
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
</SortableContext>
|
2025-09-02 18:25:44 +09:00
|
|
|
|
2025-09-03 18:23:23 +09:00
|
|
|
<DragOverlay dropAnimation={null}>
|
|
|
|
|
{dragAndDrop.activeItem ? (
|
|
|
|
|
<div className="cursor-grabbing rounded-lg border border-gray-300 bg-white p-3 shadow-lg">
|
|
|
|
|
{(() => {
|
|
|
|
|
const activeCode = dragAndDrop.activeItem;
|
|
|
|
|
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">
|
2025-09-30 14:28:40 +09:00
|
|
|
<h3 className="font-medium text-gray-900">
|
|
|
|
|
{activeCode.codeName || activeCode.code_name}
|
|
|
|
|
</h3>
|
2025-09-03 18:23:23 +09:00
|
|
|
<Badge
|
2025-09-30 14:28:40 +09:00
|
|
|
variant={
|
|
|
|
|
activeCode.isActive === "Y" || activeCode.is_active === "Y"
|
|
|
|
|
? "default"
|
|
|
|
|
: "secondary"
|
|
|
|
|
}
|
2025-09-03 18:23:23 +09:00
|
|
|
className={cn(
|
|
|
|
|
"transition-colors",
|
2025-09-30 14:28:40 +09:00
|
|
|
activeCode.isActive === "Y" || activeCode.is_active === "Y"
|
2025-09-03 18:23:23 +09:00
|
|
|
? "bg-green-100 text-green-800"
|
2025-10-02 14:34:15 +09:00
|
|
|
: "bg-gray-100 text-muted-foreground",
|
2025-09-03 18:23:23 +09:00
|
|
|
)}
|
|
|
|
|
>
|
2025-09-30 14:28:40 +09:00
|
|
|
{activeCode.isActive === "Y" || activeCode.is_active === "Y" ? "활성" : "비활성"}
|
2025-09-03 18:23:23 +09:00
|
|
|
</Badge>
|
|
|
|
|
</div>
|
2025-10-02 14:34:15 +09:00
|
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
2025-09-30 14:28:40 +09:00
|
|
|
{activeCode.codeValue || activeCode.code_value}
|
|
|
|
|
</p>
|
2025-09-03 18:23:23 +09:00
|
|
|
{activeCode.description && (
|
|
|
|
|
<p className="mt-1 text-sm text-gray-500">{activeCode.description}</p>
|
|
|
|
|
)}
|
2025-09-02 18:25:44 +09:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-09-03 18:23:23 +09:00
|
|
|
);
|
|
|
|
|
})()}
|
|
|
|
|
</div>
|
|
|
|
|
) : null}
|
|
|
|
|
</DragOverlay>
|
|
|
|
|
</DndContext>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* 무한 스크롤 로딩 인디케이터 */}
|
|
|
|
|
{isFetchingNextPage && (
|
|
|
|
|
<div className="flex items-center justify-center py-4">
|
|
|
|
|
<LoadingSpinner size="sm" />
|
|
|
|
|
<span className="ml-2 text-sm text-gray-500">코드를 더 불러오는 중...</span>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* 모든 코드 로드 완료 메시지 */}
|
|
|
|
|
{!hasNextPage && codes.length > 0 && (
|
|
|
|
|
<div className="py-4 text-center text-sm text-gray-500">모든 코드를 불러왔습니다.</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-04 10:00:38 +09:00
|
|
|
codes={codes}
|
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>
|
|
|
|
|
);
|
|
|
|
|
}
|