1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 18:30:53 +00:00

change participant dialog and detail panel style

This commit is contained in:
Michael An
2019-06-26 14:56:03 +08:00
parent c29d990c67
commit e382d40df8
11 changed files with 259 additions and 108 deletions

View File

@@ -1,11 +1,16 @@
import React, {Component} from 'react'; import React, { Component } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import {Modal, ModalHeader, ModalBody, ModalFooter, Button} from 'reactstrap'; import { Modal, ModalHeader, ModalBody, ModalFooter, Button } from 'reactstrap';
import {gettext} from '../../utils/constants'; import { gettext } from '../../utils/constants';
import { seafileAPI } from '../../utils/seafile-api';
import UserSelect from '../user-select'; import UserSelect from '../user-select';
import {seafileAPI} from '../../utils/seafile-api';
import toaster from '../toast'; import toaster from '../toast';
import '../../css/add-reviewer-dialog.css';
const fileParticipantListItemPropTypes = {
participant: PropTypes.object.isRequired,
deleteFileParticipant: PropTypes.func.isRequired,
};
class FileParticipantListItem extends Component { class FileParticipantListItem extends Component {
@@ -17,44 +22,42 @@ class FileParticipantListItem extends Component {
} }
onMouseOver = () => { onMouseOver = () => {
this.setState({ this.setState({ isOperationShow: true });
isOperationShow: true,
});
}; };
onMouseLeave = () => { onMouseLeave = () => {
this.setState({ this.setState({ isOperationShow: false });
isOperationShow: false,
});
}; };
render() { render() {
const { participant } = this.props;
return ( return (
<div className="reviewer-select-info" style={{display: 'flex'}} onMouseOver={this.onMouseOver} onMouseLeave={this.onMouseLeave}> <div className="reviewer-select-info" onMouseOver={this.onMouseOver} onMouseLeave={this.onMouseLeave}>
<div className="d-flex"> <div className="d-flex">
<img className="avatar reviewer-select-avatar" src={this.props.participant.avatar_url} alt=""/> <img className="avatar reviewer-select-avatar" src={participant.avatar_url} alt=""/>
<span className="reviewer-select-name ellipsis">{this.props.participant.name}</span> <span className="reviewer-select-name ellipsis">{participant.name}</span>
</div> </div>
{this.state.isOperationShow && <i
<i className={`action-icon sf2-icon-x3 ${!this.state.isOperationShow &&'o-hidden'}`}
className="action-icon sf2-icon-x3" title={gettext('Delete')}
title={gettext('Delete')} onClick={this.props.deleteFileParticipant.bind(this, participant.email)}
onClick={this.props.deleteFileParticipant.bind(this, this.props.participant.email)} ></i>
></i>
}
</div> </div>
); );
} }
} }
const fileParticipantListItemPropTypes = {
participant: PropTypes.object.isRequired,
deleteFileParticipant: PropTypes.func.isRequired,
};
FileParticipantListItem.propTypes = fileParticipantListItemPropTypes; FileParticipantListItem.propTypes = fileParticipantListItemPropTypes;
const fileParticipantDialogPropTypes = {
repoID: PropTypes.string.isRequired,
filePath: PropTypes.string.isRequired,
toggleFileParticipantDialog: PropTypes.func.isRequired,
fileParticipantList: PropTypes.array.isRequired,
onParticipantsChange: PropTypes.func,
};
class FileParticipantDialog extends Component { class FileParticipantDialog extends Component {
constructor(props) { constructor(props) {
@@ -65,12 +68,13 @@ class FileParticipantDialog extends Component {
} }
handleSelectChange = (option) => { handleSelectChange = (option) => {
this.setState({selectedOption: option}); this.setState({ selectedOption: option });
}; };
deleteFileParticipant = (email) => { deleteFileParticipant = (email) => {
seafileAPI.deleteFileParticipant(this.props.repoID, this.props.filePath, email).then((res) => { const { repoID, filePath, dirent } = this.props;
this.props.onRelatedFileChange(this.props.dirent, this.props.filePath); seafileAPI.deleteFileParticipant(repoID, filePath, email).then((res) => {
this.props.onParticipantsChange(repoID, filePath);
}).catch((error) => { }).catch((error) => {
this.handleError(error); this.handleError(error);
}); });
@@ -78,18 +82,17 @@ class FileParticipantDialog extends Component {
}; };
addFileParticipant = () => { addFileParticipant = () => {
if (!this.state.selectedOption || this.state.selectedOption.length === 0) { const { selectedOption } = this.state;
const { repoID, filePath, dirent } = this.props;
if (!selectedOption || selectedOption.length === 0) {
return; return;
} }
let email = this.state.selectedOption.email; seafileAPI.addFileParticipant(repoID, filePath, selectedOption.email).then((res) => {
seafileAPI.addFileParticipant(this.props.repoID, this.props.filePath, email).then((res) => { this.props.onParticipantsChange(repoID, filePath);
this.props.onRelatedFileChange(this.props.dirent, this.props.filePath);
}).catch((error) => { }).catch((error) => {
this.handleError(error); this.handleError(error);
}); });
this.setState({ this.setState({ selectedOption: null });
selectedOption: null,
});
this.refs.userSelect.clearSelect(); this.refs.userSelect.clearSelect();
}; };
@@ -116,36 +119,26 @@ class FileParticipantDialog extends Component {
<Modal isOpen={true} toggle={this.props.toggleFileParticipantDialog}> <Modal isOpen={true} toggle={this.props.toggleFileParticipantDialog}>
<ModalHeader toggle={this.props.toggleFileParticipantDialog}>{gettext('Participants')}</ModalHeader> <ModalHeader toggle={this.props.toggleFileParticipantDialog}>{gettext('Participants')}</ModalHeader>
<ModalBody> <ModalBody>
<div className="add-reviewer" style={{display: 'flex'}}> <div className="add-reviewer">
<div style={{width: '385px'}}> <UserSelect
<UserSelect ref="userSelect"
ref="userSelect" isMulti={false}
isMulti={false} className="reviewer-select"
className="reviewer-select" placeholder={gettext('Select users...')}
placeholder={gettext('Select users...')} onSelectChange={this.handleSelectChange}
onSelectChange={this.handleSelectChange} />
/> <Button className="btn btn-secondary ml-2" onClick={this.addFileParticipant}>{gettext('Add')}</Button>
</div>
<Button className="btn btn-secondary" onClick={this.addFileParticipant}>{gettext('Submit')}</Button>
</div>
<div>
{renderParticipantList}
</div> </div>
{renderParticipantList}
</ModalBody> </ModalBody>
<ModalFooter>
<Button color="secondary" onClick={this.props.toggleFileParticipantDialog}>{gettext('Close')}</Button>
</ModalFooter>
</Modal> </Modal>
); );
} }
} }
const fileParticipantDialogPropTypes = {
repoID: PropTypes.string.isRequired,
filePath: PropTypes.string.isRequired,
toggleFileParticipantDialog: PropTypes.func.isRequired,
fileParticipantList: PropTypes.array.isRequired,
onRelatedFileChange: PropTypes.func.isRequired,
dirent: PropTypes.object.isRequired,
};
FileParticipantDialog.propTypes = fileParticipantDialogPropTypes; FileParticipantDialog.propTypes = fileParticipantDialogPropTypes;
export default FileParticipantDialog; export default FileParticipantDialog;

View File

@@ -6,7 +6,7 @@ import { Utils } from '../../utils/utils';
import EditFileTagDialog from '../dialog/edit-filetag-dialog'; import EditFileTagDialog from '../dialog/edit-filetag-dialog';
import ModalPortal from '../modal-portal'; import ModalPortal from '../modal-portal';
import RelatedFileDialogs from '../dialog/related-file-dialogs'; import RelatedFileDialogs from '../dialog/related-file-dialogs';
import FileParticipantDialog from '../dialog/file-participant-dialog'; import ParticipantsList from '../file-view/participants-list';
const propTypes = { const propTypes = {
repoInfo: PropTypes.object.isRequired, repoInfo: PropTypes.object.isRequired,
@@ -29,7 +29,6 @@ class DetailListView extends React.Component {
this.state = { this.state = {
isEditFileTagShow: false, isEditFileTagShow: false,
showRelatedFileDialog: false, showRelatedFileDialog: false,
isFileParticipantDialogShow : false,
}; };
} }
@@ -80,12 +79,6 @@ class DetailListView extends React.Component {
showRelatedFileDialog: false, showRelatedFileDialog: false,
}); });
} }
toggleFileParticipantDialog = () => {
this.setState({
isFileParticipantDialogShow: !this.state.isFileParticipantDialogShow,
});
}
render() { render() {
let { direntType, direntDetail, fileTagList, relatedFiles, fileParticipantList } = this.props; let { direntType, direntDetail, fileTagList, relatedFiles, fileParticipantList } = this.props;
@@ -149,16 +142,14 @@ class DetailListView extends React.Component {
<tr className="file-related-files"> <tr className="file-related-files">
<th>{gettext('Participants')}</th> <th>{gettext('Participants')}</th>
<td> <td>
<ul> {fileParticipantList &&
{fileParticipantList.map((fileParticipant, index) => { <ParticipantsList
return ( onParticipantsChange={this.props.onParticipantsChange}
<li key={index}> participants={fileParticipantList}
<span>{fileParticipant.name}</span> repoID={this.props.repoID}
</li> filePath={direntPath}
); />
})} }
</ul>
<i className='fa fa-pencil-alt attr-action-icon' onClick={this.toggleFileParticipantDialog}></i>
</td> </td>
</tr> </tr>
</tbody> </tbody>
@@ -176,26 +167,16 @@ class DetailListView extends React.Component {
/> />
</ModalPortal> </ModalPortal>
} }
{ {this.state.isEditFileTagShow &&
this.state.isEditFileTagShow && <ModalPortal>
<EditFileTagDialog <EditFileTagDialog
repoID={this.props.repoID} repoID={this.props.repoID}
fileTagList={fileTagList} fileTagList={fileTagList}
filePath={direntPath} filePath={direntPath}
toggleCancel={this.onEditFileTagToggle} toggleCancel={this.onEditFileTagToggle}
onFileTagChanged={this.onFileTagChanged} onFileTagChanged={this.onFileTagChanged}
/> />
} </ModalPortal>
{
this.state.isFileParticipantDialogShow &&
<FileParticipantDialog
repoID={this.props.repoID}
filePath={direntPath}
dirent={this.props.dirent}
toggleFileParticipantDialog={this.toggleFileParticipantDialog}
fileParticipantList={this.props.fileParticipantList}
onRelatedFileChange={this.props.onRelatedFileChange}
/>
} }
</Fragment> </Fragment>
); );

View File

@@ -77,7 +77,6 @@ class DirentDetail extends React.Component {
} }
} }
updateDetailView = (dirent, direntPath) => { updateDetailView = (dirent, direntPath) => {
let repoID = this.props.repoID; let repoID = this.props.repoID;
if (dirent.type === 'file') { if (dirent.type === 'file') {
@@ -110,11 +109,7 @@ class DirentDetail extends React.Component {
}); });
} }
}); });
seafileAPI.listFileParticipants(repoID, direntPath).then((res) => { this.listParticipants(repoID, direntPath);
this.setState({
fileParticipantList: res.data.participant_list,
});
});
} else { } else {
seafileAPI.getDirInfo(repoID, direntPath).then(res => { seafileAPI.getDirInfo(repoID, direntPath).then(res => {
this.setState({ this.setState({
@@ -125,6 +120,16 @@ class DirentDetail extends React.Component {
} }
} }
listParticipants = (repoID, filePath) => {
seafileAPI.listFileParticipants(repoID, filePath).then((res) => {
this.setState({ fileParticipantList: res.data.participant_list });
});
}
onParticipantsChange = (repoID, filePath) => {
this.listParticipants(repoID, filePath);
}
onRelatedFileChange = (dirent, direntPath) => { onRelatedFileChange = (dirent, direntPath) => {
this.updateDetailView(dirent, direntPath); this.updateDetailView(dirent, direntPath);
} }
@@ -187,6 +192,7 @@ class DirentDetail extends React.Component {
onFileTagChanged={this.props.onFileTagChanged} onFileTagChanged={this.props.onFileTagChanged}
onRelatedFileChange={this.onRelatedFileChange} onRelatedFileChange={this.onRelatedFileChange}
fileParticipantList={this.state.fileParticipantList} fileParticipantList={this.state.fileParticipantList}
onParticipantsChange={this.onParticipantsChange}
/> />
</div> </div>
} }

View File

@@ -5,6 +5,7 @@ import { processor } from '@seafile/seafile-editor/dist/utils/seafile-markdown2h
import { Button, Dropdown, DropdownToggle, DropdownMenu, DropdownItem } from 'reactstrap'; import { Button, Dropdown, DropdownToggle, DropdownMenu, DropdownItem } from 'reactstrap';
import { gettext } from '../../utils/constants'; import { gettext } from '../../utils/constants';
import { seafileAPI } from '../../utils/seafile-api'; import { seafileAPI } from '../../utils/seafile-api';
import ParticipantsList from './participants-list';
import '../../css/comments-list.css'; import '../../css/comments-list.css';
const { username, repoID, filePath } = window.app.pageOptions; const { username, repoID, filePath } = window.app.pageOptions;
@@ -12,6 +13,8 @@ const { username, repoID, filePath } = window.app.pageOptions;
const CommentPanelPropTypes = { const CommentPanelPropTypes = {
toggleCommentPanel: PropTypes.func.isRequired, toggleCommentPanel: PropTypes.func.isRequired,
commentsNumber: PropTypes.number, commentsNumber: PropTypes.number,
participants: PropTypes.array,
onParticipantsChange: PropTypes.func,
}; };
class CommentPanel extends React.Component { class CommentPanel extends React.Component {
@@ -83,6 +86,7 @@ class CommentPanel extends React.Component {
} }
render() { render() {
const { participants } = this.props;
return ( return (
<div className="seafile-comment"> <div className="seafile-comment">
<div className="seafile-comment-title"> <div className="seafile-comment-title">
@@ -125,6 +129,14 @@ class CommentPanel extends React.Component {
<li className="comment-vacant">{gettext('No comment yet.')}</li>} <li className="comment-vacant">{gettext('No comment yet.')}</li>}
</ul> </ul>
<div className="seafile-comment-footer"> <div className="seafile-comment-footer">
{participants &&
<ParticipantsList
onParticipantsChange={this.props.onParticipantsChange}
participants={participants}
repoID={repoID}
filePath={filePath}
/>
}
<textarea <textarea
className="add-comment-input" ref="commentTextarea" className="add-comment-input" ref="commentTextarea"
placeholder={gettext('Add a comment.')} placeholder={gettext('Add a comment.')}

View File

@@ -14,6 +14,8 @@ const propTypes = {
content: PropTypes.object.isRequired, content: PropTypes.object.isRequired,
isSaving: PropTypes.bool, isSaving: PropTypes.bool,
needSave: PropTypes.bool, needSave: PropTypes.bool,
participants: PropTypes.array,
onParticipantsChange: PropTypes.func,
}; };
const { isStarred, isLocked, lockedByMe, const { isStarred, isLocked, lockedByMe,
@@ -95,7 +97,11 @@ class FileView extends React.Component {
<div className="file-view-body flex-auto d-flex o-hidden"> <div className="file-view-body flex-auto d-flex o-hidden">
{this.props.content} {this.props.content}
{this.state.isCommentPanelOpen && {this.state.isCommentPanelOpen &&
<CommentPanel toggleCommentPanel={this.toggleCommentPanel} /> <CommentPanel
toggleCommentPanel={this.toggleCommentPanel}
participants={this.props.participants}
onParticipantsChange={this.props.onParticipantsChange}
/>
} }
</div> </div>
</div> </div>

View File

@@ -0,0 +1,57 @@
import React from 'react';
import PropTypes from 'prop-types';
import ModalPortal from '../modal-portal';
import FileParticipantDialog from '../dialog/file-participant-dialog';
import { serviceURL } from '../../utils/constants';
import { seafileAPI } from '../../utils/seafile-api';
import '../../css/participants-list.css';
const propTypes = {
onParticipantsChange: PropTypes.func.isRequired,
participants: PropTypes.array.isRequired,
repoID: PropTypes.string.isRequired,
filePath: PropTypes.string.isRequired,
};
class ParticipantsList extends React.Component {
constructor(props) {
super(props);
this.state = {
showDialog : false,
};
}
toggleDialog = () => {
this.setState({ showDialog: !this.state.showDialog });
}
render() {
const { participants, repoID, filePath } = this.props;
return (
<div className="file-participants mb-2 position-relative">
{participants.map((item, index) => {
return <img src={serviceURL + item.avatar_url} className="avatar" alt="avatar" key={index} style={{left: index * -7 + 'px'}}/>;
})}
<span className="add-file-participants" style={{left: participants.length * 21, top: 8 }} onClick={this.toggleDialog}>
<i className="fas fa-plus-circle"></i>
</span>
{this.state.showDialog &&
<ModalPortal>
<FileParticipantDialog
repoID={repoID}
filePath={filePath}
toggleFileParticipantDialog={this.toggleDialog}
fileParticipantList={participants}
onParticipantsChange={this.props.onParticipantsChange}
/>
</ModalPortal>
}
</div>
);
}
}
ParticipantsList.propTypes = propTypes;
export default ParticipantsList;

View File

@@ -108,7 +108,7 @@
border-top: 1px solid #e5e5e5; border-top: 1px solid #e5e5e5;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-height: 150px; min-height: 182px;
} }
.seafile-comment-footer .add-comment-input, .seafile-comment-footer .add-comment-input,
.seafile-edit-comment .edit-comment-input { .seafile-edit-comment .edit-comment-input {

View File

@@ -66,7 +66,7 @@
} }
.dirent-table-container { .dirent-table-container {
padding: 10px 20px; padding: 10px 20px 20px;
display: flex; display: flex;
} }
@@ -139,12 +139,12 @@
max-height: 100px; max-height: 100px;
overflow-y: scroll; overflow-y: scroll;
white-space: nowrap; white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
} }
.file-related-files td ul li { .file-related-files td ul li {
margin-bottom: 5px; margin-bottom: 5px;
overflow-x: hidden;
text-overflow: ellipsis;
} }
.file-related-files ul li a, .file-related-files ul li a,
@@ -173,6 +173,7 @@
.detail-container .tab-content { .detail-container .tab-content {
height: calc(100% - 73px); height: calc(100% - 73px);
overflow-y: auto;
} }
.detail-container .nav-item .nav-link, .detail-container .nav-item .nav-link i { .detail-container .nav-item .nav-link, .detail-container .nav-item .nav-link i {

View File

@@ -0,0 +1,18 @@
.file-participants {
min-height: 30px;
}
.file-participants .avatar {
width: 28px;
height: 28px;
border: 2px solid #fff;
}
.file-participants .add-file-participants {
position: absolute;
cursor: pointer;
}
.file-participants .add-file-participants i {
font-size: 16px;
color: rgb(229, 162, 82);
border: 2px solid #fff;
border-radius: 50%;
}

View File

@@ -10,6 +10,7 @@ import ModalPortal from './components/modal-portal';
import ShareDialog from './components/dialog/share-dialog'; import ShareDialog from './components/dialog/share-dialog';
import InsertFileDialog from './components/dialog/insert-file-dialog'; import InsertFileDialog from './components/dialog/insert-file-dialog';
import InsertRepoImageDialog from './components/dialog/insert-repo-image-dialog'; import InsertRepoImageDialog from './components/dialog/insert-repo-image-dialog';
import FileParticipantDialog from './components/dialog/file-participant-dialog';
import { serialize, deserialize } from '@seafile/seafile-editor/dist/utils/slate2markdown'; import { serialize, deserialize } from '@seafile/seafile-editor/dist/utils/slate2markdown';
import LocalDraftDialog from './components/dialog/local-draft-dialog'; import LocalDraftDialog from './components/dialog/local-draft-dialog';
import MarkdownViewerToolbar from './components/toolbar/markdown-viewer-toolbar'; import MarkdownViewerToolbar from './components/toolbar/markdown-viewer-toolbar';
@@ -252,6 +253,15 @@ class EditorUtilities {
markdownLint(slateValue) { markdownLint(slateValue) {
return seafileAPI.markdownLint(slateValue); return seafileAPI.markdownLint(slateValue);
} }
listFileParticipant() {
return seafileAPI.listFileParticipants(repoID, filePath);
}
addFileParticipant(email) {
return seafileAPI.addFileParticipant(repoID, filePath, email);
}
} }
const editorUtilities = new EditorUtilities(); const editorUtilities = new EditorUtilities();
@@ -286,6 +296,7 @@ class MarkdownEditor extends React.Component {
showShareLinkDialog: false, showShareLinkDialog: false,
showInsertFileDialog: false, showInsertFileDialog: false,
showInsertRepoImageDialog: false, showInsertRepoImageDialog: false,
showFileParticipantDialog: false,
showDraftSaved: false, showDraftSaved: false,
collabUsers: userInfo ? collabUsers: userInfo ?
[{user: userInfo, is_editing: false}] : [], [{user: userInfo, is_editing: false}] : [],
@@ -301,6 +312,7 @@ class MarkdownEditor extends React.Component {
showRelatedFileDialog: false, showRelatedFileDialog: false,
showEditFileTagDialog: false, showEditFileTagDialog: false,
viewMode: 'list_related_file', viewMode: 'list_related_file',
participants: [],
}; };
if (this.state.collabServer) { if (this.state.collabServer) {
@@ -400,6 +412,7 @@ class MarkdownEditor extends React.Component {
showInsertRepoImageDialog: false, showInsertRepoImageDialog: false,
showRelatedFileDialog: false, showRelatedFileDialog: false,
showEditFileTagDialog: false, showEditFileTagDialog: false,
showFileParticipantDialog: false,
}); });
} }
@@ -516,6 +529,12 @@ class MarkdownEditor extends React.Component {
showMarkdownEditorDialog: true, showMarkdownEditorDialog: true,
}); });
break; break;
case 'add-participant':
this.setState({
showMarkdownEditorDialog: true,
showFileParticipantDialog: true,
});
break;
default: default:
return; return;
} }
@@ -596,6 +615,7 @@ class MarkdownEditor extends React.Component {
this.listRelatedFiles(); this.listRelatedFiles();
this.listFileTags(); this.listFileTags();
this.listFileParticipants();
setTimeout(() => { setTimeout(() => {
let url = new URL(window.location.href); let url = new URL(window.location.href);
if (url.hash) { if (url.hash) {
@@ -628,6 +648,16 @@ class MarkdownEditor extends React.Component {
this.listFileTags(); this.listFileTags();
} }
listFileParticipants = () => {
editorUtilities.listFileParticipant().then((res) => {
this.setState({ participants: res.data.participant_list });
});
}
onParticipantsChange = () => {
this.listFileParticipants();
}
setFileInfoMtime = (fileInfo) => { setFileInfoMtime = (fileInfo) => {
this.setState({ this.setState({
fileInfo: Object.assign({}, this.state.fileInfo, { mtime: fileInfo.mtime, id: fileInfo.id, lastModifier: fileInfo.last_modifier_name }) fileInfo: Object.assign({}, this.state.fileInfo, { mtime: fileInfo.mtime, id: fileInfo.id, lastModifier: fileInfo.last_modifier_name })
@@ -795,6 +825,8 @@ class MarkdownEditor extends React.Component {
saving={this.state.saving} saving={this.state.saving}
fileTagList={this.state.fileTagList} fileTagList={this.state.fileTagList}
relatedFiles={this.state.relatedFiles} relatedFiles={this.state.relatedFiles}
participants={this.state.participants}
onParticipantsChange={this.onParticipantsChange}
/> />
</Fragment> </Fragment>
); );
@@ -870,6 +902,17 @@ class MarkdownEditor extends React.Component {
/> />
</ModalPortal> </ModalPortal>
} }
{this.state.showFileParticipantDialog &&
<ModalPortal>
<FileParticipantDialog
repoID={repoID}
filePath={filePath}
toggleFileParticipantDialog={this.toggleCancel}
fileParticipantList={this.state.participants}
onParticipantsChange={this.onParticipantsChange}
/>
</ModalPortal>
}
</React.Fragment> </React.Fragment>
)} )}
</React.Fragment> </React.Fragment>

View File

@@ -24,7 +24,7 @@ import 'codemirror/lib/codemirror.css';
import './css/text-file-view.css'; import './css/text-file-view.css';
const { const {
err, fileExt, fileContent, repoID, filePath, fileName, canEditFile err, fileExt, fileContent, repoID, filePath, fileName, canEditFile, username
} = window.app.pageOptions; } = window.app.pageOptions;
const options = { const options = {
@@ -45,8 +45,10 @@ class ViewFileText extends React.Component {
content: fileContent, content: fileContent,
needSave: false, needSave: false,
isSaving: false, isSaving: false,
participants: [],
}; };
this.onSave=this.onSave.bind(this); this.onSave=this.onSave.bind(this);
this.isParticipant = false;
} }
@@ -58,6 +60,9 @@ class ViewFileText extends React.Component {
} }
onSave () { onSave () {
if (!this.isParticipant) {
this.addParticipant();
}
let dirPath = '/'; let dirPath = '/';
return ( return (
seafileAPI.getUpdateLink(repoID, dirPath).then((res) => { seafileAPI.getUpdateLink(repoID, dirPath).then((res) => {
@@ -83,6 +88,33 @@ class ViewFileText extends React.Component {
); );
} }
addParticipant = () => {
seafileAPI.addFileParticipant(repoID, filePath, username).then((res) => {
if (res.status === 201) {
this.isParticipant = true;
this.getParticipants();
}
});
}
getParticipants = () => {
seafileAPI.listFileParticipants(repoID, filePath).then((res) => {
const participants = res.data.participant_list;
this.setState({ participants: participants });
this.isParticipant = participants.every((participant) => {
return participant.email == username;
});
});
}
onParticipantsChange = () => {
this.getParticipants();
}
componentDidMount() {
this.getParticipants();
}
render() { render() {
return ( return (
<FileView <FileView
@@ -95,6 +127,8 @@ class ViewFileText extends React.Component {
isSaving={this.state.isSaving} isSaving={this.state.isSaving}
needSave={this.state.needSave} needSave={this.state.needSave}
onSave={this.onSave} onSave={this.onSave}
participants={this.state.participants}
onParticipantsChange={this.onParticipantsChange}
/> />
); );
} }