Web: Files: fixed rename folder action

This commit is contained in:
Nikita Gopienko 2021-05-27 16:16:30 +03:00
parent 792430a0c6
commit 3252372a77

View File

@ -19,17 +19,14 @@ export default function withContent(WrappedContent) {
class WithContent extends React.Component {
constructor(props) {
super(props);
let titleWithoutExt = getTitleWithoutExst(props.item);
if (props.fileActionId === -1) {
titleWithoutExt = this.getDefaultName(props.fileActionExt);
const { item, fileActionId, fileActionExt } = props;
let titleWithoutExt = getTitleWithoutExst(item);
if (fileActionId === -1 && item.id === fileActionId) {
titleWithoutExt = this.getDefaultName(fileActionExt);
}
this.state = {
itemTitle: titleWithoutExt,
//loading: false
};
this.state = { itemTitle: titleWithoutExt };
}
componentDidUpdate(prevProps) {
@ -38,11 +35,6 @@ export default function withContent(WrappedContent) {
const itemTitle = this.getDefaultName(fileActionExt);
this.setState({ itemTitle });
}
// if (fileAction) {
// if (fileActionId !== prevProps.fileActionId) {
// this.setState({ editingId: fileActionId });
// }
// }
}
getDefaultName = (format) => {