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

Merge pull request #3326 from haiwen/update_txt_file_save_mechanism

Update txt file save mechanism
This commit is contained in:
Daniel Pan
2019-04-19 18:42:51 +08:00
committed by GitHub
3 changed files with 101 additions and 17 deletions

View File

@@ -10,6 +10,9 @@ import ShareDialog from '../dialog/share-dialog';
const propTypes = {
isLocked: PropTypes.bool.isRequired,
lockedByMe: PropTypes.bool.isRequired,
onSaveChangedContent: PropTypes.func.isRequired,
isSaving: PropTypes.bool.isRequired,
isContentChangedButNotSaved: PropTypes.bool.isRequired,
toggleLockFile: PropTypes.func.isRequired,
toggleCommentPanel: PropTypes.func.isRequired
};
@@ -45,7 +48,6 @@ class FileToolbar extends React.Component {
render() {
const { isLocked, lockedByMe } = this.props;
let showLockUnlockBtn = false;
let lockUnlockText, lockUnlockIcon;
if (canLockUnlockFile) {
@@ -101,14 +103,24 @@ class FileToolbar extends React.Component {
href={`${siteRoot}repo/file_revisions/${repoID}/?p=${encodeURIComponent(filePath)}&referer=${encodeURIComponent(location.href)}`}
/>
)}
{(canEditFile && !err) && (
{(canEditFile && !err) &&
( this.props.isSaving ?
<button type={'button'} className={'btn btn-icon btn-secondary btn-active'}>
<i className={'fa fa-spin fa-spinner'}/></button> :
(
this.props.isContentChangedButNotSaved ?
<IconButton
id="edit"
icon="fa fa-edit"
text={gettext('Edit')}
tag="a"
href={`${siteRoot}repo/${repoID}/file/edit/?p=${encodeURIComponent(filePath)}&file_enc=${encodeURIComponent(fileEnc)}`}
/>
text={gettext('Save')}
id={'saveButton'}
icon={'fa fa-save'}
// button imported in this file does not have functionalities of
// isActive as button imported in markdowneditor has
//isActive={!isContentChanged}
onClick={this.props.onSaveChangedContent}
/> :
<button type={'button'} className={'btn btn-icon btn-secondary btn-active'} disabled>
<i className={'fa fa-save'}/></button>
)
)}
{canDownloadFile && (
<IconButton

View File

@@ -10,13 +10,17 @@ import CommentPanel from './comment-panel';
import '../../css/file-view.css';
const propTypes = {
content: PropTypes.object.isRequired
onSaveChangedContent: PropTypes.func.isRequired,
content: PropTypes.object.isRequired,
isSaving: PropTypes.bool.isRequired,
isContentChangedButNotSaved: PropTypes.bool.isRequired,
};
const { isStarred, isLocked, lockedByMe,
repoID, filePath, enableWatermark, userNickName
} = window.app.pageOptions;
class FileView extends React.Component {
constructor(props) {
@@ -25,7 +29,7 @@ class FileView extends React.Component {
isStarred: isStarred,
isLocked: isLocked,
lockedByMe: lockedByMe,
isCommentPanelOpen: false
isCommentPanelOpen: false,
};
}
@@ -81,6 +85,9 @@ class FileView extends React.Component {
<FileToolbar
isLocked={this.state.isLocked}
lockedByMe={this.state.lockedByMe}
onSaveChangedContent={this.props.onSaveChangedContent}
isSaving={this.props.isSaving}
isContentChangedButNotSaved={this.props.isContentChangedButNotSaved}
toggleLockFile={this.toggleLockFile}
toggleCommentPanel={this.toggleCommentPanel}
/>

View File

@@ -1,8 +1,12 @@
import React from 'react';
import ReactDOM from 'react-dom';
import PropTypes from 'prop-types';
import toaster from './components/toast';
import { Utils } from './utils/utils';
import { gettext } from './utils/constants';
import FileView from './components/file-view/file-view';
import FileViewTip from './components/file-view/file-view-tip';
import { seafileAPI } from './utils/seafile-api';
import CodeMirror from 'react-codemirror';
import 'codemirror/mode/javascript/javascript';
@@ -20,7 +24,7 @@ import 'codemirror/lib/codemirror.css';
import './css/text-file-view.css';
const {
err, fileExt, fileContent
err, fileExt, fileContent, repoID, filePath, fileName
} = window.app.pageOptions;
const options = {
@@ -30,18 +34,76 @@ const options = {
theme: 'default',
textWrapping: true,
lineWrapping: true,
readOnly: true,
cursorBlinkRate: -1 // hide the cursor
readOnly: false, // set false to let user edit directly
};
class ViewFileText extends React.Component {
constructor(props) {
super(props);
this.state = {
content: fileContent,
isContentChangedButNotSaved: false,
isSaving: false,
};
this.onSaveChangedContent=this.onSaveChangedContent.bind(this);
}
updateContent = (newContent) => {
this.setState({
isContentChangedButNotSaved: true,
content: newContent,
});
}
onSaveChangedContent () {
let dirPath = '/';
return (
seafileAPI.getUpdateLink(repoID, dirPath).then((res) => {
const uploadLink = res.data;
this.setState({
isSaving: true
});
return seafileAPI.updateFile(
uploadLink,
filePath,
fileName,
this.state.content
).then(() => {
toaster.success(gettext('Successfully saved'), {
duration: 3
});
this.setState({
isSaving: false,
isContentChangedButNotSaved: false
});
});
})
);
}
render() {
return (
<FileView content={<FileContent />} />
<FileView
content={
<FileContent
content={this.state.content}
updateContent={this.updateContent}
/>
}
isSaving={this.state.isSaving}
isContentChangedButNotSaved={this.state.isContentChangedButNotSaved}
onSaveChangedContent={this.onSaveChangedContent}
/>
);
}
}
const propTypes = {
updateContent: PropTypes.func.isRequired,
content: PropTypes.string.isRequired,
};
class FileContent extends React.Component {
render() {
if (err) {
@@ -51,14 +113,17 @@ class FileContent extends React.Component {
<div className="file-view-content flex-1 text-file-view">
<CodeMirror
ref="code-mirror-editor"
value={fileContent}
value={this.props.content}
options={options}
onChange={this.props.updateContent}
/>
</div>
);
}
}
FileContent.propTypes = propTypes;
ReactDOM.render (
<ViewFileText />,
document.getElementById('wrapper')