summaryrefslogtreecommitdiff
path: root/lib/rfqs/tbe-table/invite-vendors-dialog.tsx
blob: 935d2bf36ea6e4ef384f2a9889dab952c05cb03f (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
"use client"

import * as React from "react"
import { type Row } from "@tanstack/react-table"
import { Loader, Send } 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 { Input } from "@/components/ui/input"

import { VendorWithTbeFields } from "@/config/vendorTbeColumnsConfig"
import { inviteTbeVendorsAction } from "../service"
import { ScrollArea } from "@/components/ui/scroll-area"
import { Badge } from "@/components/ui/badge"
import { Label } from "@/components/ui/label"

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

export function InviteVendorsDialog({
  vendors,
  rfqId,
  showTrigger = true,
  onSuccess,
  ...props
}: InviteVendorsDialogProps) {
  const [isInvitePending, startInviteTransition] = React.useTransition()


  // multiple 파일을 받을 state
  const [files, setFiles] = React.useState<FileList | null>(null)

  // 미디어쿼리 (desktop 여부)
  const isDesktop = useMediaQuery("(min-width: 640px)")

  function onInvite() {
    startInviteTransition(async () => {
      // 파일이 선택되지 않았다면 에러
      if (!files || files.length === 0) {
        toast.error("Please attach TBE files before inviting.")
        return
      }

      // FormData 생성
      const formData = new FormData()
      formData.append("rfqId", String(rfqId))
      vendors.forEach((vendor) => {
        formData.append("vendorIds[]", String(vendor.id))
      })

      // multiple 파일
      for (let i = 0; i < files.length; i++) {
        formData.append("tbeFiles", files[i]) // key는 동일하게 "tbeFiles"
      }

      // 서버 액션 호출
      const { error } = await inviteTbeVendorsAction(formData)

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

      // 성공
      props.onOpenChange?.(false)
      toast.success("Vendors invited with TBE!")
      onSuccess?.()
    })
  }

  // 파일 선택 UI
  const fileInput = (
<>
    <div className="space-y-2">
    <Label>선택된 협력업체 ({vendors.length})</Label>
    <ScrollArea className="h-20 border rounded-md p-2">
      <div className="flex flex-wrap gap-2">
        {vendors.map((vendor, index) => (
          <Badge key={index} variant="secondary" className="py-1">
            {vendor.vendorName || `협력업체 #${vendor.vendorCode}`}
          </Badge>
        ))}
      </div>
    </ScrollArea>
    <p className="text-[0.8rem] font-medium text-muted-foreground">
      선택된 모든 협력업체의 등록된 연락처에게 TBE 평가 알림이 전송됩니다.
    </p>
  </div>

    <div className="mb-4">
      <label className="mb-2 block font-medium">TBE Sheets</label>
      <Input
        type="file"
        multiple
        onChange={(e) => {
          setFiles(e.target.files)
        }}
      />
    </div>
    </>
  )

  // Desktop Dialog
  if (isDesktop) {
    return (
      <Dialog {...props}>
        {showTrigger ? (
          <DialogTrigger asChild>
            <Button variant="outline" size="sm">
              <Send className="mr-2 size-4" aria-hidden="true" />
              TBE 평가 생성 ({vendors.length})
            </Button>
          </DialogTrigger>
        ) : null}
        <DialogContent>
          <DialogHeader>
            <DialogTitle>TBE 평가 시트 전송</DialogTitle>
            <DialogDescription>
              선택한 {vendors.length}개 협력업체에 대한 기술 평가 시트와 알림을 전송합니다. 파일 첨부가 필수이므로 파일을 첨부해야지 버튼이 활성화됩니다.
            </DialogDescription>
          </DialogHeader>

          {/* 파일 첨부 */}
          {fileInput}

          <DialogFooter className="gap-2 sm:space-x-0">
            <DialogClose asChild>
              <Button variant="outline">Cancel</Button>
            </DialogClose>
            <Button
              aria-label="Invite selected rows"
              variant="destructive"
              onClick={onInvite}
              // 파일이 없거나 초대 진행중이면 비활성화
              disabled={isInvitePending || !files || files.length === 0}
            >
              {isInvitePending && (
                <Loader
                  className="mr-2 size-4 animate-spin"
                  aria-hidden="true"
                />
              )}
              Invite
            </Button>
          </DialogFooter>
        </DialogContent>
      </Dialog>
    )
  }

  // Mobile Drawer
  return (
    <Drawer {...props}>
      {showTrigger ? (
        <DrawerTrigger asChild>
          <Button variant="outline" size="sm">
            <Send className="mr-2 size-4" aria-hidden="true" />
            Invite ({vendors.length})
          </Button>
        </DrawerTrigger>
      ) : null}
      <DrawerContent>
        <DrawerHeader>
          <DialogTitle>TBE 평가 시트 전송</DialogTitle>
          <DialogDescription>
            선택한 {vendors.length}개 협력업체에 대한 기술 평가 시트와 알림을 전송합니다. 파일 첨부가 필수이므로 파일을 첨부해야지 버튼이 활성화됩니다.
          </DialogDescription>
        </DrawerHeader>

        {/* 파일 첨부 */}
        {fileInput}

        <DrawerFooter className="gap-2 sm:space-x-0">
          <DrawerClose asChild>
            <Button variant="outline">Cancel</Button>
          </DrawerClose>
          <Button
            aria-label="Invite selected rows"
            variant="destructive"
            onClick={onInvite}
            // 파일이 없거나 초대 진행중이면 비활성화
            disabled={isInvitePending || !files || files.length === 0}
          >
            {isInvitePending && (
              <Loader className="mr-2 size-4 animate-spin" aria-hidden="true" />
            )}
            Invite
          </Button>
        </DrawerFooter>
      </DrawerContent>
    </Drawer>
  )
}