"use client"; import { ShowInfo } from "@/components/misc/InfoClaim"; import { zodResolver } from "@hookform/resolvers/zod"; import { useForm } from "react-hook-form"; import { z } from "zod"; import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { TextCopyComp } from "@/components/misc/TextCopyComp"; import { Button } from "@/components/ui/button"; import { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, } from "@/components/ui/input-otp"; import { linkMCAccount } from "@/lib/api"; import toast from "react-hot-toast"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { SetStateAction, useEffect, useState } from "react"; import Confetti from "@/components/effects/confetti"; import { useUser } from "@clerk/nextjs"; const FormSchema = z.object({ code: z.string().min(6, { message: "Your one-time password must be 6 characters.", }), }); export default function CodeDialog({ linked, setLinked, }: { linked: boolean; setLinked: (value: SetStateAction) => void; }) { const [name, setName] = useState(""); const [dialog, setDialog] = useState(false); const form = useForm>({ resolver: zodResolver(FormSchema), defaultValues: { code: "", }, }); async function onSubmit(data: z.infer) { const { code } = data; const playerName = await toast.promise( new Promise(async (g, b) => { const response = await linkMCAccount(code); if (response == undefined) { b(); return; } g(response); }), { loading: "Linking account..", error: "Incorrect code", success: "Linked account!", } ); setName(playerName as string); setDialog(true); setLinked(true); } return (
Link your account

( Code Please enter the code shown in your chat. )} /> {!linked && } {linked && ( )} You have linked your account! You've successfully linked your account, {name}! Enjoy adding banners, custom accent colors, and other things to your server page.
); }