mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-15 16:04:01 +00:00
108 lines
3.2 KiB
JavaScript
108 lines
3.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Button, Modal, Input, ModalBody, ModalFooter, Form, FormGroup, Label, Alert } from 'reactstrap';
|
|
import { gettext } from '../../utils/constants';
|
|
import { Utils, validateName } from '../../utils/utils';
|
|
import SeahubModalHeader from '@/components/common/seahub-modal-header';
|
|
|
|
const propTypes = {
|
|
fileType: PropTypes.string,
|
|
parentPath: PropTypes.string.isRequired,
|
|
onAddFolder: PropTypes.func.isRequired,
|
|
checkDuplicatedName: PropTypes.func.isRequired,
|
|
addFolderCancel: PropTypes.func.isRequired,
|
|
};
|
|
|
|
class CreateForder extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
parentPath: '',
|
|
childName: '',
|
|
errMessage: '',
|
|
isSubmitBtnActive: false,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
let parentPath = this.props.parentPath;
|
|
if (parentPath[parentPath.length - 1] === '/') { // mainPanel
|
|
this.setState({ parentPath: parentPath });
|
|
} else {
|
|
this.setState({ parentPath: parentPath + '/' }); // sidePanel
|
|
}
|
|
}
|
|
|
|
handleChange = (e) => {
|
|
if (!e.target.value.trim()) {
|
|
this.setState({ isSubmitBtnActive: false });
|
|
} else {
|
|
this.setState({ isSubmitBtnActive: true });
|
|
}
|
|
|
|
this.setState({ childName: e.target.value });
|
|
};
|
|
|
|
handleSubmit = () => {
|
|
if (!this.state.isSubmitBtnActive) {
|
|
return;
|
|
}
|
|
let newName = this.state.childName.trim();
|
|
let { isValid, errMessage } = validateName(newName);
|
|
if (!isValid) {
|
|
this.setState({ errMessage });
|
|
return;
|
|
}
|
|
let isDuplicated = this.props.checkDuplicatedName(newName);
|
|
if (isDuplicated) {
|
|
let errMessage = gettext('The name "{name}" is already taken. Please choose a different name.');
|
|
errMessage = errMessage.replace('{name}', Utils.HTMLescape(newName));
|
|
this.setState({ errMessage });
|
|
return;
|
|
}
|
|
this.props.onAddFolder(this.state.parentPath + newName);
|
|
};
|
|
|
|
handleKeyDown = (e) => {
|
|
if (e.key === 'Enter') {
|
|
this.handleSubmit();
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
|
|
toggle = () => {
|
|
this.props.addFolderCancel();
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<Modal isOpen={true} toggle={this.toggle} autoFocus={false}>
|
|
<SeahubModalHeader toggle={this.toggle}>{gettext('New Folder')}</SeahubModalHeader>
|
|
<ModalBody>
|
|
<Form>
|
|
<FormGroup>
|
|
<Label for="folderName">{gettext('Name')}</Label>
|
|
<Input
|
|
id="folderName"
|
|
value={this.state.childName}
|
|
onKeyDown={this.handleKeyDown}
|
|
onChange={this.handleChange}
|
|
autoFocus={true}
|
|
/>
|
|
</FormGroup>
|
|
</Form>
|
|
{this.state.errMessage && <Alert color="danger" className="mt-2">{this.state.errMessage}</Alert>}
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button color="secondary" onClick={this.toggle}>{gettext('Cancel')}</Button>
|
|
<Button color="primary" onClick={this.handleSubmit} disabled={!this.state.isSubmitBtnActive}>{gettext('Submit')}</Button>
|
|
</ModalFooter>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
CreateForder.propTypes = propTypes;
|
|
|
|
export default CreateForder;
|