mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
bd93c5d131
* feat: change layout * fix: standalone banner styling * fix: change styling for banner * fix: login page * fix: standalone pages * fix: page tweaks * fix: center text * refactor: new user page * refactor: remove uneccesary markup * refactor: remove secondary actions from hosted * fix: remove authdetails blob * refactor: remove unused import * fix: move overflow * fix: add breakpoint to forgotten password
137 lines
4.5 KiB
JavaScript
137 lines
4.5 KiB
JavaScript
import React, { useState } from 'react';
|
|
import classnames from 'classnames';
|
|
import PropTypes from 'prop-types';
|
|
import { Button, Grid, TextField, Typography } from '@material-ui/core';
|
|
import { useHistory } from 'react-router';
|
|
import { useCommonStyles } from '../../../common.styles';
|
|
import { useStyles } from './HostedAuth.styles';
|
|
import useQueryParams from '../../../hooks/useQueryParams';
|
|
import AuthOptions from '../common/AuthOptions/AuthOptions';
|
|
import DividerText from '../../common/DividerText/DividerText';
|
|
import ConditionallyRender from '../../common/ConditionallyRender';
|
|
|
|
const HostedAuth = ({ authDetails, passwordLogin }) => {
|
|
const commonStyles = useCommonStyles();
|
|
const styles = useStyles();
|
|
const history = useHistory();
|
|
const params = useQueryParams();
|
|
const [username, setUsername] = useState(params.get('email') || '');
|
|
const [password, setPassword] = useState('');
|
|
const [errors, setErrors] = useState({
|
|
usernameError: '',
|
|
passwordError: '',
|
|
});
|
|
|
|
const handleSubmit = async evt => {
|
|
evt.preventDefault();
|
|
|
|
if (!username) {
|
|
setErrors(prev => ({
|
|
...prev,
|
|
usernameError: 'This is a required field',
|
|
}));
|
|
}
|
|
if (!password) {
|
|
setErrors(prev => ({
|
|
...prev,
|
|
passwordError: 'This is a required field',
|
|
}));
|
|
}
|
|
|
|
if (!password || !username) {
|
|
return;
|
|
}
|
|
|
|
const user = { username, password };
|
|
const path = evt.target.action;
|
|
|
|
try {
|
|
await passwordLogin(path, user);
|
|
history.push(`/`);
|
|
} catch (error) {
|
|
if (error.statusCode === 404 || error.statusCode === 400) {
|
|
setErrors(prev => ({
|
|
...prev,
|
|
apiError: 'Invalid login details',
|
|
}));
|
|
setPassword('');
|
|
setUsername('');
|
|
} else {
|
|
setErrors({
|
|
apiError: 'Unknown error while trying to authenticate.',
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
const { usernameError, passwordError, apiError } = errors;
|
|
const { options = [] } = authDetails;
|
|
|
|
return (
|
|
<>
|
|
<ConditionallyRender
|
|
condition={options.length > 0}
|
|
show={
|
|
<>
|
|
<AuthOptions options={options} />
|
|
<DividerText text="or signin with username" />
|
|
</>
|
|
}
|
|
/>
|
|
|
|
<form onSubmit={handleSubmit} action={authDetails.path}>
|
|
<Typography variant="subtitle2" className={styles.apiError}>
|
|
{apiError}
|
|
</Typography>
|
|
<div
|
|
className={classnames(
|
|
styles.contentContainer,
|
|
commonStyles.contentSpacingY
|
|
)}
|
|
>
|
|
<TextField
|
|
label="Username or email"
|
|
name="username"
|
|
type="string"
|
|
onChange={evt => setUsername(evt.target.value)}
|
|
value={username}
|
|
error={!!usernameError}
|
|
helperText={usernameError}
|
|
variant="outlined"
|
|
size="small"
|
|
/>
|
|
<TextField
|
|
label="Password"
|
|
onChange={evt => setPassword(evt.target.value)}
|
|
name="password"
|
|
type="password"
|
|
value={password}
|
|
error={!!passwordError}
|
|
helperText={passwordError}
|
|
variant="outlined"
|
|
size="small"
|
|
/>
|
|
<Grid container>
|
|
<Button
|
|
variant="contained"
|
|
color="primary"
|
|
type="submit"
|
|
className={styles.button}
|
|
>
|
|
Sign in
|
|
</Button>
|
|
</Grid>
|
|
</div>
|
|
</form>
|
|
</>
|
|
);
|
|
};
|
|
|
|
HostedAuth.propTypes = {
|
|
authDetails: PropTypes.object.isRequired,
|
|
passwordLogin: PropTypes.func.isRequired,
|
|
history: PropTypes.object.isRequired,
|
|
};
|
|
|
|
export default HostedAuth;
|