2024-07-07 15:32:30 +00:00
|
|
|
import {imageInfo} from '../../utils/image.ts';
|
|
|
|
import {replaceTextareaSelection} from '../../utils/dom.ts';
|
|
|
|
import {isUrl} from '../../utils/url.ts';
|
|
|
|
import {triggerEditorContentChanged} from './EditorMarkdown.ts';
|
2024-06-27 09:31:49 +00:00
|
|
|
import {
|
|
|
|
DropzoneCustomEventRemovedFile,
|
|
|
|
DropzoneCustomEventUploadDone,
|
|
|
|
generateMarkdownLinkForAttachment,
|
2024-07-07 15:32:30 +00:00
|
|
|
} from '../dropzone.ts';
|
2024-06-27 09:31:49 +00:00
|
|
|
|
|
|
|
let uploadIdCounter = 0;
|
|
|
|
|
|
|
|
function uploadFile(dropzoneEl, file) {
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
const curUploadId = uploadIdCounter++;
|
|
|
|
file._giteaUploadId = curUploadId;
|
|
|
|
const dropzoneInst = dropzoneEl.dropzone;
|
|
|
|
const onUploadDone = ({file}) => {
|
|
|
|
if (file._giteaUploadId === curUploadId) {
|
|
|
|
dropzoneInst.off(DropzoneCustomEventUploadDone, onUploadDone);
|
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
dropzoneInst.on(DropzoneCustomEventUploadDone, onUploadDone);
|
|
|
|
dropzoneInst.handleFiles([file]);
|
|
|
|
});
|
2023-05-08 22:22:52 +00:00
|
|
|
}
|
|
|
|
|
2022-06-28 17:52:58 +00:00
|
|
|
class TextareaEditor {
|
|
|
|
constructor(editor) {
|
|
|
|
this.editor = editor;
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2022-06-28 17:52:58 +00:00
|
|
|
insertPlaceholder(value) {
|
|
|
|
const editor = this.editor;
|
|
|
|
const startPos = editor.selectionStart;
|
|
|
|
const endPos = editor.selectionEnd;
|
|
|
|
editor.value = editor.value.substring(0, startPos) + value + editor.value.substring(endPos);
|
|
|
|
editor.selectionStart = startPos;
|
|
|
|
editor.selectionEnd = startPos + value.length;
|
|
|
|
editor.focus();
|
2023-05-08 22:22:52 +00:00
|
|
|
triggerEditorContentChanged(editor);
|
2022-06-28 17:52:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
replacePlaceholder(oldVal, newVal) {
|
|
|
|
const editor = this.editor;
|
|
|
|
const startPos = editor.selectionStart;
|
|
|
|
const endPos = editor.selectionEnd;
|
|
|
|
if (editor.value.substring(startPos, endPos) === oldVal) {
|
|
|
|
editor.value = editor.value.substring(0, startPos) + newVal + editor.value.substring(endPos);
|
|
|
|
editor.selectionEnd = startPos + newVal.length;
|
|
|
|
} else {
|
|
|
|
editor.value = editor.value.replace(oldVal, newVal);
|
|
|
|
editor.selectionEnd -= oldVal.length;
|
|
|
|
editor.selectionEnd += newVal.length;
|
|
|
|
}
|
|
|
|
editor.selectionStart = editor.selectionEnd;
|
|
|
|
editor.focus();
|
2023-05-08 22:22:52 +00:00
|
|
|
triggerEditorContentChanged(editor);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-28 17:52:58 +00:00
|
|
|
class CodeMirrorEditor {
|
|
|
|
constructor(editor) {
|
|
|
|
this.editor = editor;
|
|
|
|
}
|
|
|
|
|
|
|
|
insertPlaceholder(value) {
|
|
|
|
const editor = this.editor;
|
|
|
|
const startPoint = editor.getCursor('start');
|
|
|
|
const endPoint = editor.getCursor('end');
|
|
|
|
editor.replaceSelection(value);
|
|
|
|
endPoint.ch = startPoint.ch + value.length;
|
|
|
|
editor.setSelection(startPoint, endPoint);
|
|
|
|
editor.focus();
|
2023-05-08 22:22:52 +00:00
|
|
|
triggerEditorContentChanged(editor.getTextArea());
|
2022-06-28 17:52:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
replacePlaceholder(oldVal, newVal) {
|
|
|
|
const editor = this.editor;
|
|
|
|
const endPoint = editor.getCursor('end');
|
|
|
|
if (editor.getSelection() === oldVal) {
|
|
|
|
editor.replaceSelection(newVal);
|
|
|
|
} else {
|
|
|
|
editor.setValue(editor.getValue().replace(oldVal, newVal));
|
|
|
|
}
|
|
|
|
endPoint.ch -= oldVal.length;
|
|
|
|
endPoint.ch += newVal.length;
|
|
|
|
editor.setSelection(endPoint, endPoint);
|
|
|
|
editor.focus();
|
2023-05-08 22:22:52 +00:00
|
|
|
triggerEditorContentChanged(editor.getTextArea());
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-27 09:31:49 +00:00
|
|
|
async function handleUploadFiles(editor, dropzoneEl, files, e) {
|
2023-04-03 10:06:57 +00:00
|
|
|
e.preventDefault();
|
2024-06-27 09:31:49 +00:00
|
|
|
for (const file of files) {
|
|
|
|
const name = file.name.slice(0, file.name.lastIndexOf('.'));
|
|
|
|
const {width, dppx} = await imageInfo(file);
|
|
|
|
const placeholder = `[${name}](uploading ...)`;
|
2022-06-28 17:52:58 +00:00
|
|
|
|
2023-04-03 10:06:57 +00:00
|
|
|
editor.insertPlaceholder(placeholder);
|
2024-06-27 09:31:49 +00:00
|
|
|
await uploadFile(dropzoneEl, file); // the "file" will get its "uuid" during the upload
|
|
|
|
editor.replacePlaceholder(placeholder, generateMarkdownLinkForAttachment(file, {width, dppx}));
|
2023-04-03 10:06:57 +00:00
|
|
|
}
|
2024-03-08 15:15:58 +00:00
|
|
|
}
|
2022-06-28 17:52:58 +00:00
|
|
|
|
2024-06-27 09:31:49 +00:00
|
|
|
export function removeAttachmentLinksFromMarkdown(text, fileUuid) {
|
|
|
|
text = text.replace(new RegExp(`!?\\[([^\\]]+)\\]\\(/?attachments/${fileUuid}\\)`, 'g'), '');
|
|
|
|
text = text.replace(new RegExp(`<img[^>]+src="/?attachments/${fileUuid}"[^>]*>`, 'g'), '');
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2024-06-21 08:14:40 +00:00
|
|
|
function handleClipboardText(textarea, e, {text, isShiftDown}) {
|
|
|
|
// pasting with "shift" means "paste as original content" in most applications
|
|
|
|
if (isShiftDown) return; // let the browser handle it
|
|
|
|
|
|
|
|
// when pasting links over selected text, turn it into [text](link)
|
|
|
|
const {value, selectionStart, selectionEnd} = textarea;
|
2024-03-08 15:15:58 +00:00
|
|
|
const selectedText = value.substring(selectionStart, selectionEnd);
|
|
|
|
const trimmedText = text.trim();
|
2024-09-01 15:15:29 +00:00
|
|
|
if (selectedText && isUrl(trimmedText) && !isUrl(selectedText)) {
|
2024-03-08 15:15:58 +00:00
|
|
|
e.preventDefault();
|
|
|
|
replaceTextareaSelection(textarea, `[${selectedText}](${trimmedText})`);
|
|
|
|
}
|
2024-06-21 08:14:40 +00:00
|
|
|
// else, let the browser handle it
|
2024-03-08 15:15:58 +00:00
|
|
|
}
|
|
|
|
|
2024-06-27 09:31:49 +00:00
|
|
|
// extract text and images from "paste" event
|
|
|
|
function getPastedContent(e) {
|
|
|
|
const images = [];
|
|
|
|
for (const item of e.clipboardData?.items ?? []) {
|
|
|
|
if (item.type?.startsWith('image/')) {
|
|
|
|
images.push(item.getAsFile());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const text = e.clipboardData?.getData?.('text') ?? '';
|
|
|
|
return {text, images};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initEasyMDEPaste(easyMDE, dropzoneEl) {
|
|
|
|
const editor = new CodeMirrorEditor(easyMDE.codemirror);
|
2024-03-08 15:15:58 +00:00
|
|
|
easyMDE.codemirror.on('paste', (_, e) => {
|
|
|
|
const {images} = getPastedContent(e);
|
2024-06-27 09:31:49 +00:00
|
|
|
if (!images.length) return;
|
|
|
|
handleUploadFiles(editor, dropzoneEl, images, e);
|
|
|
|
});
|
|
|
|
easyMDE.codemirror.on('drop', (_, e) => {
|
|
|
|
if (!e.dataTransfer.files.length) return;
|
|
|
|
handleUploadFiles(editor, dropzoneEl, e.dataTransfer.files, e);
|
|
|
|
});
|
|
|
|
dropzoneEl.dropzone.on(DropzoneCustomEventRemovedFile, ({fileUuid}) => {
|
|
|
|
const oldText = easyMDE.codemirror.getValue();
|
|
|
|
const newText = removeAttachmentLinksFromMarkdown(oldText, fileUuid);
|
|
|
|
if (oldText !== newText) easyMDE.codemirror.setValue(newText);
|
2022-06-28 17:52:58 +00:00
|
|
|
});
|
2023-04-03 10:06:57 +00:00
|
|
|
}
|
2022-06-28 17:52:58 +00:00
|
|
|
|
2024-09-01 15:15:29 +00:00
|
|
|
export function initTextareaEvents(textarea, dropzoneEl) {
|
2024-06-21 08:14:40 +00:00
|
|
|
let isShiftDown = false;
|
|
|
|
textarea.addEventListener('keydown', (e) => {
|
|
|
|
if (e.shiftKey) isShiftDown = true;
|
|
|
|
});
|
|
|
|
textarea.addEventListener('keyup', (e) => {
|
|
|
|
if (!e.shiftKey) isShiftDown = false;
|
|
|
|
});
|
2024-03-08 15:15:58 +00:00
|
|
|
textarea.addEventListener('paste', (e) => {
|
|
|
|
const {images, text} = getPastedContent(e);
|
2024-09-01 15:15:29 +00:00
|
|
|
if (images.length && dropzoneEl) {
|
2024-06-27 09:31:49 +00:00
|
|
|
handleUploadFiles(new TextareaEditor(textarea), dropzoneEl, images, e);
|
2024-03-08 15:15:58 +00:00
|
|
|
} else if (text) {
|
2024-06-21 08:14:40 +00:00
|
|
|
handleClipboardText(textarea, e, {text, isShiftDown});
|
2024-03-08 15:15:58 +00:00
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
2024-06-27 09:31:49 +00:00
|
|
|
textarea.addEventListener('drop', (e) => {
|
|
|
|
if (!e.dataTransfer.files.length) return;
|
|
|
|
handleUploadFiles(new TextareaEditor(textarea), dropzoneEl, e.dataTransfer.files, e);
|
|
|
|
});
|
2024-09-01 15:15:29 +00:00
|
|
|
dropzoneEl?.dropzone.on(DropzoneCustomEventRemovedFile, ({fileUuid}) => {
|
2024-06-27 09:31:49 +00:00
|
|
|
const newText = removeAttachmentLinksFromMarkdown(textarea.value, fileUuid);
|
|
|
|
if (textarea.value !== newText) textarea.value = newText;
|
|
|
|
});
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|