mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-29 16:37:56 +00:00
97 lines
2.5 KiB
JavaScript
97 lines
2.5 KiB
JavaScript
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';
|
|
|
|
const propTypes = {
|
|
toggle: PropTypes.func.isRequired,
|
|
groupID: PropTypes.string.isRequired,
|
|
onRepoChanged: PropTypes.func.isRequired,
|
|
};
|
|
|
|
class AddRepoDialog extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
repoName: '',
|
|
errMessage: '',
|
|
};
|
|
this.newInput = React.createRef();
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.newInput.focus();
|
|
this.newInput.setSelectionRange(0, 0);
|
|
}
|
|
|
|
handleSubmit = () => {
|
|
let isValid = this.validateName();
|
|
if (isValid) {
|
|
seafileAPI.sysAdminAddRepoInDepartment(this.props.groupID, this.state.repoName.trim()).then((res) => {
|
|
this.props.toggle();
|
|
this.props.onRepoChanged();
|
|
}).catch(error => {
|
|
let errorMsg = Utils.getErrorMsg(error);
|
|
this.setState({ errMessage: errorMsg });
|
|
});
|
|
}
|
|
}
|
|
|
|
validateName = () => {
|
|
let errMessage = '';
|
|
const name = this.state.repoName.trim();
|
|
if (!name.length) {
|
|
errMessage = gettext('Name is required');
|
|
this.setState({ errMessage: errMessage });
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
handleChange = (e) => {
|
|
this.setState({
|
|
repoName: e.target.value,
|
|
});
|
|
}
|
|
|
|
handleKeyPress = (e) => {
|
|
if (e.key === 'Enter') {
|
|
this.handleSubmit();
|
|
e.preventDefault();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Modal isOpen={true} toggle={this.props.toggle}>
|
|
<ModalHeader toggle={this.props.toggle}>{gettext('New Library')}</ModalHeader>
|
|
<ModalBody>
|
|
<Form>
|
|
<FormGroup>
|
|
<Label for="repoName">{gettext('Name')}</Label>
|
|
<Input
|
|
id="repoName"
|
|
onKeyPress={this.handleKeyPress}
|
|
value={this.state.repoName}
|
|
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>
|
|
);
|
|
}
|
|
}
|
|
|
|
AddRepoDialog.propTypes = propTypes;
|
|
|
|
export default AddRepoDialog;
|