mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-19 09:37:51 +00:00
475 lines
14 KiB
JavaScript
475 lines
14 KiB
JavaScript
import React, { Component } from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import moment from 'moment';
|
|
import MediaQuery from 'react-responsive';
|
|
import { Modal } from 'reactstrap';
|
|
import { slug, siteRoot, initialPath, isDir, sharedToken, hasIndex } from './utils/constants';
|
|
import { Utils } from './utils/utils';
|
|
import { seafileAPI } from './utils/seafile-api';
|
|
import Dirent from './models/dirent';
|
|
import TreeNode from './components/tree-view/tree-node';
|
|
import treeHelper from './components/tree-view/tree-helper';
|
|
import SidePanel from './pages/wiki/side-panel';
|
|
import MainPanel from './pages/wiki/main-panel';
|
|
|
|
import './assets/css/fa-solid.css';
|
|
import './assets/css/fa-regular.css';
|
|
import './assets/css/fontawesome.css';
|
|
import './css/layout.css';
|
|
import './css/side-panel.css';
|
|
import './css/wiki.css';
|
|
import './css/toolbar.css';
|
|
import './css/search.css';
|
|
|
|
|
|
class Wiki extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
path: '',
|
|
pathExist: true,
|
|
closeSideBar: false,
|
|
isViewFile: true,
|
|
isDataLoading: true,
|
|
direntList: [],
|
|
content: '',
|
|
permission: '',
|
|
lastModified: '',
|
|
latestContributor: '',
|
|
isTreeDataLoading: true,
|
|
treeData: treeHelper.buildTree(),
|
|
currentNode: null,
|
|
indexNode: null,
|
|
indexContent: '',
|
|
};
|
|
|
|
window.onpopstate = this.onpopstate;
|
|
this.indexPath = '/index.md';
|
|
this.homePath = '/home.md';
|
|
}
|
|
|
|
componentWillMount() {
|
|
if (!Utils.isDesktop()) {
|
|
this.setState({ closeSideBar: true });
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.loadWikiData(initialPath);
|
|
}
|
|
|
|
loadWikiData = (initialPath) => {
|
|
this.loadSidePanel(initialPath);
|
|
|
|
if (isDir === 'None') {
|
|
if (initialPath === '/home.md') {
|
|
this.showDir('/');
|
|
} else {
|
|
this.setState({pathExist: false});
|
|
let fileUrl = siteRoot + 'published/' + slug + Utils.encodePath(initialPath);
|
|
window.history.pushState({url: fileUrl, path: initialPath}, initialPath, fileUrl);
|
|
}
|
|
} else if (isDir === 'True') {
|
|
this.showDir(initialPath);
|
|
} else if (isDir === 'False') {
|
|
this.showFile(initialPath);
|
|
}
|
|
}
|
|
|
|
loadSidePanel = (initialPath) => {
|
|
|
|
if (hasIndex) {
|
|
this.loadIndexNode();
|
|
} else {
|
|
if (isDir === 'None') {
|
|
initialPath = '/';
|
|
this.loadNodeAndParentsByPath('/');
|
|
} else {
|
|
this.loadNodeAndParentsByPath(initialPath);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
loadIndexNode = () => {
|
|
seafileAPI.listWikiDir(slug, '/').then(res => {
|
|
let tree = this.state.treeData;
|
|
this.addFirstResponseListToNode(res.data.dirent_list, tree.root);
|
|
let indexNode = tree.getNodeByPath(this.indexPath);
|
|
seafileAPI.getWikiFileContent(slug, indexNode.path).then(res => {
|
|
this.setState({
|
|
treeData: tree,
|
|
indexNode: indexNode,
|
|
indexContent: res.data.content,
|
|
isTreeDataLoading: false,
|
|
});
|
|
});
|
|
}).catch(() => {
|
|
this.setState({isLoadFailed: true});
|
|
});
|
|
}
|
|
|
|
showDir = (dirPath) => {
|
|
this.loadDirentList(dirPath);
|
|
|
|
// update location url
|
|
let fileUrl = siteRoot + 'published/' + slug + Utils.encodePath(dirPath);
|
|
window.history.pushState({url: fileUrl, path: dirPath}, dirPath, fileUrl);
|
|
}
|
|
|
|
showFile = (filePath) => {
|
|
this.setState({
|
|
isDataLoading: true,
|
|
isViewFile: true,
|
|
path: filePath,
|
|
});
|
|
|
|
seafileAPI.getWikiFileContent(slug, filePath).then(res => {
|
|
let data = res.data;
|
|
this.setState({
|
|
isDataLoading: false,
|
|
content: data.content,
|
|
permission: data.permission,
|
|
lastModified: moment.unix(data.last_modified).fromNow(),
|
|
latestContributor: data.latest_contributor,
|
|
});
|
|
});
|
|
|
|
const hash = window.location.hash;
|
|
let fileUrl = siteRoot + 'published/' + slug + Utils.encodePath(filePath) + hash;
|
|
if (filePath === '/home.md') {
|
|
window.history.replaceState({url: fileUrl, path: filePath}, filePath, fileUrl);
|
|
} else {
|
|
window.history.pushState({url: fileUrl, path: filePath}, filePath, fileUrl);
|
|
}
|
|
}
|
|
|
|
loadDirentList = (dirPath) => {
|
|
this.setState({isDataLoading: true});
|
|
seafileAPI.listWikiDir(slug, dirPath).then(res => {
|
|
let direntList = res.data.dirent_list.map(item => {
|
|
let dirent = new Dirent(item);
|
|
return dirent;
|
|
});
|
|
if (dirPath === '/') {
|
|
direntList = direntList.filter(item => {
|
|
if (item.type === 'dir') {
|
|
let name = item.name.toLowerCase();
|
|
return name !== 'drafts' && name !== 'images' && name !== 'downloads';
|
|
}
|
|
return true;
|
|
});
|
|
}
|
|
direntList = Utils.sortDirents(direntList, 'name', 'asc');
|
|
this.setState({
|
|
path: dirPath,
|
|
isViewFile: false,
|
|
direntList: direntList,
|
|
isDataLoading: false,
|
|
});
|
|
}).catch(() => {
|
|
this.setState({isLoadFailed: true});
|
|
});
|
|
}
|
|
|
|
loadTreeNodeByPath = (path) => {
|
|
let tree = this.state.treeData.clone();
|
|
let node = tree.getNodeByPath(path);
|
|
if (!node.isLoaded) {
|
|
seafileAPI.listWikiDir(slug, node.path).then(res => {
|
|
this.addResponseListToNode(res.data.dirent_list, node);
|
|
let parentNode = tree.getNodeByPath(node.parentNode.path);
|
|
parentNode.isExpanded = true;
|
|
this.setState({
|
|
treeData: tree,
|
|
currentNode: node
|
|
});
|
|
});
|
|
} else {
|
|
let parentNode = tree.getNodeByPath(node.parentNode.path);
|
|
parentNode.isExpanded = true;
|
|
this.setState({treeData: tree, currentNode: node}); //tree
|
|
}
|
|
}
|
|
|
|
loadNodeAndParentsByPath = (path) => {
|
|
let tree = this.state.treeData.clone();
|
|
if (Utils.isMarkdownFile(path)) {
|
|
path = Utils.getDirName(path);
|
|
}
|
|
seafileAPI.listWikiDir(slug, path, true).then(res => {
|
|
let direntList = res.data.dirent_list;
|
|
let results = {};
|
|
for (let i = 0; i < direntList.length; i++) {
|
|
let object = direntList[i];
|
|
let key = object.parent_dir;
|
|
if (!results[key]) {
|
|
results[key] = [];
|
|
}
|
|
results[key].push(object);
|
|
}
|
|
for (let key in results) {
|
|
let node = tree.getNodeByPath(key);
|
|
if (!node.isLoaded && node.path === '/') {
|
|
this.addFirstResponseListToNode(results[key], node);
|
|
} else if (!node.isLoaded) {
|
|
this.addResponseListToNode(results[key], node);
|
|
}
|
|
}
|
|
this.setState({
|
|
isTreeDataLoading: false,
|
|
treeData: tree
|
|
});
|
|
}).catch(() => {
|
|
this.setState({isLoadFailed: true});
|
|
});
|
|
}
|
|
|
|
onLinkClick = (link) => {
|
|
const url = link;
|
|
if (Utils.isWikiInternalMarkdownLink(url, slug)) {
|
|
let path = Utils.getPathFromWikiInternalMarkdownLink(url, slug);
|
|
this.showFile(path);
|
|
} else if (Utils.isWikiInternalDirLink(url, slug)) {
|
|
let path = Utils.getPathFromWikiInternalDirLink(url, slug);
|
|
this.showDir(path);
|
|
} else {
|
|
window.location.href = url;
|
|
}
|
|
if (!this.state.closeSideBar) {
|
|
this.setState({ closeSideBar: true });
|
|
}
|
|
}
|
|
|
|
onpopstate = (event) => {
|
|
if (event.state && event.state.path) {
|
|
let path = event.state.path;
|
|
if (Utils.isMarkdownFile(path)) {
|
|
this.showFile(path);
|
|
} else {
|
|
this.loadDirentList(path);
|
|
this.setState({
|
|
path: path,
|
|
isViewFile: false
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
onSearchedClick = (item) => {
|
|
let path = item.is_dir ? item.path.slice(0, item.path.length - 1) : item.path;
|
|
if (this.state.currentPath === path) {
|
|
return;
|
|
}
|
|
|
|
// load sidePanel
|
|
let index = -1;
|
|
let paths = Utils.getPaths(path);
|
|
for (let i = 0; i < paths.length; i++) {
|
|
let node = this.state.treeData.getNodeByPath(node);
|
|
if (!node) {
|
|
index = i;
|
|
break;
|
|
}
|
|
}
|
|
if (index === -1) { // all the data has been loaded already.
|
|
let tree = this.state.treeData.clone();
|
|
let node = tree.getNodeByPath(item.path);
|
|
treeHelper.expandNode(node);
|
|
this.setState({treeData: tree});
|
|
} else {
|
|
this.loadNodeAndParentsByPath(path);
|
|
}
|
|
|
|
// load mainPanel
|
|
if (item.is_dir) {
|
|
this.showDir(path);
|
|
} else {
|
|
if (Utils.isMarkdownFile(path)) {
|
|
this.showFile(path);
|
|
} else {
|
|
let url = siteRoot + 'd/' + sharedToken + '/files/?p=' + Utils.encodePath(path);
|
|
let newWindow = window.open('about:blank');
|
|
newWindow.location.href = url;
|
|
}
|
|
}
|
|
}
|
|
|
|
onMenuClick = () => {
|
|
this.setState({closeSideBar: !this.state.closeSideBar,});
|
|
}
|
|
|
|
onMainNavBarClick = (nodePath) => {
|
|
let tree = this.state.treeData.clone();
|
|
let node = tree.getNodeByPath(nodePath);
|
|
tree.expandNode(node);
|
|
this.setState({treeData: tree, currentNode: node});
|
|
this.showDir(node.path);
|
|
}
|
|
|
|
onDirentClick = (dirent) => {
|
|
let direntPath = Utils.joinPath(this.state.path, dirent.name);
|
|
if (dirent.isDir()) { // is dir
|
|
this.loadTreeNodeByPath(direntPath);
|
|
this.showDir(direntPath);
|
|
} else { // is file
|
|
if (Utils.isMarkdownFile(direntPath)) {
|
|
this.showFile(direntPath);
|
|
} else {
|
|
const w=window.open('about:blank');
|
|
const url = siteRoot + 'd/' + sharedToken + '/files/?p=' + Utils.encodePath(direntPath);
|
|
w.location.href = url;
|
|
}
|
|
}
|
|
}
|
|
|
|
onCloseSide = () => {
|
|
this.setState({closeSideBar: !this.state.closeSideBar});
|
|
}
|
|
|
|
onNodeClick = (node) => {
|
|
if (!this.state.pathExist) {
|
|
this.setState({pathExist: true});
|
|
}
|
|
|
|
if (node.object.isDir()) {
|
|
if (!node.isLoaded) {
|
|
let tree = this.state.treeData.clone();
|
|
node = tree.getNodeByPath(node.path);
|
|
seafileAPI.listWikiDir(slug, node.path).then(res => {
|
|
this.addResponseListToNode(res.data.dirent_list, node);
|
|
tree.collapseNode(node);
|
|
this.setState({treeData: tree});
|
|
});
|
|
}
|
|
if (node.path === this.state.path) {
|
|
if (node.isExpanded) {
|
|
let tree = treeHelper.collapseNode(this.state.treeData, node);
|
|
this.setState({treeData: tree});
|
|
} else {
|
|
let tree = this.state.treeData.clone();
|
|
node = tree.getNodeByPath(node.path);
|
|
tree.expandNode(node);
|
|
this.setState({treeData: tree});
|
|
}
|
|
}
|
|
}
|
|
|
|
if (node.path === this.state.path ) {
|
|
return;
|
|
}
|
|
|
|
if (node.object.isDir()) { // isDir
|
|
this.showDir(node.path);
|
|
} else {
|
|
if (Utils.isMarkdownFile(node.path)) {
|
|
if (node.path !== this.state.path) {
|
|
this.showFile(node.path);
|
|
}
|
|
} else {
|
|
const w = window.open('about:blank');
|
|
const url = siteRoot + 'd/' + sharedToken + '/files/?p=' + Utils.encodePath(node.path);
|
|
w.location.href = url;
|
|
}
|
|
}
|
|
}
|
|
|
|
onNodeCollapse = (node) => {
|
|
let tree = treeHelper.collapseNode(this.state.treeData, node);
|
|
this.setState({treeData: tree});
|
|
}
|
|
|
|
onNodeExpanded = (node) => {
|
|
let tree = this.state.treeData.clone();
|
|
node = tree.getNodeByPath(node.path);
|
|
if (!node.isLoaded) {
|
|
seafileAPI.listWikiDir(slug, node.path).then(res => {
|
|
this.addResponseListToNode(res.data.dirent_list, node);
|
|
this.setState({treeData: tree});
|
|
});
|
|
} else {
|
|
tree.expandNode(node);
|
|
this.setState({treeData: tree});
|
|
}
|
|
}
|
|
|
|
addFirstResponseListToNode = (list, node) => {
|
|
node.isLoaded = true;
|
|
node.isExpanded = true;
|
|
let direntList = list.map(item => {
|
|
return new Dirent(item);
|
|
});
|
|
direntList = direntList.filter(item => {
|
|
if (item.type === 'dir') {
|
|
let name = item.name.toLowerCase();
|
|
return name !== 'drafts' && name !== 'images' && name !== 'downloads';
|
|
}
|
|
return true;
|
|
});
|
|
direntList = Utils.sortDirents(direntList, 'name', 'asc');
|
|
|
|
let nodeList = direntList.map(object => {
|
|
return new TreeNode({object});
|
|
});
|
|
node.addChildren(nodeList);
|
|
}
|
|
|
|
addResponseListToNode = (list, node) => {
|
|
node.isLoaded = true;
|
|
node.isExpanded = true;
|
|
let direntList = list.map(item => {
|
|
return new Dirent(item);
|
|
});
|
|
direntList = Utils.sortDirents(direntList, 'name', 'asc');
|
|
|
|
let nodeList = direntList.map(object => {
|
|
return new TreeNode({object});
|
|
});
|
|
node.addChildren(nodeList);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div id="main" className="wiki-main">
|
|
<SidePanel
|
|
isTreeDataLoading={this.state.isTreeDataLoading}
|
|
closeSideBar={this.state.closeSideBar}
|
|
currentPath={this.state.path}
|
|
treeData={this.state.treeData}
|
|
indexNode={this.state.indexNode}
|
|
indexContent={this.state.indexContent}
|
|
onCloseSide={this.onCloseSide}
|
|
onNodeClick={this.onNodeClick}
|
|
onNodeCollapse={this.onNodeCollapse}
|
|
onNodeExpanded={this.onNodeExpanded}
|
|
onLinkClick={this.onLinkClick}
|
|
/>
|
|
<MainPanel
|
|
path={this.state.path}
|
|
pathExist={this.state.pathExist}
|
|
isViewFile={this.state.isViewFile}
|
|
isDataLoading={this.state.isDataLoading}
|
|
content={this.state.content}
|
|
permission={this.state.permission}
|
|
lastModified={this.state.lastModified}
|
|
latestContributor={this.state.latestContributor}
|
|
direntList={this.state.direntList}
|
|
onLinkClick={this.onLinkClick}
|
|
onMenuClick={this.onMenuClick}
|
|
onSearchedClick={this.onSearchedClick}
|
|
onMainNavBarClick={this.onMainNavBarClick}
|
|
onDirentClick={this.onDirentClick}
|
|
/>
|
|
<MediaQuery query="(max-width: 767.8px)">
|
|
<Modal isOpen={!this.state.closeSideBar} toggle={this.onCloseSide} contentClassName="d-none"></Modal>
|
|
</MediaQuery>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ReactDOM.render (
|
|
<Wiki />,
|
|
document.getElementById('wrapper')
|
|
);
|