1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-07 18:03:48 +00:00

Fix eslint warnings (#5635)

* 01 fix eslint warnings

* fix code warnings

* fix code warnings

* fix code warnings

* fix code warnings

* fix code warnings
This commit is contained in:
Michael An
2023-09-13 08:40:50 +08:00
committed by GitHub
parent d829ba5b23
commit 14ce391007
520 changed files with 4774 additions and 3438 deletions

View File

@@ -41,7 +41,7 @@ class RichMarkdownEditor extends React.Component {
isShowSidePanel: !this.state.isShowSidePanel,
isShowHelpPanel: false,
});
}
};
showHelpDialog = () => {
this.setState({isShowSidePanel: false, isShowHelpPanel: true});
@@ -53,21 +53,21 @@ class RichMarkdownEditor extends React.Component {
toggleCommentBtn = (isSupport = false) => {
this.setState({isSupportComment: isSupport});
}
};
onAddComment = () => {
this.setState({relistComment: this.state.relistComment + 1});
}
};
insertRepoFile = () => {
if (this.props.readOnly) return;
this.props.openDialogs && this.props.openDialogs('insert_file');
}
};
addLink = (fileName, url, isImage) => {
const editorRef = EditorContext.getEditorRef();
editorRef.addLink(fileName, url, isImage);
}
};
render() {
const hasSidePanel = true;
@@ -80,7 +80,7 @@ class RichMarkdownEditor extends React.Component {
return (
<div className='seafile-markdown-editor'>
<div className='markdown-editor-toolbar'>
<Toolbar
<Toolbar
hasSidePanel={hasSidePanel}
isShowSidePanel={isShowSidePanel}
toggleSidePanel={this.toggleSidePanel}
@@ -102,7 +102,7 @@ class RichMarkdownEditor extends React.Component {
</div>
<div className={`markdown-help-wrapper ${isShowHelpWrapper ? 'show' : ''}`} style={helpWrapperStyle}>
{isShowSidePanel && (
<SidePanel
<SidePanel
document={value}
fileInfo={this.props.fileInfo}
relistComment={this.state.relistComment}