summaryrefslogtreecommitdiff
path: root/lib/pq/pq-review-table-new/cancel-investigation-dialog.tsx
blob: 03045537be188c740f417ab102511b7f232310f9 (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
"use client"

import * as React from "react"

import { Button } from "@/components/ui/button"
import {
  Dialog,
  DialogContent,
  DialogDescription,
  DialogFooter,
  DialogHeader,
  DialogTitle,
} from "@/components/ui/dialog"

interface CancelInvestigationDialogProps {
  isOpen: boolean
  onClose: () => void
  onConfirm: () => Promise<void>
  selectedCount: number
}

export function CancelInvestigationDialog({
  isOpen,
  onClose,
  onConfirm,
  selectedCount,
}: CancelInvestigationDialogProps) {
  const [isPending, setIsPending] = React.useState(false)

  async function handleConfirm() {
    setIsPending(true)
    try {
      await onConfirm()
    } finally {
      setIsPending(false)
    }
  }

  return (
    <Dialog open={isOpen} onOpenChange={(open) => !open && onClose()}>
      <DialogContent>
        <DialogHeader>
          <DialogTitle>실사 의뢰 취소</DialogTitle>
          <DialogDescription>
            선택한 {selectedCount}개 협력업체의 실사 의뢰를 취소하시겠습니까?
            계획 상태인 실사만 취소할 수 있습니다.
          </DialogDescription>
        </DialogHeader>
        <DialogFooter>
          <Button
            type="button"
            variant="outline"
            onClick={onClose}
            disabled={isPending}
          >
            취소
          </Button>
          <Button 
            variant="destructive" 
            onClick={handleConfirm} 
            disabled={isPending}
          >
            {isPending ? "처리 중..." : "실사 의뢰 취소"}
          </Button>
        </DialogFooter>
      </DialogContent>
    </Dialog>
  )
}