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

[document file view] rewrote it with react (#3154)

This commit is contained in:
llj
2019-03-23 14:15:45 +08:00
committed by Daniel Pan
parent 83ecedaf50
commit 2327106844
8 changed files with 257 additions and 3 deletions

View File

@@ -1,7 +1,12 @@
import React from 'react';
import PropTypes from 'prop-types';
import { gettext } from '../../utils/constants';
const { err } = window.app.pageOptions;
const { err, filePerm, fileType, repoID, filePath } = window.app.pageOptions;
const propTypes = {
errorMsg: PropTypes.string
};
class FileViewTip extends React.Component {
@@ -10,17 +15,30 @@ class FileViewTip extends React.Component {
if (err == 'File preview unsupported') {
errorMsg = <p>{gettext('Online view is not applicable to this file format')}</p>;
} else {
errorMsg = <p className="error">{err}</p>;
}
errorMsg = <p className="error">{err || this.props.errorMsg}</p>;
}
let canOpenViaClient = false;
if (filePerm == 'rw' && (fileType == 'Document' || fileType == 'SpreadSheet')) {
canOpenViaClient = true;
}
return (
<div className="file-view-content flex-1">
<div className="file-view-tip">
{errorMsg}
<a href="?dl=1" className="btn btn-secondary">{gettext('Download')}</a>
{canOpenViaClient && (
<React.Fragment>
<a className="open-via-client" href={`seafile://openfile?repo_id=${repoID}&path=${encodeURIComponent(filePath)}`}>{gettext('Open via Client')}</a>
<p className="tip">{gettext('Please install the desktop client to open file via client.')}</p>
</React.Fragment>
)}
</div>
</div>
);
}
}
FileViewTip.propTypes = propTypes;
export default FileViewTip;