1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 09:21:54 +00:00
Files
seahub/frontend/src/pages/markdown-editor/index.js

651 lines
19 KiB
JavaScript
Raw Normal View History

import React, { Fragment } from 'react';
2019-03-14 18:14:11 +08:00
import io from 'socket.io-client';
2022-05-13 11:19:16 +08:00
import { SeafileEditor } from '@seafile/seafile-editor/dist/editor/editor.js';
2019-03-14 18:14:11 +08:00
import { serialize, deserialize } from '@seafile/seafile-editor/dist/utils/slate2markdown';
2022-05-13 11:19:16 +08:00
import 'whatwg-fetch';
import { Utils } from '../../utils/utils';
import { seafileAPI } from '../../utils/seafile-api';
import { gettext, isDocs, mediaUrl } from '../../utils/constants';
import toaster from '../../components/toast';
import ModalPortal from '../../components/modal-portal';
import ShareDialog from '../../components/dialog/share-dialog';
import InsertFileDialog from '../../components/dialog/insert-file-dialog';
import LocalDraftDialog from '../../components/dialog/local-draft-dialog';
import EditFileTagDialog from '../../components/dialog/edit-filetag-dialog';
import InsertRepoImageDialog from '../../components/dialog/insert-repo-image-dialog';
import FileParticipantDialog from '../../components/dialog/file-participant-dialog';
2022-05-13 13:23:54 +08:00
import HeaderToolbar from './header-toolbar';
2022-05-13 11:19:16 +08:00
import editorApi from './editor-api';
import '../../css/markdown-viewer/markdown-editor.css';
2019-03-11 21:08:25 +08:00
const CryptoJS = require('crypto-js');
2019-03-15 12:11:32 +08:00
const URL = require('url-parse');
2022-05-13 11:19:16 +08:00
const { repoID, filePath, fileName, draftID, isDraft, hasDraft, isLocked, lockedByMe } = window.app.pageOptions;
2019-02-25 18:17:04 +08:00
const { siteRoot, serviceUrl, seafileCollabServer } = window.app.config;
const userInfo = window.app.userInfo;
2022-01-18 21:29:45 +08:00
const IMAGE_SUFFIXES = ['png', 'PNG', 'jpg', 'JPG', 'jpeg', 'JPEG', 'gif', 'GIF'];
2018-05-02 14:09:58 +08:00
2018-09-21 14:16:15 +08:00
class MarkdownEditor extends React.Component {
2018-05-02 14:09:58 +08:00
constructor(props) {
super(props);
2019-03-11 21:08:25 +08:00
this.timer = null;
this.localDraft = '';
this.autoSave = false;
this.draftRichValue = '';
this.draftPlainValue = '';
this.state = {
markdownContent: '',
loading: true,
mode: 'editor',
fileInfo: {
repoID: repoID,
name: fileName,
path: filePath,
mtime: null,
size: 0,
starred: false,
permission: '',
lastModifier: '',
id: '',
},
editorMode: 'rich',
collabServer: seafileCollabServer ? seafileCollabServer : null,
2019-03-11 21:08:25 +08:00
localDraftDialog: false,
showMarkdownEditorDialog: false,
2019-02-25 18:17:04 +08:00
showShareLinkDialog: false,
2019-03-26 11:18:41 +08:00
showInsertFileDialog: false,
2019-04-18 16:42:27 +08:00
showInsertRepoImageDialog: false,
showFileParticipantDialog: false,
2019-03-11 21:08:25 +08:00
showDraftSaved: false,
collabUsers: userInfo ?
[{user: userInfo, is_editing: false}] : [],
value: null,
2019-03-15 12:11:32 +08:00
isShowHistory: false,
readOnly: true,
2019-04-13 14:51:41 +08:00
contentChanged: false,
saving: false,
2019-05-05 12:05:29 +08:00
isLocked: isLocked,
lockedByMe: lockedByMe,
2019-06-19 13:36:57 +08:00
fileTagList: [],
showEditFileTagDialog: false,
participants: [],
};
2019-03-11 21:08:25 +08:00
if (this.state.collabServer) {
const socket = io(this.state.collabServer);
this.socket = socket;
socket.on('presence', (data) => this.receivePresenceData(data));
socket.on('repo_update', (data) => this.receiveUpdateData(data));
socket.on('connect', () => {
this.socket_id = socket.id;
});
}
}
2019-05-05 12:05:29 +08:00
toggleLockFile = () => {
const { repoID, path } = this.state.fileInfo;
if (this.state.isLocked) {
seafileAPI.unlockfile(repoID, path).then((res) => {
this.setState({ isLocked: false, lockedByMe: false });
});
} else {
seafileAPI.lockfile(repoID, path).then((res) => {
this.setState({ isLocked: true, lockedByMe: true });
});
}
}
2019-03-11 21:08:25 +08:00
emitSwitchEditor = (is_editing=false) => {
if (userInfo && this.state.collabServer) {
const { repoID, path } = this.state.fileInfo;
this.socket.emit('presence', {
request: 'editing',
2019-03-14 18:14:11 +08:00
doc_id: CryptoJS.MD5(repoID+path).toString(),
user: userInfo,
is_editing,
2019-03-11 21:08:25 +08:00
});
}
}
receiveUpdateData (data) {
let currentTime = new Date();
if ((parseFloat(currentTime - this.lastModifyTime)/1000) <= 5) {
return;
}
editorApi.fileMetaData().then((res) => {
2019-03-11 21:08:25 +08:00
if (res.data.id !== this.state.fileInfo.id) {
toaster.notify(
<span>
{gettext('This file has been updated.')}
<a href='' >{' '}{gettext('Refresh')}</a>
2019-03-11 21:08:25 +08:00
</span>,
{id: 'repo_updated', duration: 3600});
}
});
}
receivePresenceData(data) {
switch(data.response) {
case 'user_join':
toaster.notify(`user ${data.user.name} joined`, {
duration: 3
});
return;
case 'user_left':
toaster.notify(`user ${data.user.name} left`, {
duration: 3
});
return;
case 'update_users':
for (var prop in data.users) {
if (Object.prototype.hasOwnProperty.call(data.users, prop)) {
2019-03-11 21:08:25 +08:00
if (prop === this.socket_id) {
data.users[prop]['myself'] = true;
break;
}
}
}
this.setState({collabUsers: Object.values(data.users)});
return;
case 'user_editing':
toaster.danger(`user ${data.user.name} is editing this file!`, {
duration: 3
});
return;
default:
console.log('unknown response type: ' + data.response);
return;
}
}
2018-05-02 14:09:58 +08:00
toggleCancel = () => {
this.setState({
showMarkdownEditorDialog: false,
2019-02-25 18:17:04 +08:00
showShareLinkDialog: false,
2019-03-26 11:18:41 +08:00
showInsertFileDialog: false,
2019-04-18 16:42:27 +08:00
showInsertRepoImageDialog: false,
2019-06-19 13:36:57 +08:00
showEditFileTagDialog: false,
showFileParticipantDialog: false,
});
}
2019-03-11 21:08:25 +08:00
setEditorMode = (type) => {
this.setState({
editorMode: type
2019-03-14 18:14:11 +08:00
});
2019-03-11 21:08:25 +08:00
}
setDraftValue = (type, value) => {
if (type === 'rich') {
2019-03-14 18:14:11 +08:00
this.draftRichValue = value;
2019-03-11 21:08:25 +08:00
} else {
this.draftPlainValue = value;
}
}
2019-03-11 21:08:25 +08:00
setContent = (str) => {
let value = deserialize(str);
2019-03-11 21:08:25 +08:00
this.setState({
markdownContent: str,
value: value,
2019-03-11 21:08:25 +08:00
});
}
checkDraft = () => {
let draftKey = editorApi.getDraftKey();
2019-03-11 21:08:25 +08:00
let draft = localStorage.getItem(draftKey);
let that = this;
if (draft) {
that.setState({
localDraftDialog: true,
});
that.localDraft = draft;
localStorage.removeItem(draftKey);
}
}
useDraft = () => {
this.setState({
localDraftDialog: false,
loading: false,
markdownContent: this.localDraft,
editorMode: 'rich',
});
this.emitSwitchEditor(true);
}
deleteDraft = () => {
if (this.state.localDraftDialog) {
this.setState({
localDraftDialog: false,
loading: false,
});
}
let draftKey = editorApi.getDraftKey();
2019-04-15 12:09:58 +08:00
localStorage.removeItem(draftKey);
2019-03-11 21:08:25 +08:00
}
2019-03-18 08:40:31 +08:00
closeDraftDialog = () => {
this.setState({
localDraftDialog: false
});
}
2019-03-11 21:08:25 +08:00
clearTimer = () => {
clearTimeout(this.timer);
this.timer = null;
}
openDialogs = (option) => {
switch(option)
{
case 'help':
window.richMarkdownEditor.showHelpDialog();
break;
2019-02-25 18:17:04 +08:00
case 'share_link':
this.setState({
showMarkdownEditorDialog: true,
showShareLinkDialog: true,
});
break;
2019-03-26 11:18:41 +08:00
case 'insert_file':
this.setState({
showMarkdownEditorDialog: true,
showInsertFileDialog: true,
});
break;
2019-04-18 16:42:27 +08:00
case 'insert_repo_image':
this.setState({
showMarkdownEditorDialog: true,
showInsertRepoImageDialog: true,
});
break;
2019-06-19 13:36:57 +08:00
case 'file_tags':
this.setState({
showEditFileTagDialog: true,
showMarkdownEditorDialog: true,
});
break;
case 'add-participant':
this.setState({
showMarkdownEditorDialog: true,
showFileParticipantDialog: true,
});
break;
default:
return;
}
}
2019-03-11 21:08:25 +08:00
componentWillUnmount() {
this.socket.emit('repo_update', {
request: 'unwatch_update',
repo_id: editorApi.repoID,
2019-03-14 18:14:11 +08:00
user: {
name: editorApi.name,
username: editorApi.username,
contact_email: editorApi.contact_email,
2019-03-14 18:14:11 +08:00
},
2019-03-11 21:08:25 +08:00
});
}
async componentDidMount() {
// get file info
const fileInfoRes = await seafileAPI.getFileInfo(repoID, filePath);
const { mtime, size, starred, permission, last_modifier_name, id } = fileInfoRes.data;
const lastModifier = last_modifier_name;
// get file download url
const fileDownloadUrlRes = await seafileAPI.getFileDownloadLink(repoID, filePath);
const downloadUrl = fileDownloadUrlRes.data;
// get file content
const fileContentRes = await seafileAPI.getFileContent(downloadUrl);
const markdownContent = fileContentRes.data;
const value = deserialize(markdownContent);
// init permission
let hasPermission = permission === 'rw' || permission === 'cloud-edit';
// get custom permission
if (permission.startsWith('custom-')) {
const permissionID = permission.split('-')[1];
const customPermissionRes = await seafileAPI.getCustomPermission(repoID, permissionID);
const customPermission = customPermissionRes.data.permission;
const { modify: canModify } = customPermission.permission;
hasPermission = canModify ? true : hasPermission;
}
// Goto rich edit page
// First, the user has the relevant permissions, otherwise he can only enter the viewer interface or cannot access
// case1: If file is draft file
// case2: If mode == 'edit' and the file has no draft
// case3: The length of markDownContent is 1 when clear all content in editor and the file has no draft
const { fileInfo } = this.state;
this.setState({
loading: false,
fileInfo: {...fileInfo, mtime, size, starred, permission, lastModifier, id},
markdownContent,
value,
readOnly: !hasPermission || hasDraft,
});
2019-03-11 21:08:25 +08:00
if (userInfo && this.socket) {
const { repoID, path } = this.state.fileInfo;
this.socket.emit('presence', {
request: 'join_room',
2019-03-14 18:14:11 +08:00
doc_id: CryptoJS.MD5(repoID+path).toString(),
user: userInfo
2019-03-11 21:08:25 +08:00
});
this.socket.emit('repo_update', {
request: 'watch_update',
repo_id: editorApi.repoID,
2019-03-14 18:14:11 +08:00
user: {
name: editorApi.name,
username: editorApi.username,
contact_email: editorApi.contact_email,
2019-03-14 18:14:11 +08:00
},
2019-03-11 21:08:25 +08:00
});
}
this.checkDraft();
2019-06-19 13:36:57 +08:00
this.listFileTags();
this.listFileParticipants();
2019-06-29 11:24:18 +08:00
window.showParticipants = true;
setTimeout(() => {
let url = new URL(window.location.href);
if (url.hash) {
window.location.href = url;
}
}, 100);
}
2018-12-28 14:25:25 +08:00
2019-06-19 13:36:57 +08:00
listFileTags = () => {
seafileAPI.listFileTags(repoID, filePath).then(res => {
let fileTagList = res.data.file_tags;
for (let i = 0; i < fileTagList.length; i++) {
fileTagList[i].id = fileTagList[i].file_tag_id;
}
this.setState({ fileTagList: fileTagList });
});
}
onFileTagChanged = () => {
this.listFileTags();
}
listFileParticipants = () => {
editorApi.listFileParticipant().then((res) => {
this.setState({ participants: res.data.participant_list });
});
}
onParticipantsChange = () => {
this.listFileParticipants();
}
2019-03-11 21:08:25 +08:00
setFileInfoMtime = (fileInfo) => {
this.setState({
fileInfo: Object.assign({}, this.state.fileInfo, { mtime: fileInfo.mtime, id: fileInfo.id, lastModifier: fileInfo.last_modifier_name })
});
};
toggleStar = () => {
let starrd = this.state.fileInfo.starred;
if (starrd) {
editorApi.unstarItem().then((response) => {
2019-03-11 21:08:25 +08:00
this.setState({
fileInfo: Object.assign({}, this.state.fileInfo, {starred: !starrd})
});
});
} else if (!starrd) {
editorApi.starItem().then((response) => {
2019-03-11 21:08:25 +08:00
this.setState({
fileInfo: Object.assign({}, this.state.fileInfo, {starred: !starrd})
});
});
}
}
autoSaveDraft = () => {
let that = this;
if (that.timer) {
return;
2019-03-14 18:14:11 +08:00
}
else {
2019-03-11 21:08:25 +08:00
that.timer = setTimeout(() => {
let str = '';
if (this.state.editorMode == 'rich') {
let value = this.draftRichValue;
str = serialize(value);
2019-03-11 21:08:25 +08:00
}
else if (this.state.editorMode == 'plain') {
str = this.draftPlainValue;
}
let draftKey = editorApi.getDraftKey();
2019-03-11 21:08:25 +08:00
localStorage.setItem(draftKey, str);
that.setState({
2019-03-14 18:14:11 +08:00
showDraftSaved: true
2019-03-11 21:08:25 +08:00
});
setTimeout(() => {
that.setState({
2019-03-14 18:14:11 +08:00
showDraftSaved: false
2019-03-11 21:08:25 +08:00
});
2019-03-14 18:14:11 +08:00
}, 3000);
2019-03-11 21:08:25 +08:00
that.timer = null;
2019-04-08 13:51:34 +08:00
}, 60000);
}
2019-03-11 21:08:25 +08:00
}
2019-08-13 10:42:21 +08:00
openParentDirectory = () => {
window.location.href = editorApi.getParentDectionaryUrl();
2019-03-11 21:08:25 +08:00
}
onEdit = (mode) => {
if (mode === 'rich') {
window.seafileEditor.switchToRichTextEditor();
} else if (mode === 'plain') {
window.seafileEditor.switchToPlainTextEditor();
}
2019-03-11 21:08:25 +08:00
}
toggleShareLinkDialog = () => {
this.openDialogs('share_link');
}
onCommentAdded = () => {
this.toggleCancel();
}
addComment = (e) => {
e.stopPropagation();
this.openDialogs('comment');
}
2019-03-15 12:11:32 +08:00
scrollToNode = (node) => {
let url = new URL(window.location.href);
url.set('hash', 'user-content-' + node.text);
window.location.href = url.toString();
}
toggleHistory = () => {
window.location.href = siteRoot + 'repo/file_revisions/' + repoID + '/?p=' + Utils.encodePath(filePath);
2019-03-15 12:11:32 +08:00
}
2019-03-26 11:18:41 +08:00
getInsertLink = (repoID, filePath) => {
2019-04-24 16:37:42 +08:00
const fileName = Utils.getFileName(filePath);
const suffix = fileName.slice(fileName.indexOf('.') + 1);
if (IMAGE_SUFFIXES.includes(suffix)) {
let innerURL = serviceUrl + '/lib/' + repoID + '/file' + Utils.encodePath(filePath) + '?raw=1';
window.richMarkdownEditor.addLink(fileName, innerURL, true);
return;
}
let innerURL = serviceUrl + '/lib/' + repoID + '/file' + Utils.encodePath(filePath);
2019-04-24 16:37:42 +08:00
window.richMarkdownEditor.addLink(fileName, innerURL);
2019-03-26 11:18:41 +08:00
}
2019-04-13 14:51:41 +08:00
onContentChanged = (value) => {
this.setState({ contentChanged: value });
}
onSaving = (value) => {
this.setState({ saving: value });
}
2018-05-02 14:09:58 +08:00
render() {
2019-03-11 21:08:25 +08:00
let component;
2018-05-02 14:09:58 +08:00
if (this.state.loading) {
return (
<div className="empty-loading-page">
<div className="lds-ripple page-centered"><div></div><div></div></div>
</div>
);
} else if (this.state.mode === 'editor') {
component = (
<Fragment>
2022-05-13 13:23:54 +08:00
<HeaderToolbar
isDocs={isDocs}
hasDraft={hasDraft}
isDraft={isDraft}
editorApi={editorApi}
collabUsers={this.state.collabUsers}
fileInfo={this.state.fileInfo}
toggleStar={this.toggleStar}
2019-08-13 10:42:21 +08:00
openParentDirectory={this.openParentDirectory}
openDialogs={this.openDialogs}
toggleShareLinkDialog={this.toggleShareLinkDialog}
onEdit={this.onEdit}
toggleNewDraft={editorApi.createDraftFile}
showFileHistory={this.state.isShowHistory ? false : true }
toggleHistory={this.toggleHistory}
readOnly={this.state.readOnly}
mode={this.state.mode}
editorMode={this.state.editorMode}
2019-04-13 14:51:41 +08:00
contentChanged={this.state.contentChanged}
saving={this.state.saving}
2019-04-15 12:09:58 +08:00
showDraftSaved={this.state.showDraftSaved}
2019-05-05 12:05:29 +08:00
isLocked={this.state.isLocked}
lockedByMe={this.state.lockedByMe}
toggleLockFile={this.toggleLockFile}
/>
<SeafileEditor
scriptSource={mediaUrl + 'js/mathjax/tex-svg.js'}
fileInfo={this.state.fileInfo}
markdownContent={this.state.markdownContent}
editorApi={editorApi}
collabUsers={this.state.collabUsers}
setFileInfoMtime={this.setFileInfoMtime}
toggleStar={this.toggleStar}
showFileHistory={true}
setEditorMode={this.setEditorMode}
setContent={this.setContent}
draftID={draftID}
isDraft={isDraft}
mode={this.state.mode}
emitSwitchEditor={this.emitSwitchEditor}
hasDraft={hasDraft}
editorMode={this.state.editorMode}
siteRoot={siteRoot}
autoSaveDraft={this.autoSaveDraft}
setDraftValue={this.setDraftValue}
clearTimer={this.clearTimer}
openDialogs={this.openDialogs}
deleteDraft={this.deleteDraft}
readOnly={this.state.readOnly}
2019-04-13 14:51:41 +08:00
onContentChanged={this.onContentChanged}
onSaving={this.onSaving}
contentChanged={this.state.contentChanged}
saving={this.state.saving}
2019-06-19 13:36:57 +08:00
fileTagList={this.state.fileTagList}
participants={this.state.participants}
onParticipantsChange={this.onParticipantsChange}
2019-07-22 15:26:00 +08:00
markdownLint={fileName.toLowerCase() !== 'index.md'}
/>
</Fragment>
);
2019-03-11 21:08:25 +08:00
return (
<React.Fragment>
2019-04-08 13:51:34 +08:00
{this.state.localDraftDialog ?
2019-03-18 08:40:31 +08:00
<ModalPortal>
<LocalDraftDialog
localDraftDialog={this.state.localDraftDialog}
deleteDraft={this.deleteDraft}
closeDraftDialog={this.closeDraftDialog}
useDraft={this.useDraft}
/>
</ModalPortal>
: null}
2019-03-11 21:08:25 +08:00
{component}
{this.state.showMarkdownEditorDialog && (
2019-02-25 18:17:04 +08:00
<React.Fragment>
2019-03-26 11:18:41 +08:00
{this.state.showInsertFileDialog &&
<ModalPortal>
<InsertFileDialog
repoID={repoID}
filePath={filePath}
toggleCancel={this.toggleCancel}
getInsertLink={this.getInsertLink}
/>
</ModalPortal>
}
2019-04-18 16:42:27 +08:00
{this.state.showInsertRepoImageDialog &&
<ModalPortal>
<InsertRepoImageDialog
repoID={repoID}
filePath={filePath}
toggleCancel={this.toggleCancel}
/>
</ModalPortal>
}
2019-02-25 18:17:04 +08:00
{this.state.showShareLinkDialog &&
<ModalPortal>
<ShareDialog
itemType="file"
itemName={this.state.fileInfo.name}
itemPath={filePath}
repoID={repoID}
toggleDialog={this.toggleCancel}
isGroupOwnedRepo={false}
repoEncrypted={false}
/>
</ModalPortal>
}
2019-06-19 13:36:57 +08:00
{this.state.showEditFileTagDialog &&
<ModalPortal>
<EditFileTagDialog
repoID={repoID}
filePath={filePath}
fileTagList={this.state.fileTagList}
toggleCancel={this.toggleCancel}
onFileTagChanged={this.onFileTagChanged}
/>
</ModalPortal>
}
{this.state.showFileParticipantDialog &&
<ModalPortal>
<FileParticipantDialog
repoID={repoID}
filePath={filePath}
toggleFileParticipantDialog={this.toggleCancel}
fileParticipantList={this.state.participants}
onParticipantsChange={this.onParticipantsChange}
/>
</ModalPortal>
}
2019-02-25 18:17:04 +08:00
</React.Fragment>
)}
</React.Fragment>
2018-05-02 14:09:58 +08:00
);
2019-07-22 17:09:10 +08:00
}
2018-05-02 14:09:58 +08:00
}
}
2019-03-11 21:08:25 +08:00
export default MarkdownEditor;