summaryrefslogtreecommitdiff
path: root/lib/bidding/detail/table/bidding-detail-vendor-create-dialog.tsx
blob: f35957bc6c11956532362140e1ece4a9356f5809 (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
'use client'

import * as React from 'react'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { Textarea } from '@/components/ui/textarea'
import { Checkbox } from '@/components/ui/checkbox'
import {
  Dialog,
  DialogContent,
  DialogDescription,
  DialogFooter,
  DialogHeader,
  DialogTitle,
} from '@/components/ui/dialog'
import {
  Select,
  SelectContent,
  SelectItem,
  SelectTrigger,
  SelectValue,
} from '@/components/ui/select'
import {
  Command,
  CommandEmpty,
  CommandGroup,
  CommandInput,
  CommandItem,
} from '@/components/ui/command'
import {
  Popover,
  PopoverContent,
  PopoverTrigger,
} from '@/components/ui/popover'
import { Check, ChevronsUpDown, Search } from 'lucide-react'
import { cn } from '@/lib/utils'
import { createBiddingDetailVendor } from '@/lib/bidding/detail/service'
import { searchVendorsForBidding } from '@/lib/bidding/service'
import { useToast } from '@/hooks/use-toast'
import { useTransition } from 'react'

interface BiddingDetailVendorCreateDialogProps {
  biddingId: number
  open: boolean
  onOpenChange: (open: boolean) => void
  onSuccess: () => void
}

interface Vendor {
  id: number
  vendorName: string
  vendorCode: string
  status: string
}

export function BiddingDetailVendorCreateDialog({
  biddingId,
  open,
  onOpenChange,
  onSuccess
}: BiddingDetailVendorCreateDialogProps) {
  const { toast } = useToast()
  const [isPending, startTransition] = useTransition()

  // Vendor 검색 상태
  const [vendors, setVendors] = React.useState<Vendor[]>([])
  const [selectedVendor, setSelectedVendor] = React.useState<Vendor | null>(null)
  const [vendorSearchOpen, setVendorSearchOpen] = React.useState(false)
  const [vendorSearchValue, setVendorSearchValue] = React.useState('')

  // 폼 상태 (간소화 - 필수 항목만)
  const [formData, setFormData] = React.useState({
    awardRatio: 100, // 기본 100%
  })

  // Vendor 검색
  React.useEffect(() => {
    const search = async () => {
      if (vendorSearchValue.trim().length < 2) {
        setVendors([])
        return
      }

      try {
        const result = await searchVendorsForBidding(vendorSearchValue.trim(), biddingId, 10)
        setVendors(result)
      } catch (error) {
        console.error('Vendor search failed:', error)
        setVendors([])
      }
    }

    const debounceTimer = setTimeout(search, 300)
    return () => clearTimeout(debounceTimer)
  }, [vendorSearchValue])

  const handleVendorSelect = (vendor: Vendor) => {
    setSelectedVendor(vendor)
    setVendorSearchValue(`${vendor.vendorName} (${vendor.vendorCode})`)
    setVendorSearchOpen(false)
  }

  const handleCreate = () => {
    if (!selectedVendor) {
      toast({
        title: '오류',
        description: '업체를 선택해주세요.',
        variant: 'destructive',
      })
      return
    }


    startTransition(async () => {
      const response = await createBiddingDetailVendor(
        biddingId,
        selectedVendor.id
      )

      if (response.success) {
        toast({
          title: '성공',
          description: response.message,
        })
        onOpenChange(false)
        resetForm()
        onSuccess()
      } else {
        toast({
          title: '오류',
          description: response.error,
          variant: 'destructive',
        })
      }
    })
  }

  const resetForm = () => {
    setSelectedVendor(null)
    setVendorSearchValue('')
    setFormData({
      awardRatio: 100, // 기본 100%
    })
  }

  return (
    <Dialog open={open} onOpenChange={onOpenChange}>
      <DialogContent className="sm:max-w-[600px]">
        <DialogHeader>
          <DialogTitle>협력업체 추가</DialogTitle>
          <DialogDescription>
            검색해서 업체를 선택하고 견적 정보를 입력해주세요.
          </DialogDescription>
        </DialogHeader>
        <div className="grid gap-4 py-4">
          {/* Vendor 검색 */}
          <div className="space-y-2">
            <Label htmlFor="vendor-search">업체 검색</Label>
            <Popover open={vendorSearchOpen} onOpenChange={setVendorSearchOpen}>
              <PopoverTrigger asChild>
                <Button
                  variant="outline"
                  role="combobox"
                  aria-expanded={vendorSearchOpen}
                  className="w-full justify-between"
                >
                  {selectedVendor
                    ? `${selectedVendor.vendorName} (${selectedVendor.vendorCode})`
                    : "업체를 검색해서 선택하세요..."}
                  <ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
                </Button>
              </PopoverTrigger>
              <PopoverContent className="w-full p-0">
                <Command>
                  <CommandInput
                    placeholder="업체명 또는 코드를 입력하세요..."
                    value={vendorSearchValue}
                    onValueChange={setVendorSearchValue}
                  />
                  <CommandEmpty>
                    {vendorSearchValue.length < 2
                      ? "최소 2자 이상 입력해주세요"
                      : "검색 결과가 없습니다"}
                  </CommandEmpty>
                  <CommandGroup className="max-h-64 overflow-auto">
                    {vendors.map((vendor) => (
                      <CommandItem
                        key={vendor.id}
                        value={`${vendor.vendorName} ${vendor.vendorCode}`}
                        onSelect={() => handleVendorSelect(vendor)}
                      >
                        <Check
                          className={cn(
                            "mr-2 h-4 w-4",
                            selectedVendor?.id === vendor.id ? "opacity-100" : "opacity-0"
                          )}
                        />
                        <div className="flex flex-col">
                          <span className="font-medium">{vendor.vendorName}</span>
                          <span className="text-sm text-muted-foreground">{vendor.vendorCode}</span>
                        </div>
                      </CommandItem>
                    ))}
                  </CommandGroup>
                </Command>
              </PopoverContent>
            </Popover>
          </div>
        </div>
        <DialogFooter>
          <Button variant="outline" onClick={() => onOpenChange(false)}>
            취소
          </Button>
          <Button onClick={handleCreate} disabled={isPending || !selectedVendor}>
            추가
          </Button>
        </DialogFooter>
      </DialogContent>
    </Dialog>
  )
}