2021-10-24 06:09:43 +02:00
|
|
|
import { useRouter } from 'next/router'
|
|
|
|
import Link from 'next/link'
|
|
|
|
import useTranslation from 'next-translate/useTranslation'
|
|
|
|
import { useTheme } from 'next-themes'
|
|
|
|
import axios from 'axios'
|
|
|
|
|
|
|
|
import { Main } from '../design/Main'
|
|
|
|
import { Input } from '../design/Input'
|
|
|
|
import { Button } from '../design/Button'
|
|
|
|
import { FormState } from '../design/FormState'
|
2022-02-19 23:20:33 +01:00
|
|
|
import { AuthenticationForm } from '.'
|
2021-10-24 06:09:43 +02:00
|
|
|
import { userSchema } from '../../models/User'
|
2022-01-07 21:21:38 +01:00
|
|
|
import { api } from '../../tools/api'
|
2021-10-24 06:09:43 +02:00
|
|
|
import {
|
|
|
|
Tokens,
|
|
|
|
Authentication as AuthenticationClass
|
2022-01-01 20:42:25 +01:00
|
|
|
} from '../../tools/authentication'
|
2021-10-26 16:38:55 +02:00
|
|
|
import { useForm, HandleSubmitCallback } from '../../hooks/useForm'
|
2022-03-16 12:18:09 +01:00
|
|
|
import { AuthenticationSocialMedia } from './AuthenticationSocialMedia'
|
2021-10-24 06:09:43 +02:00
|
|
|
|
|
|
|
export interface AuthenticationProps {
|
|
|
|
mode: 'signup' | 'signin'
|
|
|
|
}
|
|
|
|
|
|
|
|
export const Authentication: React.FC<AuthenticationProps> = (props) => {
|
|
|
|
const { mode } = props
|
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
const { lang, t } = useTranslation()
|
|
|
|
const { theme } = useTheme()
|
|
|
|
|
2021-11-13 21:50:34 +01:00
|
|
|
const { errors, fetchState, message, getErrorTranslation, handleSubmit } =
|
2021-10-26 16:38:55 +02:00
|
|
|
useForm({
|
2022-02-19 23:20:33 +01:00
|
|
|
validateSchema: {
|
2021-10-26 16:38:55 +02:00
|
|
|
...(mode === 'signup' && { name: userSchema.name }),
|
|
|
|
email: userSchema.email,
|
|
|
|
password: userSchema.password
|
2022-02-19 23:20:33 +01:00
|
|
|
},
|
|
|
|
resetOnSuccess: true
|
2021-10-24 06:09:43 +02:00
|
|
|
})
|
|
|
|
|
2021-10-26 16:38:55 +02:00
|
|
|
const onSubmit: HandleSubmitCallback = async (formData) => {
|
|
|
|
if (mode === 'signup') {
|
|
|
|
try {
|
|
|
|
await api.post(
|
|
|
|
`/users/signup?redirectURI=${window.location.origin}/authentication/signin`,
|
|
|
|
{ ...formData, language: lang, theme }
|
|
|
|
)
|
|
|
|
return {
|
|
|
|
type: 'success',
|
|
|
|
value: 'authentication:success-signup'
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
if (axios.isAxiosError(error) && error.response?.status === 400) {
|
2022-02-19 23:20:33 +01:00
|
|
|
const message = error.response.data.message as string
|
|
|
|
if (message.endsWith('already taken.')) {
|
|
|
|
return {
|
|
|
|
type: 'error',
|
|
|
|
value: 'authentication:already-used'
|
|
|
|
}
|
|
|
|
}
|
2021-10-26 16:38:55 +02:00
|
|
|
return {
|
|
|
|
type: 'error',
|
2022-02-19 23:20:33 +01:00
|
|
|
value: 'errors:server-error'
|
2021-10-24 06:09:43 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-26 16:38:55 +02:00
|
|
|
return {
|
|
|
|
type: 'error',
|
|
|
|
value: 'errors:server-error'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
const { data } = await api.post<Tokens>('/users/signin', formData)
|
2022-08-24 17:22:55 +02:00
|
|
|
const authentication = new AuthenticationClass(data, true)
|
2021-10-26 16:38:55 +02:00
|
|
|
authentication.signin()
|
|
|
|
await router.push('/application')
|
|
|
|
return null
|
|
|
|
} catch (error) {
|
|
|
|
if (axios.isAxiosError(error) && error.response?.status === 400) {
|
|
|
|
return {
|
|
|
|
type: 'error',
|
|
|
|
value: 'authentication:wrong-credentials'
|
2021-10-24 06:09:43 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-26 16:38:55 +02:00
|
|
|
return {
|
|
|
|
type: 'error',
|
|
|
|
value: 'errors:server-error'
|
|
|
|
}
|
2021-10-24 06:09:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Main>
|
2022-03-16 12:18:09 +01:00
|
|
|
<AuthenticationSocialMedia />
|
2022-02-19 23:20:33 +01:00
|
|
|
<div className='pt-8 text-center font-paragraph text-lg'>
|
2021-10-24 06:09:43 +02:00
|
|
|
{t('authentication:or')}
|
2022-01-07 21:21:38 +01:00
|
|
|
</div>
|
2021-10-26 16:38:55 +02:00
|
|
|
<AuthenticationForm onSubmit={handleSubmit(onSubmit)}>
|
2021-10-24 06:09:43 +02:00
|
|
|
{mode === 'signup' && (
|
|
|
|
<Input
|
|
|
|
type='text'
|
2021-10-26 16:38:55 +02:00
|
|
|
placeholder={t('common:name')}
|
2021-10-24 06:09:43 +02:00
|
|
|
name='name'
|
2021-10-26 16:38:55 +02:00
|
|
|
label={t('common:name')}
|
2021-10-24 06:09:43 +02:00
|
|
|
error={getErrorTranslation(errors.name)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<Input
|
|
|
|
type='email'
|
|
|
|
placeholder='Email'
|
|
|
|
name='email'
|
|
|
|
label='Email'
|
|
|
|
error={getErrorTranslation(errors.email)}
|
|
|
|
/>
|
|
|
|
<Input
|
|
|
|
type='password'
|
|
|
|
placeholder={t('authentication:password')}
|
|
|
|
name='password'
|
|
|
|
label={t('authentication:password')}
|
|
|
|
showForgotPassword={mode === 'signin'}
|
|
|
|
error={getErrorTranslation(errors.password)}
|
|
|
|
/>
|
2022-02-19 23:20:33 +01:00
|
|
|
<Button data-cy='submit' className='mt-6 w-full' type='submit'>
|
2021-10-24 06:09:43 +02:00
|
|
|
{t('authentication:submit')}
|
|
|
|
</Button>
|
2022-02-19 23:20:33 +01:00
|
|
|
<p className='mt-3 font-headline text-sm text-green-800 hover:underline dark:text-green-400'>
|
2021-10-24 06:09:43 +02:00
|
|
|
<Link
|
|
|
|
href={
|
|
|
|
mode === 'signup'
|
|
|
|
? '/authentication/signin'
|
|
|
|
: '/authentication/signup'
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<a>
|
|
|
|
{mode === 'signup'
|
|
|
|
? t('authentication:already-have-an-account')
|
|
|
|
: t('authentication:dont-have-an-account')}
|
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
</p>
|
|
|
|
</AuthenticationForm>
|
2021-11-13 21:50:34 +01:00
|
|
|
<FormState id='message' state={fetchState} message={message} />
|
2021-10-24 06:09:43 +02:00
|
|
|
</Main>
|
|
|
|
)
|
|
|
|
}
|