File tree 1 file changed +17
-2
lines changed
1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,20 @@ import founder1 from "@/assets/founder.png";
21
21
import { useState } from "react" ;
22
22
import { useToast } from "@/components/ui/use-toast" ;
23
23
import { useForm } from "react-hook-form" ;
24
+ import { Loader2 } from "lucide-react" ;
24
25
25
26
export default function HomePage ( ) {
26
27
const [ email , setEmail ] = useState ( "" ) ;
27
28
const [ modalOpen , setModalOpen ] = useState ( false ) ;
29
+ const [ loading , setLoading ] = useState ( false ) ;
28
30
const { toast } = useToast ( ) ;
29
31
const { handleSubmit } = useForm ( ) ;
30
32
31
33
const joinWaitlist = async ( ) => {
34
+ setLoading ( true ) ;
32
35
const response = await fetch ( `/api/waitlist?email=${ email } ` ) ;
33
36
34
37
if ( response . ok ) {
35
- setModalOpen ( false ) ;
36
38
toast ( {
37
39
title : "Signup successful" ,
38
40
description :
@@ -44,6 +46,10 @@ export default function HomePage() {
44
46
description : "Failed to join the waitlist. Please try again later." ,
45
47
} ) ;
46
48
}
49
+
50
+ setLoading ( false ) ;
51
+ setModalOpen ( false ) ;
52
+ setEmail ( "" ) ;
47
53
} ;
48
54
49
55
return (
@@ -91,7 +97,16 @@ export default function HomePage() {
91
97
</ div >
92
98
</ div >
93
99
< DialogFooter >
94
- < Button type = "submit" > Join the waitlist</ Button >
100
+ < Button type = "submit" >
101
+ { loading ? (
102
+ < >
103
+ < Loader2 className = "h-4 w-4 animate-spin" />
104
+ < span className = "ml-2" > Joining...</ span >
105
+ </ >
106
+ ) : (
107
+ "Join the waitlist"
108
+ ) }
109
+ </ Button >
95
110
</ DialogFooter >
96
111
</ form >
97
112
</ DialogContent >
You can’t perform that action at this time.
0 commit comments