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>
This commit is contained in:
mrdrogdrog 2020-08-16 16:02:26 +02:00 committed by GitHub
parent 66258ca615
commit 0fadc09f2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
254 changed files with 384 additions and 403 deletions

View file

@ -0,0 +1,70 @@
import React, { FormEvent, useCallback, useState } from 'react'
import { Alert, Button, Card, Form } from 'react-bootstrap'
import { Trans, useTranslation } from 'react-i18next'
import { useSelector } from 'react-redux'
import { doLdapLogin } from '../../../api/auth'
import { ApplicationState } from '../../../redux'
import { getAndSetUser } from './utils'
export const ViaLdap: React.FC = () => {
const { t } = useTranslation()
const ldapCustomName = useSelector((state: ApplicationState) => state.config.customAuthNames.ldap)
const [username, setUsername] = useState('')
const [password, setPassword] = useState('')
const [error, setError] = useState(false)
const name = ldapCustomName ? `${ldapCustomName} (LDAP)` : 'LDAP'
const onLoginSubmit = useCallback((event: FormEvent) => {
doLdapLogin(username, password)
.then(() => getAndSetUser())
.catch(() => setError(true))
event.preventDefault()
}, [username, password])
return (
<Card className="bg-dark mb-4">
<Card.Body>
<Card.Title>
<Trans i18nKey="login.signInVia" values={{ service: name }}/>
</Card.Title>
<Form onSubmit={onLoginSubmit}>
<Form.Group controlId="ldap-username">
<Form.Control
isInvalid={error}
type="text"
size="sm"
placeholder={t('login.auth.username')}
onChange={(event) => setUsername(event.currentTarget.value)} className="bg-dark text-white"
autoComplete='username'
/>
</Form.Group>
<Form.Group controlId="ldap-password">
<Form.Control
isInvalid={error}
type="password"
size="sm"
placeholder={t('login.auth.password')}
onChange={(event) => setPassword(event.currentTarget.value)}
className="bg-dark text-white"
autoComplete='current-password'
/>
</Form.Group>
<Alert className="small" show={error} variant="danger">
<Trans i18nKey="login.auth.error.usernamePassword"/>
</Alert>
<Button
type="submit"
variant="primary">
<Trans i18nKey="login.signIn"/>
</Button>
</Form>
</Card.Body>
</Card>
)
}