1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 07:27:04 +00:00

admin rename department (#4849)

* admin rename department

* update Code comment

* update group name validate msg

* [department] fixup: added 'add member' back

* [department] rename: fixup & improvements

* [system admin] departments: added 'rename' & 'op menu' for dept

Co-authored-by: lian <lian@seafile.com>
Co-authored-by: llj <lingjun.li1@gmail.com>
This commit is contained in:
lian
2021-03-25 21:41:55 +08:00
committed by GitHub
parent 1d108ae828
commit 855b457e5f
5 changed files with 318 additions and 67 deletions

View File

@@ -0,0 +1,103 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Button, Modal, ModalHeader, ModalBody, ModalFooter, Input, Form, FormGroup, Label } from 'reactstrap';
import { gettext } from '../../../utils/constants';
import { seafileAPI } from '../../../utils/seafile-api';
import { Utils } from '../../../utils/utils';
import toaster from '../../../components/toast';
const propTypes = {
groupID: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number
]).isRequired,
name: PropTypes.string.isRequired,
toggle: PropTypes.func.isRequired,
onDepartmentNameChanged: PropTypes.func.isRequired
};
class RenameDepartmentDialog extends React.Component {
constructor(props) {
super(props);
this.state = {
departmentName: this.props.name,
errMessage: ''
};
this.newInput = React.createRef();
}
componentDidMount() {
this.newInput.select();
this.newInput.focus();
}
handleSubmit = () => {
let isValid = this.validateName();
if (isValid) {
seafileAPI.sysAdminRenameDepartment(this.props.groupID, this.state.departmentName.trim()).then((res) => {
this.props.toggle();
this.props.onDepartmentNameChanged(res.data);
toaster.success(gettext('Success'));
}).catch(error => {
let errorMsg = Utils.getErrorMsg(error);
this.setState({ errMessage: errorMsg });
});
}
}
validateName = () => {
let errMessage = '';
const name = this.state.departmentName.trim();
if (!name.length) {
errMessage = gettext('Name is required');
this.setState({ errMessage: errMessage });
return false;
}
return true;
}
handleChange = (e) => {
this.setState({
departmentName: e.target.value
});
}
handleKeyPress = (e) => {
if (e.key === 'Enter') {
this.handleSubmit();
e.preventDefault();
}
}
render() {
let header = gettext('Rename Department');
return (
<Modal isOpen={true} toggle={this.props.toggle}>
<ModalHeader toggle={this.props.toggle}>{header}</ModalHeader>
<ModalBody>
<Form>
<FormGroup>
<Label for="departmentName">{gettext('Name')}</Label>
<Input
id="departmentName"
onKeyPress={this.handleKeyPress}
value={this.state.departmentName}
onChange={this.handleChange}
innerRef={input => {this.newInput = input;}}
/>
</FormGroup>
</Form>
{this.state.errMessage && <p className="error">{this.state.errMessage}</p>}
</ModalBody>
<ModalFooter>
<Button color="primary" onClick={this.handleSubmit}>{gettext('Submit')}</Button>
</ModalFooter>
</Modal>
);
}
}
RenameDepartmentDialog.propTypes = propTypes;
export default RenameDepartmentDialog;