| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- 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.onClickSubmit = this.onClickSubmit.bind(this);
- this.onChangeOldPassword = this.onChangeOldPassword.bind(this);
- }
- async onClickSubmit() {
- const { t, appContainer, personalContainer } = this.props;
- const { oldPassword, newPassword, newPasswordConfirm } = this.state;
- try {
- await appContainer.apiv3Put('/personal-setting/password', {
- oldPassword, newPassword, newPasswordConfirm,
- });
- this.setState({ oldPassword: '', newPassword: '', newPasswordConfirm: '' });
- await personalContainer.retrievePersonalData();
- 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, personalContainer } = this.props;
- const { newPassword, newPasswordConfirm } = this.state;
- const isIncorrectConfirmPassword = (newPassword !== newPasswordConfirm);
- return (
- <React.Fragment>
- {(!personalContainer.state.isPasswordSet) && <div className="alert alert-warning m-t-10">{ t('Password is not set') }</div>}
- <div className="container-fluid my-4">
- {(personalContainer.state.isPasswordSet)
- ? <h2 className="border-bottom">{t('personal_settings.update_password')}</h2>
- : <h2 className="border-bottom">{t('personal_settings.set_new_password')}</h2>}
- </div>
- {(personalContainer.state.isPasswordSet)
- && (
- <div className="row mb-3">
- <label htmlFor="oldPassword" className="col-md-3 text-md-right">{ t('personal_settings.current_password') }</label>
- <div className="col-md-5">
- <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-md-3 text-md-right">{t('personal_settings.new_password') }</label>
- <div className="col-md-5">
- <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 ${isIncorrectConfirmPassword && 'has-error'}`}>
- <label htmlFor="newPasswordConfirm" className="col-md-3 text-md-right">{t('personal_settings.new_password_confirm') }</label>
- <div className="col-md-5">
- <input
- className="form-control"
- type="password"
- name="newPasswordConfirm"
- value={this.state.newPasswordConfirm}
- onChange={(e) => { this.onChangeNewPasswordConfirm(e.target.value) }}
- />
- <p className="form-text text-muted">{t('page_register.form_help.password') }</p>
- </div>
- </div>
- <div className="row my-3">
- <div className="offset-5">
- <button
- type="button"
- className="btn btn-primary"
- onClick={this.onClickSubmit}
- disabled={this.state.retrieveError != null || isIncorrectConfirmPassword}
- >
- {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,
- personalContainer: PropTypes.instanceOf(PersonalContainer).isRequired,
- };
- export default withTranslation()(PasswordSettingsWrapper);
|