summaryrefslogtreecommitdiff
path: root/lib/qna/table/delete-qna-dialog.tsx
blob: 55dcd366e6746c701b589852abc6fd843d356dc9 (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
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
"use client"

import * as React from "react"
import { toast } from "sonner"
import { Trash2 } from "lucide-react"

import { Button } from "@/components/ui/button"
import {
  Dialog,
  DialogContent,
  DialogDescription,
  DialogFooter,
  DialogHeader,
  DialogTitle,
  DialogTrigger,
} from "@/components/ui/dialog"
import {
  Drawer,
  DrawerContent,
  DrawerDescription,
  DrawerFooter,
  DrawerHeader,
  DrawerTitle,
  DrawerTrigger,
} from "@/components/ui/drawer"
import { Badge } from "@/components/ui/badge"
import { ScrollArea } from "@/components/ui/scroll-area"

import { QnaViewSelect } from "@/db/schema"
import { useMediaQuery } from "@/hooks/use-media-query"
import { deleteQna } from "../service"

interface DeleteQnaDialogProps {
  open: boolean
  onOpenChange: (open: boolean) => void
  qnas: QnaViewSelect[]
  showTrigger?: boolean
  onSuccess?: () => void
}

export function DeleteQnaDialog({ 
  open, 
  onOpenChange, 
  qnas, 
  showTrigger = true,
  onSuccess
}: DeleteQnaDialogProps) {
  const [isDeletePending, startDeleteTransition] = React.useTransition()
  const isDesktop = useMediaQuery("(min-width: 640px)")

  const qnaCount = qnas.length
  const isMultiple = qnaCount > 1

  async function handleDelete() {
    startDeleteTransition(async () => {
      try {
        const promises = qnas.map(qna => deleteQna(qna.id))
        const results = await Promise.all(promises)
        
        const successCount = results.filter(result => result.success).length
        const failCount = results.length - successCount
        
        if (successCount > 0) {
          toast.success(
            isMultiple 
              ? `${successCount}개의 질문이 삭제되었습니다.`
              : "질문이 삭제되었습니다."
          )
          onSuccess?.()
        }
        
        if (failCount > 0) {
          toast.error(
            isMultiple
              ? `${failCount}개의 질문 삭제에 실패했습니다.`
              : "질문 삭제에 실패했습니다."
          )
        }
        
        if (successCount > 0) {
          onOpenChange(false)
        }
      } catch (error) {
        toast.error("삭제 중 오류가 발생했습니다.")
        console.error("질문 삭제 오류:", error)
      }
    })
  }

  const title = isMultiple ? `${qnaCount}개 질문 삭제` : "질문 삭제"
  const description = isMultiple 
    ? "선택한 질문들을 정말로 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다."
    : "이 질문을 정말로 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다."

  if (isDesktop) {
    return (
      <Dialog open={open} onOpenChange={onOpenChange}>
        {showTrigger && (
          <DialogTrigger asChild>
            <Button variant="outline" size="sm">
              <Trash2 className="mr-2 h-4 w-4" />
              삭제
            </Button>
          </DialogTrigger>
        )}
        <DialogContent className="max-w-2xl">
          <DialogHeader>
            <DialogTitle>{title}</DialogTitle>
            <DialogDescription>{description}</DialogDescription>
          </DialogHeader>
          
          {/* 삭제할 질문 목록 */}
          <div className="max-h-[300px]">
            <div className="text-sm font-medium mb-2">삭제 대상:</div>
            <ScrollArea className="max-h-[250px] border rounded-md p-3">
              <div className="space-y-3">
                {qnas.map((qna, index) => (
                  <div key={qna.id} className="flex items-start gap-3 p-3 border rounded-md bg-muted/50">
                    <div className="font-mono text-xs text-muted-foreground mt-1">
                      {index + 1}.
                    </div>
                    <div className="flex-1 min-w-0">
                      <div className="font-medium text-sm line-clamp-2 mb-1">
                        {qna.title}
                      </div>
                      <div className="flex items-center gap-2 text-xs text-muted-foreground">
                        <span>{qna.authorName}</span>
                        <span>•</span>
                        <span>{qna.companyName || "미지정"}</span>
                        <span>•</span>
                        <span>답변 {qna.totalAnswers}개</span>
                      </div>
                      <div className="flex items-center gap-1 mt-2">
                        {qna.hasAnswers && (
                          <Badge variant="secondary" className="text-xs">
                            답변있음
                          </Badge>
                        )}
                        {qna.isPopular && (
                          <Badge variant="default" className="text-xs">
                            인기질문
                          </Badge>
                        )}
                      </div>
                    </div>
                  </div>
                ))}
              </div>
            </ScrollArea>
          </div>

          {/* 경고 메시지 */}
          <div className="rounded-md border border-destructive/20 bg-destructive/5 p-3">
            <div className="text-sm text-destructive">
              <strong>주의:</strong> 질문을 삭제하면 해당 질문의 모든 답변과 댓글도 함께 삭제됩니다.
            </div>
          </div>

          <DialogFooter>
            <Button
              type="button"
              variant="outline"
              onClick={() => onOpenChange(false)}
              disabled={isDeletePending}
            >
              취소
            </Button>
            <Button
              type="button"
              variant="destructive"
              onClick={handleDelete}
              disabled={isDeletePending}
            >
              {isDeletePending ? "삭제 중..." : "삭제"}
            </Button>
          </DialogFooter>
        </DialogContent>
      </Dialog>
    )
  }

  return (
    <Drawer open={open} onOpenChange={onOpenChange}>
      {showTrigger && (
        <DrawerTrigger asChild>
          <Button variant="outline" size="sm">
            <Trash2 className="mr-2 h-4 w-4" />
            삭제
          </Button>
        </DrawerTrigger>
      )}
      <DrawerContent>
        <DrawerHeader>
          <DrawerTitle>{title}</DrawerTitle>
          <DrawerDescription>{description}</DrawerDescription>
        </DrawerHeader>
        
        <div className="px-4 pb-4">
          {/* 삭제할 질문 목록 */}
          <div className="mb-4">
            <div className="text-sm font-medium mb-2">삭제 대상:</div>
            <div className="max-h-[200px] space-y-2 overflow-y-auto">
              {qnas.map((qna, index) => (
                <div key={qna.id} className="flex items-start gap-2 p-2 border rounded-md bg-muted/50">
                  <div className="font-mono text-xs text-muted-foreground mt-1">
                    {index + 1}.
                  </div>
                  <div className="flex-1 min-w-0">
                    <div className="font-medium text-sm line-clamp-1 mb-1">
                      {qna.title}
                    </div>
                    <div className="text-xs text-muted-foreground">
                      {qna.authorName} • 답변 {qna.totalAnswers}개
                    </div>
                  </div>
                </div>
              ))}
            </div>
          </div>

          {/* 경고 메시지 */}
          <div className="rounded-md border border-destructive/20 bg-destructive/5 p-3 mb-4">
            <div className="text-sm text-destructive">
              <strong>주의:</strong> 삭제된 질문과 관련 데이터는 복구할 수 없습니다.
            </div>
          </div>
        </div>

        <DrawerFooter className="gap-2">
          <Button
            type="button"
            variant="destructive"
            onClick={handleDelete}
            disabled={isDeletePending}
          >
            {isDeletePending ? "삭제 중..." : "삭제"}
          </Button>
          <Button
            type="button"
            variant="outline"
            onClick={() => onOpenChange(false)}
            disabled={isDeletePending}
          >
            취소
          </Button>
        </DrawerFooter>
      </DrawerContent>
    </Drawer>
  )
}