CoastalCommitsPastes/client/components/auth/index.tsx

143 lines
3.5 KiB
TypeScript
Raw Normal View History

2022-11-09 21:38:05 -05:00
"use client"
2022-04-09 20:48:19 -04:00
import { FormEvent, useEffect, useState } from "react"
import styles from "./auth.module.css"
2022-11-09 21:38:05 -05:00
import { useRouter } from "next/navigation"
import Link from "../link"
2022-04-09 20:48:19 -04:00
import Cookies from "js-cookie"
import useSignedIn from "@lib/hooks/use-signed-in"
import Input from "@components/input"
import Button from "@components/button"
import Note from "@components/note"
2022-11-09 22:02:06 -05:00
import { USER_COOKIE_NAME } from "@lib/constants"
import { setCookie } from "cookies-next"
2022-03-06 19:46:59 -05:00
2022-04-09 20:48:19 -04:00
const NO_EMPTY_SPACE_REGEX = /^\S*$/
const ERROR_MESSAGE =
"Provide a non empty username and a password with at least 6 characters"
2022-11-09 21:38:05 -05:00
const Auth = ({
page,
requiresServerPassword
}: {
page: "signup" | "signin"
requiresServerPassword?: boolean
}) => {
2022-04-09 20:48:19 -04:00
const router = useRouter()
2022-03-12 23:13:35 -05:00
2022-04-09 20:48:19 -04:00
const [username, setUsername] = useState("")
const [password, setPassword] = useState("")
const [serverPassword, setServerPassword] = useState("")
const [errorMsg, setErrorMsg] = useState("")
const signingIn = page === "signin"
const { signin } = useSignedIn()
2022-04-09 20:48:19 -04:00
const handleJson = (json: any) => {
signin(json.token)
setCookie(USER_COOKIE_NAME, json.userId)
2022-04-09 20:48:19 -04:00
router.push("/new")
}
2022-03-15 15:15:54 -04:00
2022-04-09 20:48:19 -04:00
const handleSubmit = async (e: FormEvent<HTMLFormElement>) => {
e.preventDefault()
if (
!signingIn &&
(!NO_EMPTY_SPACE_REGEX.test(username) || password.length < 6)
)
return setErrorMsg(ERROR_MESSAGE)
if (
!signingIn &&
requiresServerPassword &&
!NO_EMPTY_SPACE_REGEX.test(serverPassword)
)
return setErrorMsg(ERROR_MESSAGE)
else setErrorMsg("")
2022-03-12 23:13:35 -05:00
2022-04-09 20:48:19 -04:00
const reqOpts = {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ username, password, serverPassword })
}
2022-04-09 20:48:19 -04:00
try {
2022-11-09 21:38:05 -05:00
const signUrl = signingIn ? "/api/auth/signin" : "/api/auth/signup"
2022-04-09 20:48:19 -04:00
const resp = await fetch(signUrl, reqOpts)
const json = await resp.json()
if (!resp.ok) throw new Error(json.error.message)
2022-03-06 19:46:59 -05:00
2022-04-09 20:48:19 -04:00
handleJson(json)
} catch (err: any) {
setErrorMsg(err.message ?? "Something went wrong")
}
}
2022-03-12 23:13:35 -05:00
2022-04-09 20:48:19 -04:00
return (
<div className={styles.container}>
<div className={styles.form}>
<div className={styles.formContentSpace}>
<h1>{signingIn ? "Sign In" : "Sign Up"}</h1>
</div>
<form onSubmit={handleSubmit}>
<div className={styles.formGroup}>
<Input
type="text"
2022-04-09 20:48:19 -04:00
id="username"
value={username}
onChange={(event) => setUsername(event.currentTarget.value)}
2022-04-09 20:48:19 -04:00
placeholder="Username"
required
/>
<Input
type="password"
2022-04-09 20:48:19 -04:00
id="password"
value={password}
onChange={(event) => setPassword(event.currentTarget.value)}
2022-04-09 20:48:19 -04:00
placeholder="Password"
required
/>
{requiresServerPassword && (
<Input
type="password"
2022-04-09 20:48:19 -04:00
id="server-password"
value={serverPassword}
onChange={(event) =>
setServerPassword(event.currentTarget.value)
}
2022-04-09 20:48:19 -04:00
placeholder="Server Password"
required
/>
)}
2022-03-06 19:46:59 -05:00
<Button buttonType="primary" type="submit">
2022-04-09 20:48:19 -04:00
{signingIn ? "Sign In" : "Sign Up"}
</Button>
</div>
<div className={styles.formContentSpace}>
{signingIn ? (
<p>
2022-04-09 20:48:19 -04:00
Don&apos;t have an account?{" "}
<Link colored href="/signup">
2022-04-09 20:48:19 -04:00
Sign up
</Link>
</p>
2022-04-09 20:48:19 -04:00
) : (
<p>
2022-04-09 20:48:19 -04:00
Already have an account?{" "}
<Link colored href="/signin">
2022-04-09 20:48:19 -04:00
Sign in
</Link>
</p>
2022-04-09 20:48:19 -04:00
)}
</div>
2022-11-09 21:38:05 -05:00
{errorMsg && <Note type="error">{errorMsg}</Note>}
2022-04-09 20:48:19 -04:00
</form>
</div>
</div>
)
2022-03-06 19:46:59 -05:00
}
2022-04-09 20:48:19 -04:00
export default Auth