2020-07-24 04:56:55 +02:00
|
|
|
import React, { useState } from 'react';
|
2020-09-06 02:27:01 +02:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2020-08-07 07:03:02 +02:00
|
|
|
import { Formik, Form, Field } from 'formik';
|
2020-07-24 04:56:55 +02:00
|
|
|
import Router from 'next/router';
|
|
|
|
import { post } from 'lib/web';
|
2020-08-12 07:24:41 +02:00
|
|
|
import Button from 'components/common/Button';
|
|
|
|
import FormLayout, {
|
|
|
|
FormButtons,
|
|
|
|
FormError,
|
|
|
|
FormMessage,
|
|
|
|
FormRow,
|
|
|
|
} from 'components/layout/FormLayout';
|
|
|
|
import Icon from 'components/common/Icon';
|
|
|
|
import Logo from 'assets/logo.svg';
|
|
|
|
import styles from './LoginForm.module.css';
|
2020-07-24 04:56:55 +02:00
|
|
|
|
|
|
|
const validate = ({ username, password }) => {
|
|
|
|
const errors = {};
|
|
|
|
|
|
|
|
if (!username) {
|
2020-09-08 05:41:58 +02:00
|
|
|
errors.username = <FormattedMessage id="label.required" defaultMessage="Required" />;
|
2020-07-24 04:56:55 +02:00
|
|
|
}
|
|
|
|
if (!password) {
|
2020-09-08 05:41:58 +02:00
|
|
|
errors.password = <FormattedMessage id="label.required" defaultMessage="Required" />;
|
2020-07-24 04:56:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return errors;
|
|
|
|
};
|
|
|
|
|
2020-08-07 11:27:12 +02:00
|
|
|
export default function LoginForm() {
|
2020-07-24 04:56:55 +02:00
|
|
|
const [message, setMessage] = useState();
|
|
|
|
|
|
|
|
const handleSubmit = async ({ username, password }) => {
|
2020-08-05 07:45:05 +02:00
|
|
|
const response = await post('/api/auth/login', { username, password });
|
2020-07-24 04:56:55 +02:00
|
|
|
|
2020-08-20 04:03:42 +02:00
|
|
|
if (typeof response !== 'string') {
|
2020-07-26 01:31:07 +02:00
|
|
|
await Router.push('/');
|
2020-07-24 04:56:55 +02:00
|
|
|
} else {
|
2020-09-08 05:41:58 +02:00
|
|
|
setMessage(
|
|
|
|
response.startsWith('401') ? (
|
|
|
|
<FormattedMessage
|
|
|
|
id="message.incorrect-username-password"
|
|
|
|
defaultMessage="Incorrect username/password."
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
response
|
|
|
|
),
|
|
|
|
);
|
2020-07-24 04:56:55 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2020-08-12 07:24:41 +02:00
|
|
|
<FormLayout className={styles.login}>
|
2020-08-07 07:03:02 +02:00
|
|
|
<Formik
|
|
|
|
initialValues={{
|
|
|
|
username: '',
|
|
|
|
password: '',
|
|
|
|
}}
|
|
|
|
validate={validate}
|
|
|
|
onSubmit={handleSubmit}
|
|
|
|
>
|
|
|
|
{() => (
|
|
|
|
<Form>
|
2020-08-12 07:24:41 +02:00
|
|
|
<Icon icon={<Logo />} size="xlarge" className={styles.icon} />
|
2020-08-08 05:36:57 +02:00
|
|
|
<h1 className="center">umami</h1>
|
2020-08-07 07:03:02 +02:00
|
|
|
<FormRow>
|
2020-09-06 02:27:01 +02:00
|
|
|
<label htmlFor="username">
|
|
|
|
<FormattedMessage id="label.username" defaultMessage="Username" />
|
|
|
|
</label>
|
2020-08-07 07:03:02 +02:00
|
|
|
<Field name="username" type="text" />
|
|
|
|
<FormError name="username" />
|
|
|
|
</FormRow>
|
|
|
|
<FormRow>
|
2020-09-06 02:27:01 +02:00
|
|
|
<label htmlFor="password">
|
|
|
|
<FormattedMessage id="label.password" defaultMessage="Password" />
|
|
|
|
</label>
|
2020-08-07 07:03:02 +02:00
|
|
|
<Field name="password" type="password" />
|
|
|
|
<FormError name="password" />
|
|
|
|
</FormRow>
|
|
|
|
<FormButtons>
|
2020-08-08 02:19:42 +02:00
|
|
|
<Button type="submit" variant="action">
|
2020-09-06 02:27:01 +02:00
|
|
|
<FormattedMessage id="button.login" defaultMessage="Login" />
|
2020-08-07 09:24:01 +02:00
|
|
|
</Button>
|
2020-08-07 07:03:02 +02:00
|
|
|
</FormButtons>
|
|
|
|
<FormMessage>{message}</FormMessage>
|
|
|
|
</Form>
|
|
|
|
)}
|
|
|
|
</Formik>
|
|
|
|
</FormLayout>
|
2020-07-24 04:56:55 +02:00
|
|
|
);
|
|
|
|
}
|