mirror of
https://github.com/hex248/sprint.git
synced 2026-02-07 18:23:03 +00:00
complete register functionality
This commit is contained in:
@@ -27,12 +27,12 @@ export default async function register(req: BunRequest) {
|
||||
return new Response("name, username, and password are required", { status: 400 });
|
||||
}
|
||||
|
||||
if (username.length < 3 || username.length > 32) {
|
||||
return new Response("username must be 3-32 characters", { status: 400 });
|
||||
if (username.length < 1 || username.length > 32) {
|
||||
return new Response("username must be 1-32 characters", { status: 400 });
|
||||
}
|
||||
|
||||
if (password.length < 8) {
|
||||
return new Response("password must be at least 8 characters", { status: 400 });
|
||||
if (password.length < 1) {
|
||||
return new Response("password must be at least 1 character", { status: 400 });
|
||||
}
|
||||
|
||||
const existing = await getUserByUsername(username);
|
||||
@@ -49,7 +49,7 @@ export default async function register(req: BunRequest) {
|
||||
const token = generateToken(user.id);
|
||||
|
||||
return Response.json({
|
||||
user: { id: user.id, name: user.name, username: user.username },
|
||||
token,
|
||||
user,
|
||||
});
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ import { type ChangeEvent, useState } from "react";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Label } from "@/components/ui/label";
|
||||
import { cn, getAuthHeaders } from "@/lib/utils";
|
||||
import { capitalise, cn, getAuthHeaders } from "@/lib/utils";
|
||||
|
||||
function Field({
|
||||
label = "label",
|
||||
@@ -40,6 +40,10 @@ function Field({
|
||||
export default function LogInForm() {
|
||||
const serverURL = import.meta.env.SERVER_URL?.trim() || "http://localhost:3000";
|
||||
|
||||
const [mode, setMode] = useState<"login" | "register">("login");
|
||||
|
||||
const [name, setName] = useState("");
|
||||
const [nameInvalid, setNameInvalid] = useState("");
|
||||
const [username, setUsername] = useState("");
|
||||
const [usernameInvalid, setUsernameInvalid] = useState("");
|
||||
const [password, setPassword] = useState("");
|
||||
@@ -84,14 +88,75 @@ export default function LogInForm() {
|
||||
});
|
||||
};
|
||||
|
||||
const register = () => {
|
||||
if (name === "" || username === "" || password === "") {
|
||||
if (name === "") {
|
||||
setNameInvalid("Cannot be empty");
|
||||
}
|
||||
if (username === "") {
|
||||
setUsernameInvalid("Cannot be empty");
|
||||
}
|
||||
if (password === "") {
|
||||
setPasswordInvalid("Cannot be empty");
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
fetch(`${serverURL}/auth/register`, {
|
||||
method: "POST",
|
||||
headers: { "Content-type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
name,
|
||||
username,
|
||||
password,
|
||||
}),
|
||||
})
|
||||
.then(async (res) => {
|
||||
if (res.status === 200) {
|
||||
setError("");
|
||||
const data = await res.json();
|
||||
localStorage.setItem("token", data.token);
|
||||
localStorage.setItem("user", data.user);
|
||||
window.location.href = "";
|
||||
}
|
||||
// bad request (probably a bad user input)
|
||||
else if (res.status === 400) {
|
||||
setError(await res.text());
|
||||
} else {
|
||||
setError("An unknown error occured.");
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error(err);
|
||||
setError(`${err.statusText}`);
|
||||
});
|
||||
};
|
||||
|
||||
const resetForm = () => {
|
||||
setError("");
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div
|
||||
className={cn(
|
||||
"flex flex-col gap-2 items-center border p-8",
|
||||
"flex flex-col gap-2 items-center border p-6 pb-4",
|
||||
error !== "" && "border-destructive",
|
||||
)}
|
||||
>
|
||||
<span className="text-xl mb-2">{capitalise(mode)}</span>
|
||||
|
||||
{mode === "register" && (
|
||||
<Field
|
||||
label="Full Name"
|
||||
onChange={(e) => {
|
||||
if (e.target.value !== "") setNameInvalid("");
|
||||
else setNameInvalid("Cannot be empty");
|
||||
setName(e.target.value);
|
||||
}}
|
||||
invalidMessage={nameInvalid}
|
||||
/>
|
||||
)}
|
||||
<Field
|
||||
label="Username"
|
||||
onChange={(e) => {
|
||||
@@ -111,9 +176,40 @@ export default function LogInForm() {
|
||||
invalidMessage={passwordInvalid}
|
||||
hidden={true}
|
||||
/>
|
||||
<Button variant={"outline"} onClick={logIn} className={"mt-4"} type={"submit"}>
|
||||
Log in
|
||||
</Button>
|
||||
|
||||
{mode === "login" ? (
|
||||
<>
|
||||
<Button variant={"outline"} onClick={logIn} type={"submit"}>
|
||||
Log in
|
||||
</Button>
|
||||
<Button
|
||||
className="text-xs hover:underline p-0"
|
||||
variant={"dummy"}
|
||||
onClick={() => {
|
||||
setMode("register");
|
||||
resetForm();
|
||||
}}
|
||||
>
|
||||
I don't have an account
|
||||
</Button>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<Button variant={"outline"} onClick={register} type={"submit"}>
|
||||
Register
|
||||
</Button>
|
||||
<Button
|
||||
className="text-xs hover:underline p-0"
|
||||
variant={"dummy"}
|
||||
onClick={() => {
|
||||
setMode("login");
|
||||
resetForm();
|
||||
}}
|
||||
>
|
||||
I already have an account
|
||||
</Button>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
<div className="flex items-end justify-end w-full text-xs -mb-4">
|
||||
{error !== "" ? (
|
||||
|
||||
Reference in New Issue
Block a user