Merge pull request #28 from boringContributor/auth-form

refactor: improve the auth component
This commit is contained in:
Max Leiter 2022-03-13 17:40:10 -07:00 committed by GitHub
commit 10c8b02397
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 65 additions and 69 deletions

View file

@ -5,17 +5,18 @@
} }
.form { .form {
display: flex; display: grid;
flex-direction: column; place-items: center;
align-items: center;
justify-content: center;
width: 100%;
} }
.formGroup { .formGroup {
margin-bottom: 1rem; display: flex;
flex-direction: column;
place-items: center;
gap: 10px;
} }
.formHeader { .formContentSpace {
margin-bottom: 1rem; margin-bottom: 1rem;
} text-align: center;
}

View file

@ -1,23 +1,24 @@
import { FormEvent, useState } from 'react' import { FormEvent, useState } from 'react'
import { Button, Card, Input, Text } from '@geist-ui/core' import { Button, Input, Text, useToasts, Note } from '@geist-ui/core'
import styles from './auth.module.css' import styles from './auth.module.css'
import { useRouter } from 'next/router' import { useRouter } from 'next/router'
import Link from '../Link' import Link from '../Link'
const NO_EMPTY_SPACE_REGEX = /^\S*$/;
const ERROR_MESSAGE = "Provide a non empty username and a password with at least 6 characters";
const Auth = ({ page }: { page: "signup" | "signin" }) => { const Auth = ({ page }: { page: "signup" | "signin" }) => {
const router = useRouter(); const router = useRouter();
const [username, setUsername] = useState(''); const [username, setUsername] = useState('');
const [password, setPassword] = useState(''); const [password, setPassword] = useState('');
const [error, setError] = useState(''); const [errorMsg, setErrorMsg] = useState('');
const { setToast } = useToasts();
const signingIn = page === 'signin' const signingIn = page === 'signin'
const NO_EMPTY_SPACE_REGEX = /^\S*$/;
const handleJson = (json: any) => { const handleJson = (json: any) => {
if (json.error) return setError(json.error.message)
localStorage.setItem('drift-token', json.token) localStorage.setItem('drift-token', json.token)
localStorage.setItem('drift-userid', json.userId) localStorage.setItem('drift-userid', json.userId)
router.push('/') router.push('/')
@ -27,11 +28,8 @@ const Auth = ({ page }: { page: "signup" | "signin" }) => {
const handleSubmit = async (e: FormEvent<HTMLFormElement>) => { const handleSubmit = async (e: FormEvent<HTMLFormElement>) => {
e.preventDefault() e.preventDefault()
if (!username.match(NO_EMPTY_SPACE_REGEX)) if (!NO_EMPTY_SPACE_REGEX.test(username) || password.length < 6) return setErrorMsg(ERROR_MESSAGE)
return setError("Username can't be empty") else setErrorMsg('');
if (!password.match(NO_EMPTY_SPACE_REGEX))
return setError("Password can't be empty")
const reqOpts = { const reqOpts = {
method: 'POST', method: 'POST',
@ -50,58 +48,52 @@ const Auth = ({ page }: { page: "signup" | "signin" }) => {
handleJson(json) handleJson(json)
} catch (err: any) { } catch (err: any) {
setError(err.message || "Something went wrong") setToast({ text: "Something went wrong", type: 'error' })
} }
} }
return ( return (
<div className={styles.container}> <div className={styles.container}>
<div className={styles.form}> <div className={styles.form}>
<div className={styles.formHeader}> <div className={styles.formContentSpace}>
<h1>{signingIn ? 'Sign In' : 'Sign Up'}</h1> <h1>{signingIn ? 'Sign In' : 'Sign Up'}</h1>
</div> </div>
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<Card> <div className={styles.formGroup}>
<div className={styles.formGroup}> <Input
<Input htmlType="text"
htmlType="text" id="username"
id="username" value={username}
value={username} onChange={(event) => setUsername(event.target.value)}
onChange={(event) => setUsername(event.target.value)} placeholder="Username"
placeholder="Username" required
required scale={4 / 3}
label='Username' />
/> <Input
</div> htmlType='password'
<div className={styles.formGroup}> id="password"
<Input value={password}
htmlType='password' onChange={(event) => setPassword(event.target.value)}
id="password" placeholder="Password"
value={password} required
onChange={(event) => setPassword(event.target.value)} scale={4 / 3}
placeholder="Password" />
required <Button type="success" htmlType="submit">{signingIn ? 'Sign In' : 'Sign Up'}</Button>
label='Password' </div>
/> <div className={styles.formContentSpace}>
</div> {signingIn ? (
<div style={{ display: 'flex', justifyContent: 'center' }}> <Text>
<Button type="success" ghost htmlType="submit">{signingIn ? 'Sign In' : 'Sign Up'}</Button> Don&apos;t have an account?{" "}
</div> <Link color href="/signup">Sign up</Link>
<div className={styles.formGroup}> </Text>
{signingIn ? ( ) : (
<Text> <Text>
Don&apos;t have an account?{" "} Already have an account?{" "}
<Link color href="/signup">Sign up</Link> <Link color href="/signin">Sign in</Link>
</Text> </Text>
) : ( )}
<Text> </div>
Already have an account?{" "} {errorMsg && <Note scale={0.75} type='error'>{errorMsg}</Note>}
<Link color href="/signin">Sign in</Link>
</Text>
)}
</div>
{error && <Text type='error'>{error}</Text>}
</Card>
</form> </form>
</div> </div>
</div > </div >

View file

@ -1,18 +1,23 @@
import { Router } from 'express' import { Router } from 'express'
// import { Movie } from '../models/Post'
import { genSalt, hash, compare } from "bcrypt" import { genSalt, hash, compare } from "bcrypt"
import { User } from '../../lib/models/User' import { User } from '../../lib/models/User'
import { sign } from 'jsonwebtoken' import { sign } from 'jsonwebtoken'
import config from '../../lib/config' import config from '../../lib/config'
import jwt from '../../lib/middleware/jwt' import jwt from '../../lib/middleware/jwt'
const NO_EMPTY_SPACE_REGEX = /^\S*$/
export const auth = Router() export const auth = Router()
const validateAuthPayload = (username: string, password: string): void => {
if (!NO_EMPTY_SPACE_REGEX.test(username) || password.length < 6) {
throw new Error("Authentication data does not fulfill requirements")
}
}
auth.post('/signup', async (req, res, next) => { auth.post('/signup', async (req, res, next) => {
try { try {
if (!req.body.username || !req.body.password) { validateAuthPayload(req.body.username, req.body.password)
throw new Error("Please provide a username and password")
}
const username = req.body.username.toLowerCase(); const username = req.body.username.toLowerCase();
@ -39,9 +44,7 @@ auth.post('/signup', async (req, res, next) => {
auth.post('/signin', async (req, res, next) => { auth.post('/signin', async (req, res, next) => {
try { try {
if (!req.body.username || !req.body.password) { validateAuthPayload(req.body.username, req.body.password)
throw new Error("Missing username or password")
}
const username = req.body.username.toLowerCase(); const username = req.body.username.toLowerCase();
const user = await User.findOne({ where: { username: username } }); const user = await User.findOne({ where: { username: username } });