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
|
// components/auth/simple-reauth-modal.tsx
"use client"
import * as React from "react"
import { zodResolver } from "@hookform/resolvers/zod"
import { useForm } from "react-hook-form"
import { z } from "zod"
import { verifyExternalCredentials } from "@/lib/users/auth/verifyCredentails"
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog"
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form"
import { Input } from "@/components/ui/input"
import { Button } from "@/components/ui/button"
import { toast } from "@/hooks/use-toast"
import { Shield, AlertCircle } from "lucide-react"
const reAuthSchema = z.object({
password: z.string().min(1, "Password is required"),
})
type ReAuthFormValues = z.infer<typeof reAuthSchema>
interface SimpleReAuthModalProps {
isOpen: boolean
onSuccess: () => void
onClose?: () => void
userEmail: string
}
export function SimpleReAuthModal({
isOpen,
onSuccess,
onClose,
userEmail
}: SimpleReAuthModalProps) {
const [isLoading, setIsLoading] = React.useState(false)
const [attemptCount, setAttemptCount] = React.useState(0)
const form = useForm<ReAuthFormValues>({
resolver: zodResolver(reAuthSchema),
defaultValues: {
password: "",
},
})
async function onSubmit(data: ReAuthFormValues) {
setIsLoading(true)
try {
// 직접 인증 함수 호출 (API 호출 없이)
const authResult = await verifyExternalCredentials(
userEmail,
data.password
)
if (!authResult.success || !authResult.user) {
setAttemptCount(prev => prev + 1)
if (attemptCount >= 2) {
toast({
title: "Too many failed attempts",
description: "Please wait a moment before trying again.",
variant: "destructive",
})
setTimeout(() => setAttemptCount(0), 30000)
return
}
toast({
title: "Authentication failed",
description: `Invalid password. ${2 - attemptCount} attempts remaining.`,
variant: "destructive",
})
form.setError("password", {
type: "manual",
message: "Invalid password"
})
} else {
// 인증 성공
setAttemptCount(0)
onSuccess()
form.reset()
toast({
title: "Authentication successful",
description: "You can now access account settings.",
})
}
} catch (error) {
console.error("Re-authentication error:", error)
toast({
title: "Error",
description: "An unexpected error occurred. Please try again.",
variant: "destructive",
})
} finally {
setIsLoading(false)
}
}
React.useEffect(() => {
if (!isOpen) {
form.reset()
setAttemptCount(0)
if (onClose) {
// 모달이 닫힐 때 정리 작업
}
}
}, [isOpen, form, onClose])
return (
<Dialog open={isOpen} onOpenChange={(open) => {
if (!open && onClose) {
onClose()
}
}}>
<DialogContent className="sm:max-w-[400px]">
<DialogHeader>
<DialogTitle className="flex items-center gap-2">
<Shield className="h-5 w-5 text-amber-600" />
Verify Your Password
</DialogTitle>
<DialogDescription>
Please enter your password to access account settings.
</DialogDescription>
</DialogHeader>
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
<div className="rounded-lg bg-blue-50 border border-blue-200 p-3">
<p className="text-sm text-blue-800">
<strong>Email:</strong> {userEmail}
</p>
</div>
{attemptCount >= 2 && (
<div className="rounded-lg bg-red-50 border border-red-200 p-3">
<div className="flex items-center gap-2">
<AlertCircle className="h-4 w-4 text-red-500" />
<p className="text-sm text-red-800">
Too many failed attempts. Please wait 30 seconds.
</p>
</div>
</div>
)}
<FormField
control={form.control}
name="password"
render={({ field }) => (
<FormItem>
<FormLabel>Password</FormLabel>
<FormControl>
<Input
type="password"
placeholder="Enter your password"
disabled={attemptCount >= 3 || isLoading}
{...field}
autoFocus
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<Button
type="submit"
className="w-full"
disabled={isLoading || attemptCount >= 3}
>
{isLoading ? (
<>
<div className="animate-spin rounded-full h-4 w-4 border-b-2 border-white mr-2"></div>
Verifying...
</>
) : attemptCount >= 3 ? (
"Please wait..."
) : (
"Verify"
)}
</Button>
</form>
</Form>
</DialogContent>
</Dialog>
)
}
|