1
0
mirror of https://github.com/franjsco/tick3t synced 2024-12-26 17:33:27 +01:00

feat: add Settings component

This commit is contained in:
Francesco Esposito 2019-08-06 16:50:53 +02:00
parent 5a198987be
commit 6ac23dd61b
2 changed files with 159 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import Login from "./containers/Administration/Login";
import Logout from "./containers/Logout";
import TicketList from "./containers/Administration/TicketList";
import TicketManager from "./containers/Administration/TicketManager";
import Settings from './containers/Administration/Settings';
class Routes extends Component {
constructor(props) {
@ -40,6 +41,8 @@ class Routes extends Component {
<PrivateRoute path="/admin/" exact component={TicketList} />
<PrivateRoute path="/admin/ticket/:ticketId" component={TicketManager} />
<PrivateRoute path="/admin/settings" exact component={Settings} />
<PrivateRoute path="/logout" component={Logout} />
<Route component={PageNotFound} />
</Switch>

View File

@ -0,0 +1,156 @@
import React, { Component } from 'react';
import { Redirect } from 'react-router-dom';
import { userAPI } from '../../api/user';
import {
Row,
Col,
Form,
FormGroup,
Label,
Input
} from 'reactstrap';
import Card from '../../components/Card';
import Button from '../../components/Button';
class Settings extends Component {
constructor(props) {
super(props);
this.state = {
newPassword: '',
confirmPassword: '',
error: '',
updated: false
};
this.handleInputChange = this.handleInputChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
this.resetForm = this.resetForm.bind(this);
}
handleInputChange(event) {
const target = event.target;
const name = target.name;
const value = target.type === 'checkbox' ? target.checked : target.value;
this.setState({
[name]: value
});
}
handleSubmit(event) {
event.preventDefault();
const { newPassword, confirmPassword } = this.state;
if (newPassword && newPassword === confirmPassword) {
const user = {
newPassword,
}
userAPI.changePassword(user)
.then((json) => {
this.setState({ updated: true });
})
.catch((error) => {
this.setState({ error: error.message });
})
} else {
this.setState( {error: 'Check passwords'})
}
}
resetForm(event) {
event.preventDefault();
this.setState({ error: '' });
}
render() {
if (this.state.error) {
return (
<Card
title="Error"
>
<p>{this.state.error}</p>
<a href="/" onClick={this.resetForm}>Back to login</a>
</Card>
);
}
if (this.state.updated) {
alert('Password updated');
return (
<Redirect to="/admin/" />
)
}
return (
<Card
align="right"
title="Settings"
>
<Row>
<Col
sm={12}
md={{ size: 8, offset: 2 }}
>
<h5>Change password</h5>
</Col>
</Row>
<Row>
<Col
sm={12}
md={{ size: 8, offset: 2 }}
>
<Form onSubmit={this.handleSubmit}>
<FormGroup>
<Label
className="font-weight-bold"
for="newPassword"
>
New password
</Label>
<Input
onChange={this.handleInputChange}
type="password"
name="newPassword"
id="newPassword"
placeholder="Insert new password"
/>
</FormGroup>
<FormGroup>
<Label
className="font-weight-bold"
for="newPassword"
>
Confirm password
</Label>
<Input
onChange={this.handleInputChange}
type="password"
name="confirmPassword"
id="confirmPassword"
placeholder="Confirm password"
/>
</FormGroup>
<FormGroup>
<Button>Change Password</Button>
</FormGroup>
</Form>
</Col>
</Row>
</Card>
);
}
}
export default Settings;