Password recovery completed

This commit is contained in:
2019-05-09 09:23:10 +10:00
parent 3a34d78712
commit b023c74495
10 changed files with 477 additions and 15 deletions
+55 -14
View File
@@ -8,6 +8,7 @@ import Signup from '../panels/signup.jsx';
import Login from '../panels/login.jsx';
import Logout from '../panels/logout.jsx';
import PasswordChange from '../panels/password_change.jsx';
import PasswordRecover from '../panels/password_recover.jsx';
class Home extends React.Component {
constructor(props) {
@@ -15,7 +16,9 @@ class Home extends React.Component {
this.state = {
changedPassword: false,
signedUp: false,
signupMsg: ''
signupMsg: '',
recoverSent: false,
recoverMsg: ''
};
}
@@ -23,8 +26,16 @@ class Home extends React.Component {
//DEBUGGING: well this is goofy
let SidePanel;
if (this.props.id) {
if (this.props.id) { //logged in
SidePanel = () => {
if (this.state.signedUp) {
this.setState({ signedUp: false });
}
if (this.state.recoverSent) {
this.setState({ recoverSent: false });
}
let PasswordChangePanel;
if (!this.state.changedPassword) {
@@ -45,27 +56,52 @@ class Home extends React.Component {
</div>
);
};
} else {
} else { //not logged in
SidePanel = () => {
if (this.state.changedPassword) {
this.setState({changedPassword: false});
this.setState({ changedPassword: false });
}
let SignupPanel;
if (!this.state.signedUp) {
return (
<div>
SignupPanel = () => {
return (
<Signup onSignup={(msg) => this.setState( {signedUp: true, signupMsg: msg} )} />
<Login />
</div>
);
);
}
} else {
return (
<div>
SignupPanel = () => {
return (
<p>{this.state.signupMsg}</p>
<Login />
</div>
);
);
}
}
let RecoverPanel;
if (!this.state.recoverSent) {
RecoverPanel = () => {
return (
<PasswordRecover onEmailSent={(msg) => this.setState( {recoverSent: true, recoverMsg: msg} )} />
);
}
}
else {
RecoverPanel = () => {
return (
<p>{this.state.recoverMsg}</p>
);
}
}
return (
<div>
<SignupPanel />
<Login />
<RecoverPanel />
</div>
);
};
}
@@ -78,6 +114,11 @@ class Home extends React.Component {
}
}
Home.propTypes = {
id: PropTypes.number.isRequired,
token: PropTypes.number.isRequired
};
function mapStoreToProps(store) {
return {
id: store.account.id,
+41
View File
@@ -0,0 +1,41 @@
import React from 'react';
import { withRouter, Link } from 'react-router-dom';
import PropTypes from 'prop-types';
import queryString from 'query-string';
//panels
import PasswordResetPanel from '../panels/password_reset.jsx';
class PasswordReset extends React.Component {
constructor(props) {
super(props);
this.state = {
reset: false,
resetMsg: '',
params: queryString.parse(props.location.search)
}
}
render() {
let Panel;
if (!this.state.reset) {
Panel = () => {
return (<PasswordResetPanel email={this.state.params.email} token={this.state.params.token} onPasswordReset={(msg) => this.setState( {reset: true, resetMsg: msg} )}/>);
}
} else {
Panel = () => {
return (<p>{this.state.resetMsg}</p>);
}
}
return (
<div className='page'>
<Panel />
<Link to='/'>Return Home</Link>
</div>
);
}
};
export default withRouter(PasswordReset);