Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better signup error handling #38

Merged
merged 3 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 29 additions & 40 deletions packages/interface/src/features/signup/components/RegisterEmail.tsx
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">
Expand All @@ -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;
Loading