Adding User Settings View (#325)
* added account page showing username and email * change username and email * validate current password and add new password * reject promise with error for reduxForm submit-validation for current password * updated user reducer to handle setting sucess and server side async * warning if there is current password but no new password * fixes logout button * import validate function, fixes logout style
This commit is contained in:
parent
6af92a4a32
commit
fe6acc90e4
13 changed files with 317 additions and 46 deletions
|
@ -136,6 +136,11 @@ class Nav extends React.PureComponent {
|
||||||
My sketches
|
My sketches
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link to={`/${this.props.user.username}/account`}>
|
||||||
|
My account
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<button onClick={this.props.logoutUser} >
|
<button onClick={this.props.logoutUser} >
|
||||||
Log out
|
Log out
|
||||||
|
|
|
@ -23,6 +23,8 @@ export const AUTH_USER = 'AUTH_USER';
|
||||||
export const UNAUTH_USER = 'UNAUTH_USER';
|
export const UNAUTH_USER = 'UNAUTH_USER';
|
||||||
export const AUTH_ERROR = 'AUTH_ERROR';
|
export const AUTH_ERROR = 'AUTH_ERROR';
|
||||||
|
|
||||||
|
export const SETTINGS_UPDATED = 'SETTINGS_UPDATED';
|
||||||
|
|
||||||
export const SET_PROJECT_NAME = 'SET_PROJECT_NAME';
|
export const SET_PROJECT_NAME = 'SET_PROJECT_NAME';
|
||||||
|
|
||||||
export const PROJECT_SAVE_SUCCESS = 'PROJECT_SAVE_SUCCESS';
|
export const PROJECT_SAVE_SUCCESS = 'PROJECT_SAVE_SUCCESS';
|
||||||
|
@ -96,6 +98,7 @@ export const RESET_INFINITE_LOOPS = 'RESET_INFINITE_LOOPS';
|
||||||
export const RESET_PASSWORD_INITIATE = 'RESET_PASSWORD_INITIATE';
|
export const RESET_PASSWORD_INITIATE = 'RESET_PASSWORD_INITIATE';
|
||||||
export const RESET_PASSWORD_RESET = 'RESET_PASSWORD_RESET';
|
export const RESET_PASSWORD_RESET = 'RESET_PASSWORD_RESET';
|
||||||
export const INVALID_RESET_PASSWORD_TOKEN = 'INVALID_RESET_PASSWORD_TOKEN';
|
export const INVALID_RESET_PASSWORD_TOKEN = 'INVALID_RESET_PASSWORD_TOKEN';
|
||||||
|
|
||||||
// eventually, handle errors more specifically and better
|
// eventually, handle errors more specifically and better
|
||||||
export const ERROR = 'ERROR';
|
export const ERROR = 'ERROR';
|
||||||
|
|
||||||
|
|
|
@ -160,3 +160,20 @@ export function updatePassword(token, formValues) {
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function updateSettingsSuccess(user) {
|
||||||
|
return {
|
||||||
|
type: ActionTypes.SETTINGS_UPDATED,
|
||||||
|
user
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function updateSettings(formValues) {
|
||||||
|
return dispatch =>
|
||||||
|
axios.put(`${ROOT_URL}/account`, formValues, { withCredentials: true })
|
||||||
|
.then((response) => {
|
||||||
|
dispatch(updateSettingsSuccess(response.data));
|
||||||
|
browserHistory.push('/');
|
||||||
|
})
|
||||||
|
.catch(response => Promise.reject({ currentPassword: response.data.error }));
|
||||||
|
}
|
||||||
|
|
84
client/modules/User/components/AccountForm.jsx
Normal file
84
client/modules/User/components/AccountForm.jsx
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
import React, { PropTypes } from 'react';
|
||||||
|
import { domOnlyProps } from '../../../utils/reduxFormUtils';
|
||||||
|
|
||||||
|
function AccountForm(props) {
|
||||||
|
const {
|
||||||
|
fields: { username, email, currentPassword, newPassword },
|
||||||
|
handleSubmit,
|
||||||
|
submitting,
|
||||||
|
invalid,
|
||||||
|
pristine
|
||||||
|
} = props;
|
||||||
|
return (
|
||||||
|
<form className="form" onSubmit={handleSubmit(props.updateSettings)}>
|
||||||
|
<p className="form__field">
|
||||||
|
<label htmlFor="email" className="form__label">Email</label>
|
||||||
|
<input
|
||||||
|
className="form__input"
|
||||||
|
aria-label="email"
|
||||||
|
type="text"
|
||||||
|
id="email"
|
||||||
|
{...domOnlyProps(email)}
|
||||||
|
/>
|
||||||
|
{email.touched && email.error && <span className="form-error">{email.error}</span>}
|
||||||
|
</p>
|
||||||
|
<p className="form__field">
|
||||||
|
<label htmlFor="username" className="form__label">User Name</label>
|
||||||
|
<input
|
||||||
|
className="form__input"
|
||||||
|
aria-label="username"
|
||||||
|
type="text"
|
||||||
|
id="username"
|
||||||
|
defaultValue={username}
|
||||||
|
{...domOnlyProps(username)}
|
||||||
|
/>
|
||||||
|
{username.touched && username.error && <span className="form-error">{username.error}</span>}
|
||||||
|
</p>
|
||||||
|
<p className="form__field">
|
||||||
|
<label htmlFor="current password" className="form__label">Current Password</label>
|
||||||
|
<input
|
||||||
|
className="form__input"
|
||||||
|
aria-label="currentPassword"
|
||||||
|
type="password"
|
||||||
|
id="currentPassword"
|
||||||
|
{...domOnlyProps(currentPassword)}
|
||||||
|
/>
|
||||||
|
{currentPassword.touched && currentPassword.error && <span className="form-error">{currentPassword.error}</span>}
|
||||||
|
</p>
|
||||||
|
<p className="form__field">
|
||||||
|
<label htmlFor="new password" className="form__label">New Password</label>
|
||||||
|
<input
|
||||||
|
className="form__input"
|
||||||
|
aria-label="newPassword"
|
||||||
|
type="password"
|
||||||
|
id="newPassword"
|
||||||
|
{...domOnlyProps(newPassword)}
|
||||||
|
/>
|
||||||
|
{newPassword.touched && newPassword.error && <span className="form-error">{newPassword.error}</span>}
|
||||||
|
</p>
|
||||||
|
<input type="submit" disabled={submitting || invalid || pristine} value="Save All Settings" aria-label="updateSettings" />
|
||||||
|
</form>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
AccountForm.propTypes = {
|
||||||
|
fields: PropTypes.shape({
|
||||||
|
username: PropTypes.object.isRequired,
|
||||||
|
email: PropTypes.object.isRequired,
|
||||||
|
currentPassword: PropTypes.object.isRequired,
|
||||||
|
newPassword: PropTypes.object.isRequired
|
||||||
|
}).isRequired,
|
||||||
|
handleSubmit: PropTypes.func.isRequired,
|
||||||
|
updateSettings: PropTypes.func.isRequired,
|
||||||
|
submitting: PropTypes.bool,
|
||||||
|
invalid: PropTypes.bool,
|
||||||
|
pristine: PropTypes.bool,
|
||||||
|
};
|
||||||
|
|
||||||
|
AccountForm.defaultProps = {
|
||||||
|
submitting: false,
|
||||||
|
pristine: true,
|
||||||
|
invalid: false
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AccountForm;
|
92
client/modules/User/pages/AccountView.jsx
Normal file
92
client/modules/User/pages/AccountView.jsx
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
import React, { PropTypes } from 'react';
|
||||||
|
import { reduxForm } from 'redux-form';
|
||||||
|
import { bindActionCreators } from 'redux';
|
||||||
|
import { browserHistory } from 'react-router';
|
||||||
|
import InlineSVG from 'react-inlinesvg';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { updateSettings } from '../actions';
|
||||||
|
import AccountForm from '../components/AccountForm';
|
||||||
|
import { validateSettings } from '../../../utils/reduxFormUtils';
|
||||||
|
|
||||||
|
const exitUrl = require('../../../images/exit.svg');
|
||||||
|
const logoUrl = require('../../../images/p5js-logo.svg');
|
||||||
|
|
||||||
|
|
||||||
|
class AccountView extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.closeAccountPage = this.closeAccountPage.bind(this);
|
||||||
|
this.gotoHomePage = this.gotoHomePage.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
closeAccountPage() {
|
||||||
|
browserHistory.push(this.props.previousPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
gotoHomePage() {
|
||||||
|
browserHistory.push('/');
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className="form-container">
|
||||||
|
<div className="form-container__header">
|
||||||
|
<button className="form-container__logo-button" onClick={this.gotoHomePage}>
|
||||||
|
<InlineSVG src={logoUrl} alt="p5js Logo" />
|
||||||
|
</button>
|
||||||
|
<button className="form-container__exit-button" onClick={this.closeAccountPage}>
|
||||||
|
<InlineSVG src={exitUrl} alt="Close Account Page" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div className="form-container__content">
|
||||||
|
<h2 className="form-container__title">My Account</h2>
|
||||||
|
<AccountForm {...this.props} />
|
||||||
|
{/* <h2 className="form-container__divider">Or</h2>
|
||||||
|
<GithubButton buttonText="Login with Github" /> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function mapStateToProps(state) {
|
||||||
|
return {
|
||||||
|
initialValues: state.user, // <- initialValues for reduxForm
|
||||||
|
user: state.user,
|
||||||
|
previousPath: state.ide.previousPath
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function mapDispatchToProps(dispatch) {
|
||||||
|
return bindActionCreators({ updateSettings }, dispatch);
|
||||||
|
}
|
||||||
|
|
||||||
|
function asyncValidate(formProps, dispatch, props) {
|
||||||
|
const fieldToValidate = props.form._active;
|
||||||
|
if (fieldToValidate) {
|
||||||
|
const queryParams = {};
|
||||||
|
queryParams[fieldToValidate] = formProps[fieldToValidate];
|
||||||
|
queryParams.check_type = fieldToValidate;
|
||||||
|
return axios.get('/api/signup/duplicate_check', { params: queryParams })
|
||||||
|
.then((response) => {
|
||||||
|
if (response.data.exists) {
|
||||||
|
const error = {};
|
||||||
|
error[fieldToValidate] = response.data.message;
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return Promise.resolve(true).then(() => {});
|
||||||
|
}
|
||||||
|
|
||||||
|
AccountView.propTypes = {
|
||||||
|
previousPath: PropTypes.string.isRequired
|
||||||
|
};
|
||||||
|
|
||||||
|
export default reduxForm({
|
||||||
|
form: 'updateAllSettings',
|
||||||
|
fields: ['username', 'email', 'currentPassword', 'newPassword'],
|
||||||
|
validate: validateSettings,
|
||||||
|
asyncValidate,
|
||||||
|
asyncBlurFields: ['username', 'email', 'currentPassword']
|
||||||
|
}, mapStateToProps, mapDispatchToProps)(AccountView);
|
|
@ -4,6 +4,7 @@ import { Link, browserHistory } from 'react-router';
|
||||||
import InlineSVG from 'react-inlinesvg';
|
import InlineSVG from 'react-inlinesvg';
|
||||||
import { validateAndLoginUser } from '../actions';
|
import { validateAndLoginUser } from '../actions';
|
||||||
import LoginForm from '../components/LoginForm';
|
import LoginForm from '../components/LoginForm';
|
||||||
|
import { validateLogin } from '../../../utils/reduxFormUtils';
|
||||||
// import GithubButton from '../components/GithubButton';
|
// import GithubButton from '../components/GithubButton';
|
||||||
const exitUrl = require('../../../images/exit.svg');
|
const exitUrl = require('../../../images/exit.svg');
|
||||||
const logoUrl = require('../../../images/p5js-logo.svg');
|
const logoUrl = require('../../../images/p5js-logo.svg');
|
||||||
|
@ -67,17 +68,6 @@ function mapDispatchToProps() {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function validate(formProps) {
|
|
||||||
const errors = {};
|
|
||||||
if (!formProps.email) {
|
|
||||||
errors.email = 'Please enter an email';
|
|
||||||
}
|
|
||||||
if (!formProps.password) {
|
|
||||||
errors.password = 'Please enter a password';
|
|
||||||
}
|
|
||||||
return errors;
|
|
||||||
}
|
|
||||||
|
|
||||||
LoginView.propTypes = {
|
LoginView.propTypes = {
|
||||||
previousPath: PropTypes.string.isRequired
|
previousPath: PropTypes.string.isRequired
|
||||||
};
|
};
|
||||||
|
@ -85,5 +75,5 @@ LoginView.propTypes = {
|
||||||
export default reduxForm({
|
export default reduxForm({
|
||||||
form: 'login',
|
form: 'login',
|
||||||
fields: ['email', 'password'],
|
fields: ['email', 'password'],
|
||||||
validate
|
validate: validateLogin
|
||||||
}, mapStateToProps, mapDispatchToProps)(LoginView);
|
}, mapStateToProps, mapDispatchToProps)(LoginView);
|
||||||
|
|
|
@ -6,6 +6,7 @@ import InlineSVG from 'react-inlinesvg';
|
||||||
import { reduxForm } from 'redux-form';
|
import { reduxForm } from 'redux-form';
|
||||||
import * as UserActions from '../actions';
|
import * as UserActions from '../actions';
|
||||||
import SignupForm from '../components/SignupForm';
|
import SignupForm from '../components/SignupForm';
|
||||||
|
import { validateSignup } from '../../../utils/reduxFormUtils';
|
||||||
|
|
||||||
const exitUrl = require('../../../images/exit.svg');
|
const exitUrl = require('../../../images/exit.svg');
|
||||||
const logoUrl = require('../../../images/p5js-logo.svg');
|
const logoUrl = require('../../../images/p5js-logo.svg');
|
||||||
|
@ -78,37 +79,6 @@ function asyncValidate(formProps, dispatch, props) {
|
||||||
return Promise.resolve(true).then(() => {});
|
return Promise.resolve(true).then(() => {});
|
||||||
}
|
}
|
||||||
|
|
||||||
function validate(formProps) {
|
|
||||||
const errors = {};
|
|
||||||
|
|
||||||
if (!formProps.username) {
|
|
||||||
errors.username = 'Please enter a username.';
|
|
||||||
} else if (!formProps.username.match(/^.{1,20}$/)) {
|
|
||||||
errors.username = 'Username must be less than 20 characters.';
|
|
||||||
} else if (!formProps.username.match(/^[a-zA-Z0-9._-]{1,20}$/)) {
|
|
||||||
errors.username = 'Username must only consist of numbers, letters, periods, dashes, and underscores.';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!formProps.email) {
|
|
||||||
errors.email = 'Please enter an email.';
|
|
||||||
} else if (!formProps.email.match(/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/i)) {
|
|
||||||
errors.email = 'Please enter a valid email address.';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!formProps.password) {
|
|
||||||
errors.password = 'Please enter a password';
|
|
||||||
}
|
|
||||||
if (!formProps.confirmPassword) {
|
|
||||||
errors.confirmPassword = 'Please enter a password confirmation';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (formProps.password !== formProps.confirmPassword) {
|
|
||||||
errors.password = 'Passwords must match';
|
|
||||||
}
|
|
||||||
|
|
||||||
return errors;
|
|
||||||
}
|
|
||||||
|
|
||||||
function onSubmitFail(errors) {
|
function onSubmitFail(errors) {
|
||||||
console.log(errors);
|
console.log(errors);
|
||||||
}
|
}
|
||||||
|
@ -121,7 +91,7 @@ export default reduxForm({
|
||||||
form: 'signup',
|
form: 'signup',
|
||||||
fields: ['username', 'email', 'password', 'confirmPassword'],
|
fields: ['username', 'email', 'password', 'confirmPassword'],
|
||||||
onSubmitFail,
|
onSubmitFail,
|
||||||
validate,
|
validate: validateSignup,
|
||||||
asyncValidate,
|
asyncValidate,
|
||||||
asyncBlurFields: ['username', 'email']
|
asyncBlurFields: ['username', 'email']
|
||||||
}, mapStateToProps, mapDispatchToProps)(SignupView);
|
}, mapStateToProps, mapDispatchToProps)(SignupView);
|
||||||
|
|
|
@ -19,6 +19,8 @@ const user = (state = { authenticated: false }, action) => {
|
||||||
return Object.assign({}, state, { resetPasswordInitiate: false });
|
return Object.assign({}, state, { resetPasswordInitiate: false });
|
||||||
case ActionTypes.INVALID_RESET_PASSWORD_TOKEN:
|
case ActionTypes.INVALID_RESET_PASSWORD_TOKEN:
|
||||||
return Object.assign({}, state, { resetPasswordInvalid: true });
|
return Object.assign({}, state, { resetPasswordInvalid: true });
|
||||||
|
case ActionTypes.SETTINGS_UPDATED:
|
||||||
|
return { ...state, ...action.user };
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,7 @@ import LoginView from './modules/User/pages/LoginView';
|
||||||
import SignupView from './modules/User/pages/SignupView';
|
import SignupView from './modules/User/pages/SignupView';
|
||||||
import ResetPasswordView from './modules/User/pages/ResetPasswordView';
|
import ResetPasswordView from './modules/User/pages/ResetPasswordView';
|
||||||
import NewPasswordView from './modules/User/pages/NewPasswordView';
|
import NewPasswordView from './modules/User/pages/NewPasswordView';
|
||||||
|
import AccountView from './modules/User/pages/AccountView';
|
||||||
// import SketchListView from './modules/Sketch/pages/SketchListView';
|
// import SketchListView from './modules/Sketch/pages/SketchListView';
|
||||||
import { getUser } from './modules/User/actions';
|
import { getUser } from './modules/User/actions';
|
||||||
|
|
||||||
|
@ -27,6 +28,7 @@ const routes = store =>
|
||||||
<Route path="/sketches" component={IDEView} />
|
<Route path="/sketches" component={IDEView} />
|
||||||
<Route path="/:username/sketches/:project_id" component={IDEView} />
|
<Route path="/:username/sketches/:project_id" component={IDEView} />
|
||||||
<Route path="/:username/sketches" component={IDEView} />
|
<Route path="/:username/sketches" component={IDEView} />
|
||||||
|
<Route path="/:username/account" component={AccountView} />
|
||||||
<Route path="/about" component={IDEView} />
|
<Route path="/about" component={IDEView} />
|
||||||
</Route>
|
</Route>
|
||||||
);
|
);
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
.nav__item-spacer {
|
.nav__item-spacer {
|
||||||
@include themify() {
|
@include themify() {
|
||||||
color: map-get($theme-map, 'inactive-text-color');
|
color: map-get($theme-map, 'inactive-text-color');
|
||||||
}
|
}
|
||||||
padding: 0 #{15 / $base-font-size}rem;
|
padding: 0 #{15 / $base-font-size}rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,12 +65,16 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav__dropdown a {
|
.nav__dropdown a, button {
|
||||||
@include themify() {
|
@include themify() {
|
||||||
color: getThemifyVariable('secondary-text-color');
|
color: getThemifyVariable('secondary-text-color');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav__dropdown button {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.nav__dropdown a:hover {
|
.nav__dropdown a:hover {
|
||||||
@include themify() {
|
@include themify() {
|
||||||
color: getThemifyVariable('primary-text-color');
|
color: getThemifyVariable('primary-text-color');
|
||||||
|
|
|
@ -14,3 +14,61 @@ export const domOnlyProps = ({
|
||||||
error,
|
error,
|
||||||
...domProps }) => domProps;
|
...domProps }) => domProps;
|
||||||
/* eslint-enable */
|
/* eslint-enable */
|
||||||
|
|
||||||
|
function validateNameEmail(formProps, errors) {
|
||||||
|
if (!formProps.username) {
|
||||||
|
errors.username = 'Please enter a username.';
|
||||||
|
} else if (!formProps.username.match(/^.{1,20}$/)) {
|
||||||
|
errors.username = 'Username must be less than 20 characters.';
|
||||||
|
} else if (!formProps.username.match(/^[a-zA-Z0-9._-]{1,20}$/)) {
|
||||||
|
errors.username = 'Username must only consist of numbers, letters, periods, dashes, and underscores.';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!formProps.email) {
|
||||||
|
errors.email = 'Please enter an email.';
|
||||||
|
} else if (!formProps.email.match(/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/i)) {
|
||||||
|
errors.email = 'Please enter a valid email address.';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function validateSettings(formProps) {
|
||||||
|
const errors = {};
|
||||||
|
|
||||||
|
validateNameEmail(formProps, errors);
|
||||||
|
|
||||||
|
if (formProps.currentPassword && !formProps.newPassword) {
|
||||||
|
errors.newPassword = 'Please enter a new password or leave the current password empty.';
|
||||||
|
}
|
||||||
|
|
||||||
|
return errors;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function validateLogin(formProps) {
|
||||||
|
const errors = {};
|
||||||
|
if (!formProps.email) {
|
||||||
|
errors.email = 'Please enter an email';
|
||||||
|
}
|
||||||
|
if (!formProps.password) {
|
||||||
|
errors.password = 'Please enter a password';
|
||||||
|
}
|
||||||
|
return errors;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function validateSignup(formProps) {
|
||||||
|
const errors = {};
|
||||||
|
|
||||||
|
validateNameEmail(formProps, errors);
|
||||||
|
|
||||||
|
if (!formProps.password) {
|
||||||
|
errors.password = 'Please enter a password';
|
||||||
|
}
|
||||||
|
if (!formProps.confirmPassword) {
|
||||||
|
errors.confirmPassword = 'Please enter a password confirmation';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (formProps.password !== formProps.confirmPassword) {
|
||||||
|
errors.password = 'Passwords must match';
|
||||||
|
}
|
||||||
|
|
||||||
|
return errors;
|
||||||
|
}
|
||||||
|
|
|
@ -182,3 +182,45 @@ export function userExists(username, callback) {
|
||||||
user ? callback(true) : callback(false)
|
user ? callback(true) : callback(false)
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function updateSettings(req, res) {
|
||||||
|
User.findById(req.user.id, (err, user) => {
|
||||||
|
if (err) {
|
||||||
|
res.status(500).json({ error: err });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!user) {
|
||||||
|
res.status(404).json({ error: 'Document not found' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
user.email = req.body.email;
|
||||||
|
user.username = req.body.username;
|
||||||
|
|
||||||
|
if (req.body.currentPassword) {
|
||||||
|
user.comparePassword(req.body.currentPassword, (err, isMatch) => {
|
||||||
|
if (err) throw err;
|
||||||
|
if (!isMatch) {
|
||||||
|
res.status(401).json({ error: 'Current password is invalid.' });
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
user.password = req.body.newPassword;
|
||||||
|
saveUser(res, user);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
saveUser(res, user);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function saveUser(res, user) {
|
||||||
|
user.save((saveErr) => {
|
||||||
|
if (saveErr) {
|
||||||
|
res.status(500).json({ error: saveErr });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
res.json(user);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
|
@ -15,4 +15,6 @@ router.route('/reset-password/:token').get(UserController.validateResetPasswordT
|
||||||
|
|
||||||
router.route('/reset-password/:token').post(UserController.updatePassword);
|
router.route('/reset-password/:token').post(UserController.updatePassword);
|
||||||
|
|
||||||
|
router.route('/account').put(UserController.updateSettings);
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
|
|
Loading…
Reference in a new issue