mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-28 11:41:18 +00:00
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap';
|
|
import { gettext } from '../../utils/constants';
|
|
import { seafileAPI } from '../../utils/seafile-api';
|
|
import { Utils } from '../../utils/utils';
|
|
|
|
const propTypes = {
|
|
orgID: PropTypes.string.isRequired,
|
|
email: PropTypes.string.isRequired,
|
|
name: PropTypes.string.isRequired,
|
|
updateName: PropTypes.func.isRequired,
|
|
toggleDialog: PropTypes.func.isRequired
|
|
};
|
|
|
|
class SetOrgUserName extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
inputValue: this.props.name,
|
|
submitBtnDisabled: false
|
|
};
|
|
}
|
|
|
|
handleInputChange = (e) => {
|
|
this.setState({
|
|
inputValue: e.target.value
|
|
});
|
|
}
|
|
|
|
formSubmit = () => {
|
|
const { orgID, email } = this.props;
|
|
const name = this.state.inputValue.trim();
|
|
|
|
this.setState({
|
|
submitBtnDisabled: true
|
|
});
|
|
|
|
// when name is '', api returns the previous name
|
|
// but newName needs to be ''
|
|
seafileAPI.orgAdminSetOrgUserName(orgID, email, name).then((res) => {
|
|
const newName = name ? res.data.name : '';
|
|
this.props.updateName(newName);
|
|
this.props.toggleDialog();
|
|
}).catch((error) => {
|
|
let errorMsg = Utils.getErrorMsg(error);
|
|
this.setState({
|
|
formErrorMsg: errorMsg,
|
|
submitBtnDisabled: false
|
|
});
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { inputValue, formErrorMsg, submitBtnDisabled } = this.state;
|
|
return (
|
|
<Modal isOpen={true} centered={true} toggle={this.props.toggleDialog}>
|
|
<ModalHeader toggle={this.props.toggleDialog}>{gettext('Set user name')}</ModalHeader>
|
|
<ModalBody>
|
|
<React.Fragment>
|
|
<input type="text" className="form-control" value={inputValue} onChange={this.handleInputChange} />
|
|
{formErrorMsg && <p className="error m-0 mt-2">{formErrorMsg}</p>}
|
|
</React.Fragment>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<button className="btn btn-secondary" onClick={this.props.toggleDialog}>{gettext('Cancel')}</button>
|
|
<button className="btn btn-primary" disabled={submitBtnDisabled} onClick={this.formSubmit}>{gettext('Submit')}</button>
|
|
</ModalFooter>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
SetOrgUserName.propTypes = propTypes;
|
|
|
|
export default SetOrgUserName;
|