summaryrefslogtreecommitdiff
path: root/lib/itb/table/delete-purchase-request-dialog.tsx
blob: 2f09cf70558fa38c9585ebf8bec35c2bd33ac3cd (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
// components/purchase-requests/delete-purchase-request-dialog.tsx
"use client"

import * as React from "react"
import { type PurchaseRequestView } from "@/db/schema/purchase-requests-view"
import { type Row } from "@tanstack/react-table"
import { Loader, Trash } from "lucide-react"
import { toast } from "sonner"

import { useMediaQuery } from "@/hooks/use-media-query"
import { Button } from "@/components/ui/button"
import {
  Dialog,
  DialogClose,
  DialogContent,
  DialogDescription,
  DialogFooter,
  DialogHeader,
  DialogTitle,
  DialogTrigger,
} from "@/components/ui/dialog"
import {
  Drawer,
  DrawerClose,
  DrawerContent,
  DrawerDescription,
  DrawerFooter,
  DrawerHeader,
  DrawerTitle,
  DrawerTrigger,
} from "@/components/ui/drawer"

import { deletePurchaseRequests } from "../service"

interface DeletePurchaseRequestDialogProps
  extends React.ComponentPropsWithoutRef<typeof Dialog> {
  requests?: Row<PurchaseRequestView>["original"][] | PurchaseRequestView[]
  request?: PurchaseRequestView // 단일 삭제용
  showTrigger?: boolean
  onSuccess?: () => void
}

export function DeletePurchaseRequestDialog({
  requests: requestsProp,
  request,
  showTrigger = true,
  onSuccess,
  ...props
}: DeletePurchaseRequestDialogProps) {
  const [isDeletePending, startDeleteTransition] = React.useTransition()
  const isDesktop = useMediaQuery("(min-width: 640px)")

  // 단일 또는 복수 요청 처리
  const requests = requestsProp || (request ? [request] : [])
  const isMultiple = requests.length > 1

  // 삭제 불가능한 상태 체크
  const nonDeletableRequests = requests.filter(
    req => req.status !== "작성중"
  )
  const canDelete = nonDeletableRequests.length === 0

  function onDelete() {
    if (!canDelete) {
      toast.error("작성중 상태의 요청만 삭제할 수 있습니다.")
      return
    }

    startDeleteTransition(async () => {
      const { error } = await deletePurchaseRequests({
        ids: requests.map((req) => req.id),
      })

      if (error) {
        toast.error(error)
        return
      }

      props.onOpenChange?.(false)
      toast.success(
        isMultiple 
          ? `${requests.length}개의 구매요청이 삭제되었습니다.`
          : "구매요청이 삭제되었습니다."
      )
      onSuccess?.()
    })
  }

  const dialogContent = (
    <>
      <div className="space-y-4">
        <div>
          <p className="text-sm text-muted-foreground">
            이 작업은 되돌릴 수 없습니다. 
            {isMultiple ? (
              <>
                선택한 <span className="font-medium text-foreground">{requests.length}개</span>의 구매요청이 영구적으로 삭제됩니다.
              </>
            ) : (
              <>
                구매요청 <span className="font-medium text-foreground">{requests[0]?.requestCode}</span>이(가) 영구적으로 삭제됩니다.
              </>
            )}
          </p>
        </div>

        {/* 삭제할 요청 목록 표시 (복수인 경우) */}
        {isMultiple && (
          <div className="rounded-lg border bg-muted/30 p-3">
            <p className="text-sm font-medium mb-2">삭제할 구매요청:</p>
            <ul className="space-y-1 max-h-32 overflow-y-auto">
              {requests.map((req) => (
                <li key={req.id} className="text-sm text-muted-foreground">
                  <span className="font-mono">{req.requestCode}</span>
                  {" - "}
                  <span className="truncate">{req.requestTitle}</span>
                </li>
              ))}
            </ul>
          </div>
        )}

        {/* 삭제 불가능한 요청이 있는 경우 경고 */}
        {nonDeletableRequests.length > 0 && (
          <div className="rounded-lg border border-destructive/50 bg-destructive/10 p-3">
            <p className="text-sm font-medium text-destructive mb-2">
              삭제할 수 없는 요청:
            </p>
            <ul className="space-y-1">
              {nonDeletableRequests.map((req) => (
                <li key={req.id} className="text-sm text-destructive/80">
                  <span className="font-mono">{req.requestCode}</span>
                  {" - 상태: "}
                  <span className="font-medium">{req.status}</span>
                </li>
              ))}
            </ul>
            <p className="text-xs text-destructive/60 mt-2">
              ※ 작성중 상태의 요청만 삭제할 수 있습니다.
            </p>
          </div>
        )}
      </div>
    </>
  )

  if (isDesktop) {
    return (
      <Dialog {...props}>
        {showTrigger ? (
          <DialogTrigger asChild>
            <Button variant="outline" size="sm" disabled={requests.length === 0}>
              <Trash className="mr-2 size-4" aria-hidden="true" />
              삭제 {requests.length > 0 && `(${requests.length})`}
            </Button>
          </DialogTrigger>
        ) : null}
        <DialogContent>
          <DialogHeader>
            <DialogTitle>구매요청을 삭제하시겠습니까?</DialogTitle>
            <DialogDescription>
              {dialogContent}
            </DialogDescription>
          </DialogHeader>
          <DialogFooter className="gap-2 sm:space-x-0">
            <DialogClose asChild>
              <Button variant="outline">취소</Button>
            </DialogClose>
            <Button
              aria-label="Delete selected requests"
              variant="destructive"
              onClick={onDelete}
              disabled={isDeletePending || !canDelete}
            >
              {isDeletePending && (
                <Loader
                  className="mr-2 size-4 animate-spin"
                  aria-hidden="true"
                />
              )}
              삭제
            </Button>
          </DialogFooter>
        </DialogContent>
      </Dialog>
    )
  }

  return (
    <Drawer {...props}>
      {showTrigger ? (
        <DrawerTrigger asChild>
          <Button variant="outline" size="sm" disabled={requests.length === 0}>
            <Trash className="mr-2 size-4" aria-hidden="true" />
            삭제 {requests.length > 0 && `(${requests.length})`}
          </Button>
        </DrawerTrigger>
      ) : null}
      <DrawerContent>
        <DrawerHeader>
          <DrawerTitle>구매요청을 삭제하시겠습니까?</DrawerTitle>
          <DrawerDescription>
            {dialogContent}
          </DrawerDescription>
        </DrawerHeader>
        <DrawerFooter className="gap-2 sm:space-x-0">
          <DrawerClose asChild>
            <Button variant="outline">취소</Button>
          </DrawerClose>
          <Button
            aria-label="Delete selected requests"
            variant="destructive"
            onClick={onDelete}
            disabled={isDeletePending || !canDelete}
          >
            {isDeletePending && (
              <Loader className="mr-2 size-4 animate-spin" aria-hidden="true" />
            )}
            삭제
          </Button>
        </DrawerFooter>
      </DrawerContent>
    </Drawer>
  )
}