1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-16 15:19:06 +00:00

Optimized search module (#2397)

* updating fileRecord api and adding more component

* modify search module

* add translate
This commit is contained in:
shanshuirenjia
2018-09-25 15:10:23 +08:00
committed by Daniel Pan
parent 5ce1b15fb2
commit 6d65771ddd
7 changed files with 69 additions and 11 deletions

View File

@@ -31,7 +31,7 @@ class SidePanel extends React.Component {
}
componentDidMount() {
editUtilties.getFileHistoryRecord(filePath, 1, PER_PAGE).then(res => {
editUtilties.listFileHistoryRecords(filePath, 1, PER_PAGE).then(res => {
this.initResultState(res.data);
document.addEventListener('click', this.onHideContextMenu);
});
@@ -42,7 +42,7 @@ class SidePanel extends React.Component {
}
refershFileList() {
editUtilties.getFileHistoryRecord(filePath, 1, PER_PAGE).then(res => {
editUtilties.listFileHistoryRecords(filePath, 1, PER_PAGE).then(res => {
this.initResultState(res.data);
});
}
@@ -100,7 +100,7 @@ class SidePanel extends React.Component {
currentPage: currentPage,
isReloadingData: true,
});
editUtilties.getFileHistoryRecord(filePath, currentPage, PER_PAGE).then(res => {
editUtilties.listFileHistoryRecords(filePath, currentPage, PER_PAGE).then(res => {
this.updateResultState(res.data);
this.setState({
isReloadingData: false