import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import { Modal, ModalHeader, ModalBody, ModalFooter, } from 'reactstrap'; import { toastSuccess, toastError } from '../../util/apiNotification'; import { createSubscribedElement } from '../UnstatedUtils'; import AppContainer from '../../services/AppContainer'; import PersonalContainer from '../../services/PersonalContainer'; import LdapAuthTest from '../Admin/Security/LdapAuthTest'; class AssociateModal extends React.Component { constructor(props) { super(props); this.state = { username: '', password: '', }; this.onChangeUsername = this.onChangeUsername.bind(this); this.onChangePassword = this.onChangePassword.bind(this); this.onClickAddBtn = this.onClickAddBtn.bind(this); } /** * Change username */ onChangeUsername(username) { this.setState({ username }); } /** * Change password */ onChangePassword(password) { this.setState({ password }); } async onClickAddBtn() { const { t, personalContainer } = this.props; const { username, password } = this.state; try { await personalContainer.associateLdapAccount({ username, password }); this.props.onClose(); toastSuccess(t('security_setting.updated_general_security_setting')); } catch (err) { toastError(err); } try { await personalContainer.retrieveExternalAccounts(); } catch (err) { toastError(err); } } render() { const { t } = this.props; return ( { t('Create External Account') }
TBD
TBD
TBD
TBD
); } } const AssociateModalWrapper = (props) => { return createSubscribedElement(AssociateModal, props, [AppContainer, PersonalContainer]); }; AssociateModal.propTypes = { t: PropTypes.func.isRequired, // i18next appContainer: PropTypes.instanceOf(AppContainer).isRequired, personalContainer: PropTypes.instanceOf(PersonalContainer).isRequired, isOpen: PropTypes.bool.isRequired, onClose: PropTypes.func.isRequired, }; export default withTranslation()(AssociateModalWrapper);