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

[view history/snapshot/trash file] rewrote them with react

This commit is contained in:
llj
2019-06-25 15:47:43 +08:00
parent c958c1c642
commit 0868add020
22 changed files with 451 additions and 14 deletions

View File

@@ -0,0 +1,54 @@
import React from 'react';
import PropTypes from 'prop-types';
import watermark from 'watermark-dom';
import { gettext, siteName } from '../../utils/constants';
import Download from './download';
import '../../css/file-view.css';
const propTypes = {
content: PropTypes.object.isRequired
};
const {
fromTrash,
fileName, commitTime,
canDownloadFile,
enableWatermark, userNickName
} = window.app.pageOptions;
class FileView extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="h-100 d-flex flex-column">
<div className="file-view-header d-flex justify-content-between align-items-center">
<div>
<h2 className="file-title">{fileName}</h2>
<p className="meta-info m-0">{fromTrash ? `${gettext('Current Path: ')}${gettext('Trash')}`: commitTime}</p>
</div>
{canDownloadFile && <Download />}
</div>
<div className="file-view-body flex-auto d-flex o-hidden">
{this.props.content}
</div>
</div>
);
}
}
if (enableWatermark) {
watermark.init({
watermark_txt: `${siteName} ${userNickName}`,
watermark_alpha: 0.075
});
}
FileView.propTypes = propTypes;
export default FileView;