-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
237 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,51 @@ | ||
import { Dispatch, SetStateAction, useState } from "react" | ||
import { toast } from "sonner" | ||
import { useState } from "react"; | ||
import { toast } from "sonner"; | ||
|
||
import { config } from "~/config" | ||
import { Form, FormControl, FormSection } from "~/components/ui/Form" | ||
import { Input } from "~/components/ui/Input" | ||
import { EmailFieldSchema, EmailField } from "../types" | ||
import { Button } from "~/components/ui/Button" | ||
import { Spinner } from "~/components/ui/Spinner" | ||
import { config } from "~/config"; | ||
import { Form, FormControl, FormSection } from "~/components/ui/Form"; | ||
import { Input } from "~/components/ui/Input"; | ||
import { EmailFieldSchema, EmailField } from "../types"; | ||
import { Button } from "~/components/ui/Button"; | ||
import { Spinner } from "~/components/ui/Spinner"; | ||
|
||
interface IRegisterEmailProps { | ||
emailField: | ||
| { | ||
email: string | ||
} | ||
| undefined | ||
setEmail: Dispatch< | ||
SetStateAction< | ||
| { | ||
email: string | ||
} | ||
| undefined | ||
> | ||
> | ||
otpVerified: boolean; | ||
setEmail: (emailField: EmailField) => void; | ||
} | ||
|
||
const RegisterEmail = ({ | ||
emailField, | ||
otpVerified, | ||
setEmail, | ||
}: IRegisterEmailProps): JSX.Element => { | ||
const [registering, setRegistering] = useState(false) | ||
const [registering, setRegistering] = useState(false); | ||
|
||
const registerEmail = async (emailField: EmailField) => { | ||
try { | ||
setRegistering(true) | ||
setRegistering(true); | ||
const response = await fetch(`${config.backendUrl}/send-otp`, { | ||
method: "POST", | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
body: JSON.stringify(emailField), | ||
}) | ||
const json = await response.json() | ||
}); | ||
const json = await response.json(); | ||
|
||
if (!response.ok) { | ||
console.log(response.status) | ||
console.error(json) | ||
toast.error((json.errors && json.errors[0]) ?? json.message) | ||
console.log(response.status); | ||
console.error(json); | ||
toast.error((json.errors && json.errors[0]) ?? json.message); | ||
} else { | ||
setEmail(emailField) | ||
toast.success(`OTP has been sent to ${emailField.email}`) | ||
setEmail(emailField); | ||
toast.success(`OTP has been sent to ${emailField.email}`); | ||
} | ||
} catch (error: any) { | ||
console.error(error) | ||
toast.error("An unexpected error occured registering your email") | ||
console.error(error); | ||
toast.error("An unexpected error occured registering your email"); | ||
} finally { | ||
setRegistering(false) | ||
setRegistering(false); | ||
} | ||
} | ||
}; | ||
|
||
return ( | ||
<div className="w-72 sm:w-96"> | ||
|
@@ -74,20 +63,20 @@ const RegisterEmail = ({ | |
label="Email address" | ||
name="email" | ||
> | ||
<Input placeholder="[email protected] | aa@ethereum.org" /> | ||
<Input placeholder="[email protected] | alice@ethereum.org" /> | ||
</FormControl> | ||
<Button | ||
suppressHydrationWarning | ||
size="auto" | ||
type="submit" | ||
variant={emailField ? "disabled" : "secondary"} | ||
variant={otpVerified ? "disabled" : "secondary"} | ||
> | ||
{registering ? <Spinner className="h-6 w-6" /> : "Submit"} | ||
</Button> | ||
</FormSection> | ||
</Form> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default RegisterEmail | ||
export default RegisterEmail; |
Oops, something went wrong.