mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
Initial commit
This commit is contained in:
commit
36fe34e8e1
583 changed files with 91539 additions and 0 deletions
190
client/src/components/Login/Login.jsx
Executable file
190
client/src/components/Login/Login.jsx
Executable file
|
@ -0,0 +1,190 @@
|
|||
import React, { useEffect, useRef } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import classNames from 'classnames';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import isEmail from 'validator/lib/isEmail';
|
||||
import {
|
||||
Form, Grid, Header, Message,
|
||||
} from 'semantic-ui-react';
|
||||
import { Input } from '../../lib/custom-ui';
|
||||
|
||||
import {
|
||||
useDeepCompareCallback,
|
||||
useDeepCompareEffect,
|
||||
useDidUpdate,
|
||||
useForm,
|
||||
usePrevious,
|
||||
useToggle,
|
||||
} from '../../hooks';
|
||||
|
||||
import styles from './Login.module.css';
|
||||
|
||||
const Login = React.memo(
|
||||
({
|
||||
defaultData, isSubmitting, error, onAuthenticate, onMessageDismiss,
|
||||
}) => {
|
||||
const [t] = useTranslation();
|
||||
const wasSubmitting = usePrevious(isSubmitting);
|
||||
|
||||
const [data, handleFieldChange, setData] = useForm(() => ({
|
||||
email: '',
|
||||
password: '',
|
||||
...defaultData,
|
||||
}));
|
||||
|
||||
const [focusPasswordFieldState, focusPasswordField] = useToggle();
|
||||
|
||||
const emailField = useRef(null);
|
||||
const passwordField = useRef(null);
|
||||
|
||||
const handleSubmit = useDeepCompareCallback(() => {
|
||||
const cleanData = {
|
||||
...data,
|
||||
email: data.email.trim(),
|
||||
};
|
||||
|
||||
if (!isEmail(cleanData.email)) {
|
||||
emailField.current.select();
|
||||
return;
|
||||
}
|
||||
|
||||
if (!cleanData.password) {
|
||||
passwordField.current.focus();
|
||||
return;
|
||||
}
|
||||
|
||||
onAuthenticate(cleanData);
|
||||
}, [onAuthenticate, data]);
|
||||
|
||||
useEffect(() => {
|
||||
emailField.current.select();
|
||||
}, []);
|
||||
|
||||
useDeepCompareEffect(() => {
|
||||
if (wasSubmitting && !isSubmitting && error) {
|
||||
switch (error.message) {
|
||||
case 'emailDoesNotExist':
|
||||
emailField.current.select();
|
||||
|
||||
break;
|
||||
case 'invalidPassword':
|
||||
setData((prevData) => ({
|
||||
...prevData,
|
||||
password: '',
|
||||
}));
|
||||
focusPasswordField();
|
||||
|
||||
break;
|
||||
default:
|
||||
}
|
||||
}
|
||||
}, [isSubmitting, wasSubmitting, error, setData, focusPasswordField]);
|
||||
|
||||
useDidUpdate(() => {
|
||||
passwordField.current.focus();
|
||||
}, [focusPasswordFieldState]);
|
||||
|
||||
return (
|
||||
<div className={styles.fullHeight}>
|
||||
<Grid verticalAlign="middle" className={styles.fullHeightPaddingFix}>
|
||||
<Grid.Column widescreen={4} largeScreen={5} computer={6} tablet={16} mobile={16}>
|
||||
<Grid verticalAlign="middle" className={styles.fullHeightPaddingFix}>
|
||||
<Grid.Column>
|
||||
<div className={styles.loginWrapper}>
|
||||
<Header
|
||||
as="h1"
|
||||
textAlign="center"
|
||||
content={t('common.logInToPlanka')}
|
||||
className={styles.formTitle}
|
||||
/>
|
||||
<div>
|
||||
{error && (
|
||||
<Message
|
||||
// eslint-disable-next-line react/jsx-props-no-spreading
|
||||
{...{
|
||||
[error.type || 'error']: true,
|
||||
}}
|
||||
visible
|
||||
content={t(`common.${error.message}`)}
|
||||
onDismiss={onMessageDismiss}
|
||||
/>
|
||||
)}
|
||||
<Form size="large" onSubmit={handleSubmit}>
|
||||
<div className={styles.inputWrapper}>
|
||||
<div className={styles.inputLabel}>{t('common.email')}</div>
|
||||
<Input
|
||||
fluid
|
||||
ref={emailField}
|
||||
name="email"
|
||||
value={data.email}
|
||||
readOnly={isSubmitting}
|
||||
className={styles.input}
|
||||
onChange={handleFieldChange}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.inputWrapper}>
|
||||
<div className={styles.inputLabel}>{t('common.password')}</div>
|
||||
<Input
|
||||
fluid
|
||||
ref={passwordField}
|
||||
type="password"
|
||||
name="password"
|
||||
value={data.password}
|
||||
readOnly={isSubmitting}
|
||||
className={styles.input}
|
||||
onChange={handleFieldChange}
|
||||
/>
|
||||
</div>
|
||||
<Form.Button
|
||||
primary
|
||||
size="large"
|
||||
icon="right arrow"
|
||||
labelPosition="right"
|
||||
content={t('action.logIn')}
|
||||
floated="right"
|
||||
loading={isSubmitting}
|
||||
disabled={isSubmitting}
|
||||
/>
|
||||
</Form>
|
||||
</div>
|
||||
</div>
|
||||
</Grid.Column>
|
||||
</Grid>
|
||||
</Grid.Column>
|
||||
<Grid.Column
|
||||
widescreen={12}
|
||||
largeScreen={11}
|
||||
computer={10}
|
||||
only="computer"
|
||||
className={classNames(styles.cover, styles.fullHeight)}
|
||||
>
|
||||
<div className={styles.descriptionWrapperOverlay} />
|
||||
<div className={styles.descriptionWrapper}>
|
||||
<Header inverted as="h1" content="Planka" className={styles.descriptionTitle} />
|
||||
<Header
|
||||
inverted
|
||||
as="h2"
|
||||
content={t('common.projectManagment')}
|
||||
className={styles.descriptionSubtitle}
|
||||
/>
|
||||
</div>
|
||||
</Grid.Column>
|
||||
</Grid>
|
||||
</div>
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
Login.propTypes = {
|
||||
defaultData: PropTypes.object.isRequired, // eslint-disable-line react/forbid-prop-types
|
||||
isSubmitting: PropTypes.bool.isRequired,
|
||||
error: PropTypes.object, // eslint-disable-line react/forbid-prop-types
|
||||
onAuthenticate: PropTypes.func.isRequired,
|
||||
onMessageDismiss: PropTypes.func.isRequired,
|
||||
};
|
||||
|
||||
Login.defaultProps = {
|
||||
error: undefined,
|
||||
};
|
||||
|
||||
export default Login;
|
Loading…
Add table
Add a link
Reference in a new issue