summaryrefslogtreecommitdiff
path: root/lib/vendors/table/approve-vendor-dialog.tsx
blob: 980953aa0113c43a5d348f553d08b10666944526 (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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
"use client"

import * as React from "react"
import { type Row } from "@tanstack/react-table"
import { Loader, Check, X } 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 { Vendor } from "@/db/schema/vendors"
import { approveVendors, rejectVendors } from "../service"
import { useSession } from "next-auth/react"

interface VendorDecisionDialogProps
  extends React.ComponentPropsWithoutRef<typeof Dialog> {
  vendors: Row<Vendor>["original"][]
  showTrigger?: boolean
  onSuccess?: () => void
}

export function VendorDecisionDialog({
  vendors,
  showTrigger = true,
  onSuccess,
  ...props
}: VendorDecisionDialogProps) {
  const [isApprovePending, startApproveTransition] = React.useTransition()
  const [isRejectPending, startRejectTransition] = React.useTransition()
  const isDesktop = useMediaQuery("(min-width: 640px)")
  const { data: session } = useSession()

  function onApprove() {
    if (!session?.user?.id) {
      toast.error("사용자 인증 정보를 찾을 수 없습니다.")
      return
    }

    startApproveTransition(async () => {
      try {
        console.log("🔍 [DEBUG] 승인 요청 시작 - vendors:", vendors.map(v => ({ id: v.id, vendorName: v.vendorName, email: v.email })));
        console.log("🔍 [DEBUG] 세션 정보:", { userId: session.user.id, userType: typeof session.user.id });

        const { error } = await approveVendors({
          ids: vendors.map((vendor) => vendor.id),
          userId: Number(session.user.id)
        })

        if (error) {
          console.error("🚨 [DEBUG] 승인 처리 에러:", error);
          toast.error(error)
          return
        }

        console.log("✅ [DEBUG] 승인 처리 성공");
        props.onOpenChange?.(false)
        toast.success("협력업체 등록이 승인되었습니다.")
        onSuccess?.()
      } catch (error) {
        console.error("🚨 [DEBUG] 예상치 못한 에러:", error);
        toast.error("예상치 못한 오류가 발생했습니다.")
      }
    })
  }

  function onReject() {
    if (!session?.user?.id) {
      toast.error("사용자 인증 정보를 찾을 수 없습니다.")
      return
    }

    startRejectTransition(async () => {
      try {
        console.log("🔍 [DEBUG] 거절 요청 시작 - vendors:", vendors.map(v => ({ id: v.id, vendorName: v.vendorName, email: v.email })));
        console.log("🔍 [DEBUG] 세션 정보:", { userId: session.user.id, userType: typeof session.user.id });

        const { error } = await rejectVendors({
          ids: vendors.map((vendor) => vendor.id),
          userId: Number(session.user.id)
        })

        if (error) {
          console.error("🚨 [DEBUG] 거절 처리 에러:", error);
          toast.error(error)
          return
        }

        console.log("✅ [DEBUG] 거절 처리 성공");
        props.onOpenChange?.(false)
        toast.success("협력업체 등록이 거절되었습니다.")
        onSuccess?.()
      } catch (error) {
        console.error("🚨 [DEBUG] 예상치 못한 에러:", error);
        toast.error("예상치 못한 오류가 발생했습니다.")
      }
    })
  }

  if (isDesktop) {
    return (
      <Dialog {...props}>
        {showTrigger ? (
          <DialogTrigger asChild>
            <Button variant="outline" size="sm" className="gap-2">
              <Check className="size-4" aria-hidden="true" />
              가입 결정 ({vendors.length})
            </Button>
          </DialogTrigger>
        ) : null}
        <DialogContent className="max-w-2xl">
          <DialogHeader>
            <DialogTitle>협력업체 가입 결정</DialogTitle>
            <DialogDescription>
              선택한 <span className="font-medium">{vendors.length}</span>개 협력업체에 대한 가입 결정을 해주세요.
            </DialogDescription>
          </DialogHeader>

          {/* 선택한 벤더 목록 표시 */}
          <div className="max-h-64 overflow-y-auto border rounded-md p-4">
            <h4 className="font-medium mb-2">선택된 협력업체:</h4>
            <div className="space-y-2">
              {vendors.map((vendor) => (
                <div key={vendor.id} className="flex items-center justify-between p-2 bg-gray-50 rounded">
                  <div>
                    <div className="font-medium">{vendor.vendorName}</div>
                    <div className="text-sm text-gray-600">{vendor.email}</div>
                  </div>
                  <div className="text-sm text-gray-500">ID: {vendor.id}</div>
                </div>
              ))}
            </div>
          </div>

          <DialogFooter className="gap-2 sm:space-x-0">
            <DialogClose asChild>
              <Button variant="outline">취소</Button>
            </DialogClose>
            <Button
              aria-label="Reject selected vendors"
              variant="destructive"
              onClick={onReject}
              disabled={isRejectPending || isApprovePending}
            >
              {isRejectPending && (
                <Loader
                  className="mr-2 size-4 animate-spin"
                  aria-hidden="true"
                />
              )}
              <X className="mr-2 size-4" aria-hidden="true" />
              거절
            </Button>
            <Button
              aria-label="Approve selected vendors"
              variant="default"
              onClick={onApprove}
              disabled={isApprovePending || isRejectPending}
            >
              {isApprovePending && (
                <Loader
                  className="mr-2 size-4 animate-spin"
                  aria-hidden="true"
                />
              )}
              <Check className="mr-2 size-4" aria-hidden="true" />
              승인
            </Button>
          </DialogFooter>
        </DialogContent>
      </Dialog>
    )
  }

  return (
    <Drawer {...props}>
      {showTrigger ? (
        <DrawerTrigger asChild>
          <Button variant="outline" size="sm" className="gap-2">
            <Check className="size-4" aria-hidden="true" />
            가입 결정 ({vendors.length})
          </Button>
        </DrawerTrigger>
      ) : null}
      <DrawerContent className="max-h-[80vh]">
        <DrawerHeader>
          <DrawerTitle>협력업체 가입 결정</DrawerTitle>
          <DrawerDescription>
            선택한 <span className="font-medium">{vendors.length}</span>개 협력업체에 대한 가입 결정을 해주세요.
          </DrawerDescription>
        </DrawerHeader>

        {/* 선택한 벤더 목록 표시 */}
        <div className="max-h-48 overflow-y-auto px-4">
          <h4 className="font-medium mb-2">선택된 협력업체:</h4>
          <div className="space-y-2">
            {vendors.map((vendor) => (
              <div key={vendor.id} className="flex items-center justify-between p-2 bg-gray-50 rounded">
                <div>
                  <div className="font-medium">{vendor.vendorName}</div>
                  <div className="text-sm text-gray-600">{vendor.email}</div>
                </div>
                <div className="text-sm text-gray-500">ID: {vendor.id}</div>
              </div>
            ))}
          </div>
        </div>

        <DrawerFooter className="gap-2 sm:space-x-0">
          <DrawerClose asChild>
            <Button variant="outline">취소</Button>
          </DrawerClose>
          <Button
            aria-label="Reject selected vendors"
            variant="destructive"
            onClick={onReject}
            disabled={isRejectPending || isApprovePending}
          >
            {isRejectPending && (
              <Loader
                className="mr-2 size-4 animate-spin"
                aria-hidden="true"
              />
            )}
            <X className="mr-2 size-4" aria-hidden="true" />
            거절
          </Button>
          <Button
            aria-label="Approve selected vendors"
            variant="default"
            onClick={onApprove}
            disabled={isApprovePending || isRejectPending}
          >
            {isApprovePending && (
              <Loader className="mr-2 size-4 animate-spin"
                aria-hidden="true"
              />
            )}
            <Check className="mr-2 size-4" aria-hidden="true" />
            승인
          </Button>
        </DrawerFooter>
      </DrawerContent>
    </Drawer>
  )
}