summaryrefslogtreecommitdiff
path: root/lib/pq/pq-review-table-new/cancel-investigation-dialog.tsx
blob: e135d8b8c0089f8a860216b8fc1a9435f9c98774 (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
"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>
  )
}

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

export function ReRequestInvestigationDialog({
  isOpen,
  onClose,
  onConfirm,
  selectedCount,
}: ReRequestInvestigationDialogProps) {
  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="default"
            onClick={handleConfirm}
            disabled={isPending}
          >
            {isPending ? "처리 중..." : "실사 재의뢰"}
          </Button>
        </DialogFooter>
      </DialogContent>
    </Dialog>
  )
}