|
|
@@ -0,0 +1,146 @@
|
|
|
+
|
|
|
+import React from 'react';
|
|
|
+import PropTypes from 'prop-types';
|
|
|
+import { withTranslation } from 'react-i18next';
|
|
|
+
|
|
|
+
|
|
|
+import { toastSuccess, toastError } from '../../util/apiNotification';
|
|
|
+import { createSubscribedElement } from '../UnstatedUtils';
|
|
|
+
|
|
|
+import AppContainer from '../../services/AppContainer';
|
|
|
+import PersonalContainer from '../../services/PersonalContainer';
|
|
|
+
|
|
|
+
|
|
|
+class PasswordSettings extends React.Component {
|
|
|
+
|
|
|
+ constructor(appContainer) {
|
|
|
+ super();
|
|
|
+
|
|
|
+ this.appContainer = appContainer;
|
|
|
+
|
|
|
+ this.state = {
|
|
|
+ retrieveError: null,
|
|
|
+ oldPassword: '',
|
|
|
+ newPassword: '',
|
|
|
+ newPasswordConfirm: '',
|
|
|
+ };
|
|
|
+
|
|
|
+ this.retrievePassword();
|
|
|
+
|
|
|
+ this.retrievePassword = this.retrievePassword.bind(this);
|
|
|
+ this.onClickSubmit = this.onClickSubmit.bind(this);
|
|
|
+ this.onChangeOldPassword = this.onChangeOldPassword.bind(this);
|
|
|
+ }
|
|
|
+
|
|
|
+ async retrievePassword() {
|
|
|
+ try {
|
|
|
+ // TODO GW-1136 create apiV3 for updating password
|
|
|
+ }
|
|
|
+ catch (err) {
|
|
|
+ this.setState({ retrieveError: err });
|
|
|
+ toastError(err);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ async onClickSubmit() {
|
|
|
+ const { t } = this.props;
|
|
|
+
|
|
|
+ try {
|
|
|
+ // TODO GW-1136 create apiV3 for updating password
|
|
|
+ toastSuccess(t('toaster.update_successed', { target: t('personal_settings.update_password') }));
|
|
|
+ }
|
|
|
+ catch (err) {
|
|
|
+ toastError(err);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ onChangeOldPassword(oldPassword) {
|
|
|
+ this.setState({ oldPassword });
|
|
|
+ }
|
|
|
+
|
|
|
+ onChangeNewPassword(newPassword) {
|
|
|
+ this.setState({ newPassword });
|
|
|
+ }
|
|
|
+
|
|
|
+ onChangeNewPasswordConfirm(newPasswordConfirm) {
|
|
|
+ this.setState({ newPasswordConfirm });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ render() {
|
|
|
+ const { t } = this.props;
|
|
|
+
|
|
|
+ return (
|
|
|
+ <React.Fragment>
|
|
|
+ {(this.state.password == null) && <div className="alert alert-warning m-t-10">{ t('Password is not set') }</div>}
|
|
|
+ <div className="mb-5 container-fluid">
|
|
|
+ {(this.state.password == null)
|
|
|
+ ? <h2 className="border-bottom">{t('personal_settings.set_new_password')}</h2>
|
|
|
+ : <h2 className="border-bottom">{t('personal_settings.update_password')}</h2>}
|
|
|
+ </div>
|
|
|
+ {(this.state.password != null)
|
|
|
+ && (
|
|
|
+ <div className="row mb-3">
|
|
|
+ <label htmlFor="oldPassword" className="col-xs-3 text-right">{ t('personal_settings.current_password') }</label>
|
|
|
+ <div className="col-xs-6">
|
|
|
+ <input
|
|
|
+ className="form-control"
|
|
|
+ type="password"
|
|
|
+ name="oldPassword"
|
|
|
+ value={this.state.oldPassword}
|
|
|
+ onChange={(e) => { this.onChangeOldPassword(e.target.value) }}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ )}
|
|
|
+ <div className="row mb-3">
|
|
|
+ <label htmlFor="newPassword" className="col-xs-3 text-right">{t('personal_settings.new_password') }</label>
|
|
|
+ <div className="col-xs-6">
|
|
|
+ <input
|
|
|
+ className="form-control"
|
|
|
+ type="password"
|
|
|
+ name="newPassword"
|
|
|
+ value={this.state.newPassword}
|
|
|
+ onChange={(e) => { this.onChangeNewPassword(e.target.value) }}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div className="row mb-3">
|
|
|
+ <label htmlFor="newPasswordConfirm" className="col-xs-3 text-right">{t('personal_settings.new_password_confirm') }</label>
|
|
|
+ <div className="col-xs-6">
|
|
|
+ <input
|
|
|
+ className="form-control col-xs-4"
|
|
|
+ type="password"
|
|
|
+ name="newPasswordConfirm"
|
|
|
+ value={this.state.newPasswordConfirm}
|
|
|
+ onChange={(e) => { this.onChangeNewPasswordConfirm(e.target.value) }}
|
|
|
+ />
|
|
|
+
|
|
|
+ <p className="help-block">{t('page_register.form_help.password') }</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="row my-3">
|
|
|
+ <div className="col-xs-offset-4 col-xs-5">
|
|
|
+ <button type="button" className="btn btn-primary" onClick={this.onClickSubmit} disabled={this.state.retrieveError != null}>
|
|
|
+ {t('Update')}
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </React.Fragment>
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+const PasswordSettingsWrapper = (props) => {
|
|
|
+ return createSubscribedElement(PasswordSettings, props, [AppContainer, PersonalContainer]);
|
|
|
+};
|
|
|
+
|
|
|
+PasswordSettings.propTypes = {
|
|
|
+ t: PropTypes.func.isRequired, // i18next
|
|
|
+ appContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
|
+};
|
|
|
+
|
|
|
+export default withTranslation()(PasswordSettingsWrapper);
|