f2b53a6d53
Minor consistency fixes from @proddy's comments
148 lines
4.4 KiB
TypeScript
148 lines
4.4 KiB
TypeScript
import React, { Component } from 'react';
|
|
import { withSnackbar, WithSnackbarProps } from 'notistack';
|
|
import { TextValidator, ValidatorForm } from 'react-material-ui-form-validator';
|
|
|
|
import { withStyles, createStyles, Theme, WithStyles } from '@material-ui/core/styles';
|
|
import { Paper, Typography, Fab } from '@material-ui/core';
|
|
import ForwardIcon from '@material-ui/icons/Forward';
|
|
|
|
import { withAuthenticationContext, AuthenticationContextProps } from './authentication/AuthenticationContext';
|
|
import {PasswordValidator} from './components';
|
|
import { PROJECT_NAME, SIGN_IN_ENDPOINT } from './api';
|
|
|
|
const styles = (theme: Theme) => createStyles({
|
|
signInPage: {
|
|
display: "flex",
|
|
height: "100vh",
|
|
margin: "auto",
|
|
padding: theme.spacing(2),
|
|
justifyContent: "center",
|
|
flexDirection: "column",
|
|
maxWidth: theme.breakpoints.values.sm
|
|
},
|
|
signInPanel: {
|
|
textAlign: "center",
|
|
padding: theme.spacing(2),
|
|
paddingTop: "200px",
|
|
backgroundImage: 'url("/app/icon.png")',
|
|
backgroundRepeat: "no-repeat",
|
|
backgroundPosition: "50% " + theme.spacing(2) + "px",
|
|
backgroundSize: "auto 150px",
|
|
width: "100%"
|
|
},
|
|
extendedIcon: {
|
|
marginRight: theme.spacing(0.5),
|
|
},
|
|
button: {
|
|
marginRight: theme.spacing(2),
|
|
marginTop: theme.spacing(2),
|
|
}
|
|
});
|
|
|
|
type SignInProps = WithSnackbarProps & WithStyles<typeof styles> & AuthenticationContextProps;
|
|
|
|
interface SignInState {
|
|
username: string,
|
|
password: string,
|
|
processing: boolean
|
|
}
|
|
|
|
class SignIn extends Component<SignInProps, SignInState> {
|
|
|
|
constructor(props: SignInProps) {
|
|
super(props);
|
|
this.state = {
|
|
username: '',
|
|
password: '',
|
|
processing: false
|
|
};
|
|
}
|
|
|
|
updateInputElement = (event: React.ChangeEvent<HTMLInputElement>): void => {
|
|
const { name, value } = event.currentTarget;
|
|
this.setState(prevState => ({
|
|
...prevState,
|
|
[name]: value,
|
|
}))
|
|
};
|
|
|
|
onSubmit = () => {
|
|
const { username, password } = this.state;
|
|
const { authenticationContext } = this.props;
|
|
this.setState({ processing: true });
|
|
fetch(SIGN_IN_ENDPOINT, {
|
|
method: 'POST',
|
|
body: JSON.stringify({ username, password }),
|
|
headers: new Headers({
|
|
'Content-Type': 'application/json'
|
|
})
|
|
})
|
|
.then(response => {
|
|
if (response.status === 200) {
|
|
return response.json();
|
|
} else if (response.status === 401) {
|
|
throw Error("Invalid credentials.");
|
|
} else {
|
|
throw Error("Invalid status code: " + response.status);
|
|
}
|
|
}).then(json => {
|
|
authenticationContext.signIn(json.access_token);
|
|
})
|
|
.catch(error => {
|
|
this.props.enqueueSnackbar(error.message, {
|
|
variant: 'warning',
|
|
});
|
|
this.setState({ processing: false });
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const { username, password, processing } = this.state;
|
|
const { classes } = this.props;
|
|
return (
|
|
<div className={classes.signInPage}>
|
|
<Paper className={classes.signInPanel}>
|
|
<Typography variant="h4">{PROJECT_NAME}</Typography>
|
|
<ValidatorForm onSubmit={this.onSubmit}>
|
|
<TextValidator
|
|
disabled={processing}
|
|
validators={['required']}
|
|
errorMessages={['Username is required']}
|
|
name="username"
|
|
label="Username"
|
|
fullWidth
|
|
variant="outlined"
|
|
value={username}
|
|
onChange={this.updateInputElement}
|
|
margin="normal"
|
|
inputProps={{
|
|
autoCapitalize: "none",
|
|
autoCorrect: "off",
|
|
}}
|
|
/>
|
|
<PasswordValidator
|
|
disabled={processing}
|
|
validators={['required']}
|
|
errorMessages={['Password is required']}
|
|
name="password"
|
|
label="Password"
|
|
fullWidth
|
|
variant="outlined"
|
|
value={password}
|
|
onChange={this.updateInputElement}
|
|
margin="normal"
|
|
/>
|
|
<Fab variant="extended" color="primary" className={classes.button} type="submit" disabled={processing}>
|
|
<ForwardIcon className={classes.extendedIcon} />
|
|
Sign In
|
|
</Fab>
|
|
</ValidatorForm>
|
|
</Paper>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default withAuthenticationContext(withSnackbar(withStyles(styles)(SignIn)));
|