hedgedoc/src/components/register-page/register-page.tsx
mrdrogdrog 0fadc09f2b
Restructure repository (#426)
organized repository 

Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
Co-authored-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
Co-authored-by: Philip Molares <git@molar.es>
2020-08-16 16:02:26 +02:00

141 lines
5.6 KiB
TypeScript

import React, { FormEvent, useCallback, useEffect, useState } from 'react'
import { useSelector } from 'react-redux'
import { Redirect } from 'react-router'
import { doInternalRegister } from '../../api/auth'
import { ApplicationState } from '../../redux'
import { Row, Col, Card, Form, Button, Alert } from 'react-bootstrap'
import { Trans, useTranslation } from 'react-i18next'
import { TranslatedExternalLink } from '../common/links/translated-external-link'
import { ShowIf } from '../common/show-if/show-if'
import { getAndSetUser } from '../login-page/auth/utils'
export enum RegisterError {
NONE = 'none',
USERNAME_EXISTING = 'usernameExisting',
OTHER = 'other'
}
export const RegisterPage: React.FC = () => {
const { t } = useTranslation()
const config = useSelector((state: ApplicationState) => state.config)
const user = useSelector((state: ApplicationState) => state.user)
const [username, setUsername] = useState('')
const [password, setPassword] = useState('')
const [passwordAgain, setPasswordAgain] = useState('')
const [error, setError] = useState(RegisterError.NONE)
const [ready, setReady] = useState(false)
const doRegisterSubmit = useCallback((event: FormEvent) => {
doInternalRegister(username, password)
.then(() => getAndSetUser())
.catch((err: Error) => {
console.error(err)
setError(err.message === RegisterError.USERNAME_EXISTING ? err.message : RegisterError.OTHER)
})
event.preventDefault()
}, [username, password])
useEffect(() => {
setReady(username !== '' && password !== '' && password.length >= 8 && password === passwordAgain)
}, [username, password, passwordAgain])
if (!config.allowRegister) {
return (
<Redirect to={'/login'}/>
)
}
if (user) {
return (
<Redirect to={'/intro'}/>
)
}
return (
<div className='my-3'>
<h1 className='mb-4'><Trans i18nKey='login.register.title'/></h1>
<Row className='h-100 d-flex justify-content-center'>
<Col lg={6}>
<Card className='bg-dark mb-4 text-start'>
<Card.Body>
<Form onSubmit={doRegisterSubmit}>
<Form.Group controlId='username'>
<Form.Label><Trans i18nKey='login.auth.username'/></Form.Label>
<Form.Control
type='text'
size='sm'
value={username}
isValid={username !== ''}
onChange={(event) => setUsername(event.target.value)}
placeholder={t('login.auth.username')}
className='bg-dark text-white'
autoComplete='username'
autoFocus={true}
required
/>
<Form.Text><Trans i18nKey='login.register.usernameInfo'/></Form.Text>
</Form.Group>
<Form.Group controlId='password'>
<Form.Label><Trans i18nKey='login.auth.password'/></Form.Label>
<Form.Control
type='password'
size='sm'
isValid={password !== '' && password.length >= 8}
onChange={(event) => setPassword(event.target.value)}
placeholder={t('login.auth.password')}
className='bg-dark text-white'
minLength={8}
autoComplete='new-password'
required
/>
<Form.Text><Trans i18nKey='login.register.passwordInfo'/></Form.Text>
</Form.Group>
<Form.Group controlId='re-password'>
<Form.Label><Trans i18nKey='login.register.passwordAgain'/></Form.Label>
<Form.Control
type='password'
size='sm'
isInvalid={passwordAgain !== '' && password !== passwordAgain}
isValid={passwordAgain !== '' && password === passwordAgain}
onChange={(event) => setPasswordAgain(event.target.value)}
placeholder={t('login.register.passwordAgain')}
className='bg-dark text-white'
autoComplete='new-password'
required
/>
</Form.Group>
<ShowIf condition={!!config.specialLinks?.termsOfUse || !!config.specialLinks?.privacy}>
<Trans i18nKey='login.register.infoTermsPrivacy'/>
<ul>
<ShowIf condition={!!config.specialLinks?.termsOfUse}>
<li>
<TranslatedExternalLink i18nKey='landing.footer.termsOfUse' href={config.specialLinks.termsOfUse}/>
</li>
</ShowIf>
<ShowIf condition={!!config.specialLinks?.privacy}>
<li>
<TranslatedExternalLink i18nKey='landing.footer.privacy' href={config.specialLinks.privacy}/>
</li>
</ShowIf>
</ul>
</ShowIf>
<Button
variant='primary'
type='submit'
block={true}
disabled={!ready}>
<Trans i18nKey='login.register.title'/>
</Button>
</Form>
<br/>
<Alert show={error !== RegisterError.NONE} variant='danger'>
<Trans i18nKey={`login.register.error.${error}`}/>
</Alert>
</Card.Body>
</Card>
</Col>
</Row>
</div>
)
}