Skip to content

Commit dd1a86c

Browse files
authored
Merge pull request #12 from opencapco/jeremy/feat/waitlist-dialog-cleanup
Jeremy/feat/waitlist dialog cleanup
2 parents d054f19 + 0a5cac6 commit dd1a86c

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

src/app/page.tsx

+17-2
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,20 @@ import founder1 from "@/assets/founder.png";
2121
import { useState } from "react";
2222
import { useToast } from "@/components/ui/use-toast";
2323
import { useForm } from "react-hook-form";
24+
import { Loader2 } from "lucide-react";
2425

2526
export default function HomePage() {
2627
const [email, setEmail] = useState("");
2728
const [modalOpen, setModalOpen] = useState(false);
29+
const [loading, setLoading] = useState(false);
2830
const { toast } = useToast();
2931
const { handleSubmit } = useForm();
3032

3133
const joinWaitlist = async () => {
34+
setLoading(true);
3235
const response = await fetch(`/api/waitlist?email=${email}`);
3336

3437
if (response.ok) {
35-
setModalOpen(false);
3638
toast({
3739
title: "Signup successful",
3840
description:
@@ -44,6 +46,10 @@ export default function HomePage() {
4446
description: "Failed to join the waitlist. Please try again later.",
4547
});
4648
}
49+
50+
setLoading(false);
51+
setModalOpen(false);
52+
setEmail("");
4753
};
4854

4955
return (
@@ -91,7 +97,16 @@ export default function HomePage() {
9197
</div>
9298
</div>
9399
<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>
95110
</DialogFooter>
96111
</form>
97112
</DialogContent>

0 commit comments

Comments
 (0)