2024-05-15 11:57:30 +08:00
|
|
|
import React, { Component, Fragment } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2024-05-21 10:13:54 +08:00
|
|
|
import { SdocWikiViewer } from '@seafile/sdoc-editor';
|
2024-05-24 11:06:54 +08:00
|
|
|
import { gettext, repoID, siteRoot, username } from '../../utils/constants';
|
2024-05-15 11:57:30 +08:00
|
|
|
import Loading from '../../components/loading';
|
|
|
|
import { Utils } from '../../utils/utils';
|
|
|
|
import Account from '../../components/common/account';
|
2024-05-24 11:06:54 +08:00
|
|
|
import WikiTopNav from './top-nav';
|
2024-05-15 11:57:30 +08:00
|
|
|
|
|
|
|
const propTypes = {
|
|
|
|
path: PropTypes.string.isRequired,
|
|
|
|
pathExist: PropTypes.bool.isRequired,
|
|
|
|
isViewFile: PropTypes.bool.isRequired,
|
|
|
|
isDataLoading: PropTypes.bool.isRequired,
|
|
|
|
content: PropTypes.string,
|
|
|
|
permission: PropTypes.string,
|
|
|
|
lastModified: PropTypes.string,
|
|
|
|
latestContributor: PropTypes.string,
|
|
|
|
onMenuClick: PropTypes.func.isRequired,
|
|
|
|
onSearchedClick: PropTypes.func.isRequired,
|
|
|
|
onMainNavBarClick: PropTypes.func.isRequired,
|
|
|
|
onLinkClick: PropTypes.func.isRequired,
|
2024-05-17 15:09:41 +08:00
|
|
|
seadoc_access_token: PropTypes.string,
|
2024-05-17 16:46:12 +08:00
|
|
|
assets_url: PropTypes.string,
|
2024-05-24 11:06:54 +08:00
|
|
|
config: PropTypes.object,
|
|
|
|
currentPageId: PropTypes.string,
|
2024-05-15 11:57:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class MainPanel extends Component {
|
|
|
|
|
2024-05-17 15:09:41 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
docUuid: '',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2024-05-15 11:57:30 +08:00
|
|
|
onMenuClick = () => {
|
|
|
|
this.props.onMenuClick();
|
|
|
|
};
|
|
|
|
|
|
|
|
onEditClick = (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
let url = siteRoot + 'lib/' + repoID + '/file' + this.props.path + '?mode=edit';
|
|
|
|
window.open(url);
|
|
|
|
};
|
|
|
|
|
|
|
|
onMainNavBarClick = (e) => {
|
|
|
|
let path = Utils.getEventData(e, 'path');
|
|
|
|
this.props.onMainNavBarClick(path);
|
|
|
|
};
|
|
|
|
|
|
|
|
renderNavPath = () => {
|
|
|
|
let paths = this.props.path.split('/');
|
|
|
|
let nodePath = '';
|
|
|
|
let pathElem = paths.map((item, index) => {
|
|
|
|
if (item === '') {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (index === (paths.length - 1)) {
|
|
|
|
return (
|
|
|
|
<Fragment key={index}>
|
|
|
|
<span className="path-split">/</span>
|
|
|
|
<span className="path-file-name">{item}</span>
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
nodePath += '/' + item;
|
|
|
|
return (
|
|
|
|
<Fragment key={index} >
|
|
|
|
<span className="path-split">/</span>
|
|
|
|
<a
|
|
|
|
className="path-link"
|
|
|
|
data-path={nodePath}
|
|
|
|
onClick={this.onMainNavBarClick}>
|
|
|
|
{item}
|
|
|
|
</a>
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return pathElem;
|
|
|
|
};
|
|
|
|
|
2024-05-17 15:09:41 +08:00
|
|
|
static getDerivedStateFromProps(props, state) {
|
2024-05-23 17:16:44 +08:00
|
|
|
const { seadoc_access_token } = props;
|
2024-05-17 15:09:41 +08:00
|
|
|
const config = window.app.config;
|
|
|
|
const pageOptions = window.app.pageOptions;
|
|
|
|
const { assetsUrl, seadocServerUrl: sdocServer, } = window.wiki.config;
|
|
|
|
window.seafile = {
|
|
|
|
...window.seafile, // need docUuid
|
|
|
|
...config,
|
|
|
|
...pageOptions,
|
|
|
|
sdocServer,
|
2024-05-17 16:46:12 +08:00
|
|
|
assetsUrl: assetsUrl || props.assets_url,
|
2024-05-17 15:09:41 +08:00
|
|
|
accessToken: seadoc_access_token,
|
|
|
|
serviceUrl: config.serviceURL,
|
2024-05-17 16:46:12 +08:00
|
|
|
assets_url: config.assetsUrl,
|
2024-05-17 15:09:41 +08:00
|
|
|
};
|
|
|
|
return { ...props, docUuid: window.seafile.docUuid };
|
|
|
|
}
|
2024-05-15 11:57:30 +08:00
|
|
|
|
|
|
|
render() {
|
|
|
|
const errMessage = (<div className="message err-tip">{gettext('Folder does not exist.')}</div>);
|
2024-05-22 15:53:30 +08:00
|
|
|
const { content, permission, pathExist, isDataLoading, isViewFile } = this.props;
|
|
|
|
const isViewingFile = pathExist && !isDataLoading && isViewFile;
|
2024-05-17 15:09:41 +08:00
|
|
|
const editorContent = content && JSON.parse(content);
|
2024-05-23 17:16:44 +08:00
|
|
|
const isReadOnly = !(permission === 'rw');
|
2024-05-15 11:57:30 +08:00
|
|
|
return (
|
2024-05-24 11:06:54 +08:00
|
|
|
<div className="wiki2-main-panel">
|
2024-05-15 11:57:30 +08:00
|
|
|
<div className="main-panel-hide hide">{this.props.content}</div>
|
2024-05-24 11:06:54 +08:00
|
|
|
<div className='wiki2-main-panel-north'>
|
|
|
|
<WikiTopNav
|
|
|
|
config={this.props.config}
|
|
|
|
currentPageId={this.props.currentPageId}
|
|
|
|
/>
|
|
|
|
{username &&
|
|
|
|
<Account />
|
2024-05-15 11:57:30 +08:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
<div className="main-panel-center">
|
|
|
|
<div className={`cur-view-content ${isViewingFile ? 'o-hidden' : ''}`}>
|
|
|
|
{!this.props.pathExist && errMessage}
|
|
|
|
{this.props.pathExist && this.props.isDataLoading && <Loading />}
|
2024-05-17 16:46:12 +08:00
|
|
|
{isViewingFile && Utils.isSdocFile(this.props.path) && (
|
2024-05-21 10:13:54 +08:00
|
|
|
<SdocWikiViewer
|
2024-05-17 15:09:41 +08:00
|
|
|
document={editorContent}
|
|
|
|
showOutline={false}
|
|
|
|
showToolbar={false}
|
|
|
|
docUuid={this.state.docUuid}
|
2024-05-21 18:53:03 +08:00
|
|
|
isWikiReadOnly={isReadOnly}
|
2024-05-15 11:57:30 +08:00
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MainPanel.propTypes = propTypes;
|
|
|
|
|
|
|
|
export default MainPanel;
|