2023-09-19 00:50:30 +00:00
|
|
|
import {POST} from '../../modules/fetch.js';
|
2024-03-08 15:15:58 +00:00
|
|
|
import {getPastedContent, replaceTextareaSelection} from '../../utils/dom.js';
|
|
|
|
import {isUrl} from '../../utils/url.js';
|
2021-10-16 17:28:04 +00:00
|
|
|
|
|
|
|
async function uploadFile(file, uploadUrl) {
|
|
|
|
const formData = new FormData();
|
|
|
|
formData.append('file', file, file.name);
|
|
|
|
|
2023-09-19 00:50:30 +00:00
|
|
|
const res = await POST(uploadUrl, {data: formData});
|
2021-10-16 17:28:04 +00:00
|
|
|
return await res.json();
|
|
|
|
}
|
|
|
|
|
2023-05-08 22:22:52 +00:00
|
|
|
function triggerEditorContentChanged(target) {
|
|
|
|
target.dispatchEvent(new CustomEvent('ce-editor-content-changed', {bubbles: true}));
|
|
|
|
}
|
|
|
|
|
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-03-08 15:15:58 +00:00
|
|
|
async function handleClipboardImages(editor, dropzone, images, e) {
|
2024-02-22 16:35:58 +00:00
|
|
|
const uploadUrl = dropzone.getAttribute('data-upload-url');
|
|
|
|
const filesContainer = dropzone.querySelector('.files');
|
2022-06-28 17:52:58 +00:00
|
|
|
|
2024-03-08 15:15:58 +00:00
|
|
|
if (!dropzone || !uploadUrl || !filesContainer || !images.length) return;
|
2022-06-28 17:52:58 +00:00
|
|
|
|
2023-04-03 10:06:57 +00:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-08 15:15:58 +00:00
|
|
|
for (const img of images) {
|
2023-04-03 10:06:57 +00:00
|
|
|
const name = img.name.slice(0, img.name.lastIndexOf('.'));
|
2022-06-28 17:52:58 +00:00
|
|
|
|
2023-04-03 10:06:57 +00:00
|
|
|
const placeholder = `![${name}](uploading ...)`;
|
|
|
|
editor.insertPlaceholder(placeholder);
|
2022-06-28 17:52:58 +00:00
|
|
|
|
2024-02-19 02:23:06 +00:00
|
|
|
const {uuid} = await uploadFile(img, uploadUrl);
|
|
|
|
|
|
|
|
const url = `/attachments/${uuid}`;
|
2024-06-16 12:45:34 +00:00
|
|
|
const text = `![${name}](${url})`;
|
2024-02-19 02:23:06 +00:00
|
|
|
editor.replacePlaceholder(placeholder, text);
|
|
|
|
|
2024-02-22 16:35:58 +00:00
|
|
|
const input = document.createElement('input');
|
|
|
|
input.setAttribute('name', 'files');
|
|
|
|
input.setAttribute('type', 'hidden');
|
|
|
|
input.setAttribute('id', uuid);
|
|
|
|
input.value = uuid;
|
|
|
|
filesContainer.append(input);
|
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-03-08 15:15:58 +00:00
|
|
|
function handleClipboardText(textarea, text, e) {
|
|
|
|
// when pasting links over selected text, turn it into [text](link), except when shift key is held
|
|
|
|
const {value, selectionStart, selectionEnd, _shiftDown} = textarea;
|
|
|
|
if (_shiftDown) return;
|
|
|
|
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.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
replaceTextareaSelection(textarea, `[${selectedText}](${trimmedText})`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initEasyMDEPaste(easyMDE, dropzone) {
|
|
|
|
easyMDE.codemirror.on('paste', (_, e) => {
|
|
|
|
const {images} = getPastedContent(e);
|
|
|
|
if (images.length) {
|
|
|
|
handleClipboardImages(new CodeMirrorEditor(easyMDE.codemirror), dropzone, images, e);
|
|
|
|
}
|
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-03-08 15:15:58 +00:00
|
|
|
export function initTextareaPaste(textarea, dropzone) {
|
|
|
|
textarea.addEventListener('paste', (e) => {
|
|
|
|
const {images, text} = getPastedContent(e);
|
|
|
|
if (images.length) {
|
|
|
|
handleClipboardImages(new TextareaEditor(textarea), dropzone, images, e);
|
|
|
|
} else if (text) {
|
|
|
|
handleClipboardText(textarea, text, e);
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
|
|
|
}
|