mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-09 10:50:24 +00:00
117 lines
3.5 KiB
JavaScript
117 lines
3.5 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { gettext } from '../../utils/constants';
|
|
import { Utils, validateName } from '../../utils/utils';
|
|
import { Button, Modal, Input, ModalBody, ModalFooter, Alert } from 'reactstrap';
|
|
import SeahubModalHeader from '@/components/common/seahub-modal-header';
|
|
|
|
const propTypes = {
|
|
currentNode: PropTypes.object,
|
|
onRename: PropTypes.func.isRequired,
|
|
toggleCancel: PropTypes.func.isRequired,
|
|
checkDuplicatedName: PropTypes.func.isRequired,
|
|
};
|
|
|
|
class Rename extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
newName: '',
|
|
errMessage: '',
|
|
isSubmitBtnActive: false,
|
|
};
|
|
this.newInput = React.createRef();
|
|
}
|
|
|
|
UNSAFE_componentWillMount() {
|
|
this.setState({ newName: this.props.currentNode.object.name });
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { currentNode } = this.props;
|
|
this.changeState(currentNode);
|
|
}
|
|
|
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
|
this.changeState(nextProps.currentNode);
|
|
}
|
|
|
|
handleChange = (e) => {
|
|
if (!e.target.value.trim()) {
|
|
this.setState({ isSubmitBtnActive: false });
|
|
} else {
|
|
this.setState({ isSubmitBtnActive: true });
|
|
}
|
|
|
|
this.setState({ newName: e.target.value });
|
|
};
|
|
|
|
handleSubmit = () => {
|
|
let newName = this.state.newName.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.onRename(newName);
|
|
};
|
|
|
|
handleKeyDown = (e) => {
|
|
if (e.key === 'Enter') {
|
|
this.handleSubmit();
|
|
}
|
|
};
|
|
|
|
toggle = () => {
|
|
this.props.toggleCancel();
|
|
};
|
|
|
|
changeState = (currentNode) => {
|
|
let name = currentNode.object.name;
|
|
this.setState({ newName: name });
|
|
};
|
|
|
|
onAfterModelOpened = () => {
|
|
if (!this.newInput.current) return;
|
|
const { currentNode } = this.props;
|
|
let type = currentNode.object.type;
|
|
this.newInput.current.focus();
|
|
if (type === 'file') {
|
|
var endIndex = currentNode.object.name.lastIndexOf('.md');
|
|
this.newInput.current.setSelectionRange(0, endIndex, 'forward');
|
|
} else {
|
|
this.newInput.current.setSelectionRange(0, -1);
|
|
}
|
|
};
|
|
|
|
render() {
|
|
let type = this.props.currentNode.object.type;
|
|
return (
|
|
<Modal isOpen={true} toggle={this.toggle} onOpened={this.onAfterModelOpened}>
|
|
<SeahubModalHeader toggle={this.toggle}>{type === 'file' ? gettext('Rename File') : gettext('Rename Folder') }</SeahubModalHeader>
|
|
<ModalBody>
|
|
<p>{type === 'file' ? gettext('New file name') : gettext('New folder name')}</p>
|
|
<Input onKeyDown={this.handleKeyDown} innerRef={this.newInput} placeholder="newName" value={this.state.newName} onChange={this.handleChange} />
|
|
{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>
|
|
);
|
|
}
|
|
}
|
|
|
|
Rename.propTypes = propTypes;
|
|
|
|
export default Rename;
|