mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-21 03:18:23 +00:00
72 lines
1.7 KiB
JavaScript
72 lines
1.7 KiB
JavaScript
![]() |
import { slug, repoID, siteRoot } from '../components/constance';
|
||
|
import { SeafileAPI } from 'seafile-js';
|
||
|
import cookie from 'react-cookies';
|
||
|
|
||
|
let seafileAPI = new SeafileAPI();
|
||
|
let xcsrfHeaders = cookie.load('sfcsrftoken');
|
||
|
seafileAPI.initForSeahubUsage({ siteRoot, xcsrfHeaders });
|
||
|
|
||
|
class EditorUtilities {
|
||
|
|
||
|
getFiles() {
|
||
|
return seafileAPI.listWikiDir(slug, "/").then(items => {
|
||
|
const files = items.data.dir_file_list.map(item => {
|
||
|
return {
|
||
|
name: item.name,
|
||
|
type: item.type === 'dir' ? 'dir' : 'file',
|
||
|
isExpanded: item.type === 'dir' ? true : false,
|
||
|
parent_path: item.parent_dir,
|
||
|
last_update_time: item.last_update_time,
|
||
|
size: item.size
|
||
|
}
|
||
|
})
|
||
|
return files;
|
||
|
})
|
||
|
}
|
||
|
|
||
|
createFile(filePath) {
|
||
|
return seafileAPI.createFile(repoID, filePath)
|
||
|
}
|
||
|
|
||
|
deleteFile(filePath) {
|
||
|
return seafileAPI.deleteFile(repoID, filePath)
|
||
|
}
|
||
|
|
||
|
renameFile(filePath, newFileName) {
|
||
|
return seafileAPI.renameFile(repoID, filePath, newFileName)
|
||
|
}
|
||
|
|
||
|
createDir(dirPath) {
|
||
|
return seafileAPI.createDir(repoID, dirPath)
|
||
|
}
|
||
|
|
||
|
deleteDir(dirPath) {
|
||
|
return seafileAPI.deleteDir(repoID, dirPath)
|
||
|
}
|
||
|
|
||
|
renameDir(dirPath, newDirName) {
|
||
|
return seafileAPI.renameDir(repoID, dirPath, newDirName)
|
||
|
}
|
||
|
|
||
|
getWikiFileContent(slug, filePath) {
|
||
|
return seafileAPI.getWikiFileContent(slug, filePath);
|
||
|
}
|
||
|
|
||
|
getSource() {
|
||
|
return seafileAPI.getSource();
|
||
|
}
|
||
|
|
||
|
searchFiles(queryData,cancelToken) {
|
||
|
return seafileAPI.searchFiles(queryData,cancelToken);
|
||
|
}
|
||
|
|
||
|
getAccountInfo() {
|
||
|
return seafileAPI.getAccountInfo();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
const editorUtilities = new EditorUtilities();
|
||
|
|
||
|
export default editorUtilities;
|