1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 15:53:28 +00:00
Files
seahub/frontend/src/pages/wiki2/main-panel.js

145 lines
4.3 KiB
JavaScript
Raw Normal View History

import React, { Component, Fragment } from 'react';
import PropTypes from 'prop-types';
import { SdocWikiViewer } from '@seafile/sdoc-editor';
import { gettext, repoID, siteRoot, username } from '../../utils/constants';
import Loading from '../../components/loading';
import { Utils } from '../../utils/utils';
import Account from '../../components/common/account';
import WikiTopNav from './top-nav';
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,
config: PropTypes.object,
currentPageId: PropTypes.string,
};
class MainPanel extends Component {
2024-05-17 15:09:41 +08:00
constructor(props) {
super(props);
this.state = {
docUuid: '',
};
}
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 };
}
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');
return (
<div className="wiki2-main-panel">
<div className="main-panel-hide hide">{this.props.content}</div>
<div className='wiki2-main-panel-north'>
<WikiTopNav
config={this.props.config}
currentPageId={this.props.currentPageId}
/>
{username &&
<Account />
}
</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) && (
<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}
/>
)}
</div>
</div>
</div>
);
}
}
MainPanel.propTypes = propTypes;
export default MainPanel;