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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
|
"use client"
import * as React from "react"
import { Card } from "@/components/ui/card"
import { Button } from "@/components/ui/button"
import { ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight } from "lucide-react"
import { useAtom } from "jotai"
import { ProjectAvlTable } from "./project-avl-table"
import { StandardAvlTable } from "./standard-avl-table"
import { VendorPoolTable } from "./vendor-pool-table"
import { selectedAvlRecordAtom } from "../avl-atoms"
import type { AvlListItem } from "../types"
// 선택된 테이블 타입
type SelectedTable = 'project' | 'standard' | 'vendor' | null
// 선택 상태 액션 타입
type SelectionAction =
| { type: 'SELECT_PROJECT'; count: number }
| { type: 'SELECT_STANDARD'; count: number }
| { type: 'SELECT_VENDOR'; count: number }
| { type: 'CLEAR_SELECTION' }
// 선택 상태
interface SelectionState {
selectedTable: SelectedTable
selectedRowCount: number
resetCounters: {
project: number
standard: number
vendor: number
}
}
// 선택 상태 리듀서
const selectionReducer = (state: SelectionState, action: SelectionAction): SelectionState => {
switch (action.type) {
case 'SELECT_PROJECT':
if (action.count > 0) {
return {
selectedTable: 'project',
selectedRowCount: action.count,
resetCounters: {
...state.resetCounters,
standard: state.selectedTable !== 'project' ? state.resetCounters.standard + 1 : state.resetCounters.standard,
vendor: state.selectedTable !== 'project' ? state.resetCounters.vendor + 1 : state.resetCounters.vendor,
}
}
} else if (state.selectedTable === 'project') {
return {
...state,
selectedTable: null,
selectedRowCount: 0,
}
}
return state
case 'SELECT_STANDARD':
if (action.count > 0) {
return {
selectedTable: 'standard',
selectedRowCount: action.count,
resetCounters: {
...state.resetCounters,
project: state.selectedTable !== 'standard' ? state.resetCounters.project + 1 : state.resetCounters.project,
vendor: state.selectedTable !== 'standard' ? state.resetCounters.vendor + 1 : state.resetCounters.vendor,
}
}
} else if (state.selectedTable === 'standard') {
return {
...state,
selectedTable: null,
selectedRowCount: 0,
}
}
return state
case 'SELECT_VENDOR':
if (action.count > 0) {
return {
selectedTable: 'vendor',
selectedRowCount: action.count,
resetCounters: {
...state.resetCounters,
project: state.selectedTable !== 'vendor' ? state.resetCounters.project + 1 : state.resetCounters.project,
standard: state.selectedTable !== 'vendor' ? state.resetCounters.standard + 1 : state.resetCounters.standard,
}
}
} else if (state.selectedTable === 'vendor') {
return {
...state,
selectedTable: null,
selectedRowCount: 0,
}
}
return state
default:
return state
}
}
interface AvlRegistrationAreaProps {
disabled?: boolean // 비활성화 상태
}
export function AvlRegistrationArea({ disabled = false }: AvlRegistrationAreaProps) {
// 선택된 AVL 레코드 구독
const [selectedAvlRecord] = useAtom(selectedAvlRecordAtom)
// 단일 선택 상태 관리 (useReducer 사용)
const [selectionState, dispatch] = React.useReducer(selectionReducer, {
selectedTable: null,
selectedRowCount: 0,
resetCounters: {
project: 0,
standard: 0,
vendor: 0,
},
})
// 선택 핸들러들
const handleProjectSelection = React.useCallback((count: number) => {
dispatch({ type: 'SELECT_PROJECT', count })
}, [])
const handleStandardSelection = React.useCallback((count: number) => {
dispatch({ type: 'SELECT_STANDARD', count })
}, [])
const handleVendorSelection = React.useCallback((count: number) => {
dispatch({ type: 'SELECT_VENDOR', count })
}, [])
const { selectedTable, selectedRowCount, resetCounters } = selectionState
// 선택된 AVL에 따른 필터 값들
const [currentProjectCode, setCurrentProjectCode] = React.useState<string>("")
const constructionSector = selectedAvlRecord?.constructionSector || ""
const shipType = selectedAvlRecord?.shipType || ""
const avlKind = selectedAvlRecord?.avlKind || ""
const htDivision = selectedAvlRecord?.htDivision || ""
const avlListId = selectedAvlRecord?.id ? String(selectedAvlRecord.id) : ""
// 선택된 AVL 레코드가 변경될 때 프로젝트 코드 초기화
React.useEffect(() => {
setCurrentProjectCode(selectedAvlRecord?.projectCode || "")
}, [selectedAvlRecord?.projectCode])
// 프로젝트 코드 변경 핸들러
const handleProjectCodeChange = React.useCallback((projectCode: string) => {
setCurrentProjectCode(projectCode)
}, [])
return (
<Card className={`h-full min-w-full overflow-visible ${disabled ? 'opacity-50 pointer-events-none' : ''}`}>
{/* 고정 헤더 영역 */}
<div className="sticky top-0 z-10 p-4 border-b">
<div className="flex items-center justify-between">
<h3 className="text-lg font-semibold">AVL 등록 {disabled ? "(비활성화)" : ""}</h3>
<div className="flex gap-2">
<Button variant="outline" size="sm" disabled={disabled}>
AVL 불러오기
</Button>
</div>
</div>
</div>
{/* 스크롤되는 콘텐츠 영역 */}
<div className="overflow-x-auto overflow-y-hidden">
<div className="grid grid-cols-[2.2fr_2fr_2.5fr] gap-0 min-w-[1200px] w-fit">
{/* 프로젝트 AVL 테이블 - 9개 컬럼 */}
<div className="p-4 border-r relative">
<ProjectAvlTable
onSelectionChange={handleProjectSelection}
resetCounter={resetCounters.project}
projectCode={currentProjectCode}
avlListId={parseInt(avlListId) || 1}
onProjectCodeChange={handleProjectCodeChange}
/>
{/* 이동 버튼들 - 첫 번째 border 위에 오버레이 */}
<div className="absolute right-0 top-1/2 transform -translate-y-1/2 translate-x-1/2 z-10">
<div className="flex flex-col gap-2 bg-background border rounded-md p-1 shadow-sm">
<Button
variant="outline"
size="sm"
className="w-8 h-8 p-0"
title="프로젝트AVL로 복사"
disabled={disabled || selectedTable !== 'standard' || selectedRowCount === 0}
>
<ChevronLeft className="w-4 h-4" />
</Button>
<Button
variant="outline"
size="sm"
className="w-8 h-8 p-0"
title="선종별표준AVL로 복사"
disabled={disabled || selectedTable !== 'project' || selectedRowCount === 0}
>
<ChevronRight className="w-4 h-4" />
</Button>
<Button
variant="outline"
size="sm"
className="w-8 h-8 p-0"
title="벤더풀로 복사"
disabled={disabled || selectedTable !== 'project' || selectedRowCount === 0}
>
<ChevronsRight className="w-4 h-4" />
</Button>
</div>
</div>
</div>
{/* 선종별 표준 AVL 테이블 - 8개 컬럼 */}
<div className="p-4 border-r relative">
<StandardAvlTable
onSelectionChange={handleStandardSelection}
resetCounter={resetCounters.standard}
constructionSector={constructionSector}
shipType={shipType}
avlKind={avlKind}
htDivision={htDivision}
/>
{/* 이동 버튼들 - 두 번째 border 위에 오버레이 */}
<div className="absolute right-0 top-1/2 transform -translate-y-1/2 translate-x-1/2 z-10">
<div className="flex flex-col gap-2 bg-background border rounded-md p-1 shadow-sm">
<Button
variant="outline"
size="sm"
className="w-8 h-8 p-0"
title="프로젝트AVL로 복사"
disabled={disabled || selectedTable !== 'vendor' || selectedRowCount === 0}
>
<ChevronsLeft className="w-4 h-4" />
</Button>
<Button
variant="outline"
size="sm"
className="w-8 h-8 p-0"
title="선종별표준AVL로 복사"
disabled={disabled || selectedTable !== 'vendor' || selectedRowCount === 0}
>
<ChevronLeft className="w-4 h-4" />
</Button>
<Button
variant="outline"
size="sm"
className="w-8 h-8 p-0"
title="벤더풀로 복사"
disabled={disabled || selectedTable !== 'standard' || selectedRowCount === 0}
>
<ChevronRight className="w-4 h-4" />
</Button>
</div>
</div>
</div>
{/* Vendor Pool 테이블 - 10개 컬럼 */}
<div className="p-4 relative">
<VendorPoolTable
onSelectionChange={handleVendorSelection}
resetCounter={resetCounters.vendor}
/>
</div>
</div>
</div>
</Card>
)
}
|