summaryrefslogtreecommitdiff
path: root/components/documents/vendor-docs.client.tsx
blob: 15caf57cfdaf84ec2910a86ecabf489e17008f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
"use client"

import * as React from "react"
import { useRouter, useParams } from "next/navigation"

import DocumentContainer from "@/components/documents/document-container"
import { ProjectInfo, ProjectSwitcher } from "./project-swicher"
import { InformationButton } from "@/components/information/information-button"
interface VendorDocumentsClientProps {
    projects: ProjectInfo[]
    children: React.ReactNode
}

export default function VendorDocumentsClient({
    projects,
    children,
}: VendorDocumentsClientProps) {
    const router = useRouter()
    const params = useParams()
    
    // Get the contractId from route parameters
    const contractIdFromUrl = React.useMemo(() => {
        if (params?.contractId) {
            const contractId = Array.isArray(params.contractId) 
                ? params.contractId[0] 
                : params.contractId
            return Number(contractId)
        }
        return null
    }, [params])
    
    // Use the URL contractId as the selected contract
    const [selectedContractId, setSelectedContractId] = React.useState<number | null>(
        contractIdFromUrl
    )
    
    // Update selectedContractId when URL changes
    React.useEffect(() => {
        if (contractIdFromUrl) {
            setSelectedContractId(contractIdFromUrl)
        }
    }, [contractIdFromUrl])

    // Handle contract selection
    function handleSelectContract(projectId: number, contractId: number) {
        setSelectedContractId(contractId)
        
        // Navigate to the contract's documents page
        router.push(`/partners/documents/${contractId}`, { scroll: false })
    }
    
    return (
        <>
            {/* 상단 영역: 제목 왼쪽 / ProjectSwitcher 오른쪽 */}
            <div className="flex items-center justify-between">
                {/* 왼쪽: 타이틀 & 설명 */}
                <div>
                    <div className="flex items-center gap-2">
                        <h2 className="text-2xl font-bold tracking-tight">협력업체 문서 관리</h2>
                        <InformationButton pagePath="partners/documents" />
                    </div>
                    {/* <p className="text-muted-foreground">
                        문서리스트를 확인하고 리스트에 맞게 문서를 업로드하고 관리할 수 있으며
                        삼성중공업으로 전달할 수 있습니다.
                    </p> */}
                </div>
                
                {/* 오른쪽: ProjectSwitcher */}
                <ProjectSwitcher
                    isCollapsed={false}
                    projects={projects}
                    selectedContractId={selectedContractId}
                    onSelectContract={handleSelectContract}
                />
            </div>
            
            {/* 문서 목록/테이블 영역 */}
            <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow p-5">
                {children}
            </section>
        </>
    )
}