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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
|
"use client"
import * as React from "react"
import { useState } from "react"
import { Button } from "@/components/ui/button"
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog"
import { Info, Download, Edit, Loader2 } from "lucide-react"
import { getPageInformationDirect, getEditPermissionDirect } from "@/lib/information/service"
import { getPageNotices } from "@/lib/notice/service"
import { UpdateInformationDialog } from "@/lib/information/table/update-information-dialog"
import { NoticeViewDialog } from "@/components/notice/notice-view-dialog"
import type { PageInformation, InformationAttachment } from "@/db/schema/information"
import type { Notice } from "@/db/schema/notice"
import { useSession } from "next-auth/react"
import { formatDate } from "@/lib/utils"
// downloadFile은 동적으로 import
interface InformationButtonProps {
pagePath: string
className?: string
variant?: "default" | "outline" | "ghost" | "secondary"
size?: "default" | "sm" | "lg" | "icon"
}
type NoticeWithAuthor = Notice & {
authorName: string | null
authorEmail: string | null
}
export function InformationButton({
pagePath,
className,
variant = "ghost",
size = "icon"
}: InformationButtonProps) {
const { data: session } = useSession()
const [isOpen, setIsOpen] = useState(false)
const [information, setInformation] = useState<(PageInformation & { attachments: InformationAttachment[] }) | null>(null)
const [notices, setNotices] = useState<NoticeWithAuthor[]>([])
const [hasEditPermission, setHasEditPermission] = useState(false)
const [isEditDialogOpen, setIsEditDialogOpen] = useState(false)
const [selectedNotice, setSelectedNotice] = useState<NoticeWithAuthor | null>(null)
const [isNoticeViewDialogOpen, setIsNoticeViewDialogOpen] = useState(false)
const [dataLoaded, setDataLoaded] = useState(false)
const [isLoading, setIsLoading] = useState(false)
const [retryCount, setRetryCount] = useState(0)
// 데이터 로드 함수
const loadData = React.useCallback(async () => {
if (dataLoaded) return
setIsLoading(true)
try {
// 경로 정규화 - 더 안전한 방식
let normalizedPath = pagePath
if (normalizedPath.startsWith('/')) {
normalizedPath = normalizedPath.slice(1)
}
// 빈 문자열이면 기본값 설정
if (!normalizedPath) {
normalizedPath = 'home'
}
// 약간의 지연 추가 (프로덕션에서 DB 연결 안정성)
if (retryCount > 0) {
await new Promise(resolve => setTimeout(resolve, 500 * retryCount))
}
// 순차적으로 데이터 조회 (프로덕션 안정성)
const infoResult = await getPageInformationDirect(normalizedPath)
const noticesResult = await getPageNotices(normalizedPath)
setInformation(infoResult)
setNotices(noticesResult)
setDataLoaded(true)
setRetryCount(0) // 성공시 재시도 횟수 리셋
// 권한 확인 - 세션이 확실히 있을 때만
if (session?.user?.id && infoResult) {
try {
const hasPermission = await getEditPermissionDirect(normalizedPath, session.user.id)
setHasEditPermission(hasPermission)
} catch (permError) {
setHasEditPermission(false)
}
}
} catch (error) {
// 재시도 로직
if (retryCount < 2) {
setRetryCount(prev => prev + 1)
setIsLoading(false)
return
}
// 최대 재시도 후 기본값 설정
setInformation(null)
setNotices([])
setHasEditPermission(false)
setDataLoaded(true)
setRetryCount(0)
} finally {
setIsLoading(false)
}
}, [pagePath, session?.user?.id, dataLoaded, retryCount])
// 세션이 준비되면 자동으로 데이터 로드
React.useEffect(() => {
if (isOpen && !dataLoaded && session !== undefined) {
loadData()
}
}, [isOpen, dataLoaded, session])
// 재시도 처리
React.useEffect(() => {
if (retryCount > 0 && retryCount <= 2) {
const timer = setTimeout(() => {
setDataLoaded(false) // 재시도를 위해 리셋
}, 500 * retryCount)
return () => clearTimeout(timer)
}
}, [retryCount])
// 다이얼로그 열기
const handleDialogOpen = (open: boolean) => {
setIsOpen(open)
// useEffect에서 데이터 로딩 처리하므로 여기서는 제거
}
// 편집 관련 핸들러
const handleEditClick = () => {
setIsEditDialogOpen(true)
}
const handleEditSuccess = () => {
setIsEditDialogOpen(false)
// 편집 후 데이터 다시 로드
setDataLoaded(false)
setRetryCount(0)
}
// 공지사항 클릭 핸들러
const handleNoticeClick = (notice: NoticeWithAuthor) => {
setSelectedNotice(notice)
setIsNoticeViewDialogOpen(true)
}
// 파일 다운로드 핸들러
const handleDownload = async (attachment: InformationAttachment) => {
try {
// 동적으로 downloadFile 함수 import
const { downloadFile } = await import('@/lib/file-download')
await downloadFile(
attachment.filePath,
attachment.fileName,
{
action: 'download',
showToast: true,
showSuccessToast: true
}
)
} catch (error) {
console.error('파일 다운로드 실패:', error)
}
}
return (
<>
<Dialog open={isOpen} onOpenChange={handleDialogOpen}>
<DialogTrigger asChild>
<Button
variant={variant}
size={size}
className={className}
title="인포메이션"
>
<Info className="h-4 w-4" />
{size !== "icon" && <span className="ml-1">정보</span>}
</Button>
</DialogTrigger>
<DialogContent className="max-w-4xl max-h-[80vh] overflow-y-auto">
<DialogHeader>
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<div>
<DialogTitle></DialogTitle>
</div>
</div>
</div>
</DialogHeader>
<div className="mt-4">
{isLoading ? (
<div className="flex items-center justify-center py-12">
<Loader2 className="h-6 w-6 animate-spin text-gray-500" />
<span className="ml-2 text-gray-500">정보를 불러오는 중...</span>
</div>
) : (
<div className="space-y-6">
{/* 공지사항 섹션 */}
<div className="space-y-3">
<div className="flex items-center justify-between">
<h4 className="font-semibold">공지사항</h4>
{notices.length > 0 && (
<span className="text-xs text-gray-500">{notices.length}개</span>
)}
</div>
{notices.length > 0 ? (
<div className="max-h-60 overflow-y-auto border rounded-lg bg-gray-50 p-2">
<div className="space-y-2">
{notices.map((notice) => (
<div
key={notice.id}
className="p-3 bg-white border rounded-lg hover:bg-gray-50 cursor-pointer transition-colors"
onClick={() => handleNoticeClick(notice)}
>
<div className="space-y-1">
<h5 className="font-medium text-sm line-clamp-2">
{notice.title}
</h5>
<div className="flex items-center gap-3 text-xs text-gray-500">
<span>{formatDate(notice.createdAt, "KR")}</span>
{notice.authorName && (
<span>{notice.authorName}</span>
)}
</div>
</div>
</div>
))}
</div>
</div>
) : (
<div className="bg-gray-50 border rounded-lg p-4">
<div className="text-center text-gray-500">
공지사항이 없습니다
</div>
</div>
)}
</div>
{/* 인포메이션 컨텐츠 */}
<div className="space-y-3">
<div className="flex items-center justify-between">
<h4 className="font-semibold">안내사항</h4>
{hasEditPermission && information && (
<Button
variant="outline"
size="sm"
onClick={handleEditClick}
className="flex items-center gap-2 mr-2"
>
<Edit className="h-4 w-4" />
편집
</Button>
)}
</div>
<div className="bg-gray-50 border rounded-lg p-4">
{information?.informationContent ? (
<div className="text-sm text-gray-600 whitespace-pre-wrap max-h-40 overflow-y-auto">
{information.informationContent}
</div>
) : (
<div className="text-center text-gray-500">
안내사항이 없습니다
</div>
)}
</div>
</div>
{/* 첨부파일 */}
<div className="space-y-3">
<div className="flex items-center justify-between">
<h4 className="font-semibold">첨부파일</h4>
{information?.attachments && information.attachments.length > 0 && (
<span className="text-xs text-gray-500">{information.attachments.length}개</span>
)}
</div>
<div className="bg-gray-50 border rounded-lg p-4">
{information?.attachments && information.attachments.length > 0 ? (
<div className="space-y-3">
{information.attachments.map((attachment) => (
<div
key={attachment.id}
className="flex items-center justify-between p-3 bg-white rounded border"
>
<div className="flex-1">
<div className="text-sm font-medium">
{attachment.fileName}
</div>
{attachment.fileSize && (
<div className="text-xs text-gray-500 mt-1">
{attachment.fileSize}
</div>
)}
</div>
<Button
size="sm"
variant="outline"
onClick={() => handleDownload(attachment)}
className="flex items-center gap-1"
>
<Download className="h-3 w-3" />
다운로드
</Button>
</div>
))}
</div>
) : (
<div className="text-center text-gray-500">
첨부파일이 없습니다
</div>
)}
</div>
</div>
</div>
)}
</div>
</DialogContent>
</Dialog>
{/* 공지사항 보기 다이얼로그 */}
<NoticeViewDialog
open={isNoticeViewDialogOpen}
onOpenChange={setIsNoticeViewDialogOpen}
notice={selectedNotice}
/>
{/* 편집 다이얼로그 */}
{information && (
<UpdateInformationDialog
open={isEditDialogOpen}
onOpenChange={setIsEditDialogOpen}
information={information}
onSuccess={handleEditSuccess}
/>
)}
</>
)
}
|