"use client" import * as React from "react" import { cn } from "@/lib/utils" import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, } from "@/components/ui/select" interface PackageItem { itemId: number itemName: string } interface ContractInfo { contractId: number contractNo: string contractName: string packages: PackageItem[] } export interface ProjectInfo { projectId: number projectCode: string projectName: string projectType: string contracts: ContractInfo[] } interface ProjectSwitcherProps { isCollapsed: boolean projects: ProjectInfo[] // 상위가 관리하는 "현재 선택된 contractId" selectedContractId: number | null // 콜백: 사용자가 "어떤 contract"를 골랐는지 onSelectContract: (projectId: number, contractId: number) => void } /** * ProjectSwitcher: * - 프로젝트들(contracts 포함)을 그룹화하여 Select 표시 * - 너무 긴 계약명 등을 ellipsis로 축약 */ export function ProjectSwitcher({ isCollapsed, projects, selectedContractId, onSelectContract, }: ProjectSwitcherProps) { // Select value = stringified contractId const selectValue = selectedContractId ? String(selectedContractId) : "" // 현재 선택된 계약 정보를 찾기 const selectedContract = React.useMemo(() => { if (!selectedContractId) return null for (const proj of projects) { const found = proj.contracts.find((c) => c.contractId === selectedContractId) if (found) { return { ...found, projectId: proj.projectId } } } return null }, [projects, selectedContractId]) // Trigger Label => 계약 이름 or "Select a contract" const triggerLabel = selectedContract?.contractName ?? "Select a contract" function handleValueChange(val: string) { const contractId = Number(val) let foundProjectId = 0 for (const proj of projects) { const found = proj.contracts.find((c) => c.contractId === contractId) if (found) { foundProjectId = proj.projectId break } } onSelectContract(foundProjectId, contractId) } return ( ) }