2024-02-19 15:26:04 -05:00
|
|
|
import {EditorView, keymap} from '@codemirror/view';
|
2018-09-22 18:24:51 -04:00
|
|
|
|
2023-04-18 17:20:02 -04:00
|
|
|
import {copyTextToClipboard} from '../services/clipboard';
|
|
|
|
import {viewerExtensions, editorExtensions} from './setups';
|
|
|
|
import {createView} from './views';
|
|
|
|
import {SimpleEditorInterface} from './simple-editor-interface';
|
2017-06-17 07:41:18 -04:00
|
|
|
|
2017-09-02 08:34:37 -04:00
|
|
|
/**
|
2023-04-19 10:20:04 -04:00
|
|
|
* Add a button to a CodeMirror instance which copies the contents to the clipboard upon click.
|
|
|
|
* @param {EditorView} editorView
|
2017-09-02 08:34:37 -04:00
|
|
|
*/
|
2023-04-19 10:20:04 -04:00
|
|
|
function addCopyIcon(editorView) {
|
|
|
|
const copyIcon = '<svg viewBox="0 0 24 24" width="16" height="16" xmlns="http://www.w3.org/2000/svg"><path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/></svg>';
|
|
|
|
const checkIcon = '<svg viewBox="0 0 24 24" width="16" height="16" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>';
|
|
|
|
const copyButton = document.createElement('button');
|
|
|
|
copyButton.setAttribute('type', 'button');
|
|
|
|
copyButton.classList.add('cm-copy-button');
|
|
|
|
copyButton.innerHTML = copyIcon;
|
|
|
|
editorView.dom.appendChild(copyButton);
|
2020-01-15 15:18:02 -05:00
|
|
|
|
2023-04-19 10:20:04 -04:00
|
|
|
const notifyTime = 620;
|
|
|
|
const transitionTime = 60;
|
|
|
|
copyButton.addEventListener('click', () => {
|
|
|
|
copyTextToClipboard(editorView.state.doc.toString());
|
|
|
|
copyButton.classList.add('success');
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
copyButton.innerHTML = checkIcon;
|
|
|
|
}, transitionTime / 2);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
copyButton.classList.remove('success');
|
|
|
|
}, notifyTime);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
copyButton.innerHTML = copyIcon;
|
|
|
|
}, notifyTime + (transitionTime / 2));
|
|
|
|
});
|
2017-09-02 08:34:37 -04:00
|
|
|
}
|
2017-05-28 08:16:21 -04:00
|
|
|
|
2024-05-03 08:35:30 -04:00
|
|
|
/**
|
|
|
|
* @param {HTMLElement} codeElem
|
|
|
|
* @returns {String}
|
|
|
|
*/
|
|
|
|
function getDirectionFromCodeBlock(codeElem) {
|
|
|
|
let dir = '';
|
|
|
|
const innerCodeElem = codeElem.querySelector('code');
|
|
|
|
|
|
|
|
if (innerCodeElem && innerCodeElem.hasAttribute('dir')) {
|
|
|
|
dir = innerCodeElem.getAttribute('dir');
|
|
|
|
} else if (codeElem.hasAttribute('dir')) {
|
|
|
|
dir = codeElem.getAttribute('dir');
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2017-09-02 08:34:37 -04:00
|
|
|
/**
|
|
|
|
* Add code highlighting to a single element.
|
|
|
|
* @param {HTMLElement} elem
|
|
|
|
*/
|
2017-06-17 10:07:55 -04:00
|
|
|
function highlightElem(elem) {
|
2019-12-07 11:23:44 -05:00
|
|
|
const innerCodeElem = elem.querySelector('code[class^=language-]');
|
2023-04-19 10:20:04 -04:00
|
|
|
elem.innerHTML = elem.innerHTML.replace(/<br\s*\/?>/gi, '\n');
|
2020-02-15 09:24:55 -05:00
|
|
|
const content = elem.textContent.trimEnd();
|
2019-12-07 11:23:44 -05:00
|
|
|
|
2022-08-03 14:40:16 -04:00
|
|
|
let langName = '';
|
2017-06-17 10:07:55 -04:00
|
|
|
if (innerCodeElem !== null) {
|
2022-08-03 14:40:16 -04:00
|
|
|
langName = innerCodeElem.className.replace('language-', '');
|
2017-05-28 08:16:21 -04:00
|
|
|
}
|
2017-06-17 10:07:55 -04:00
|
|
|
|
2022-08-02 15:11:02 -04:00
|
|
|
const wrapper = document.createElement('div');
|
|
|
|
elem.parentNode.insertBefore(wrapper, elem);
|
|
|
|
|
2024-05-03 08:35:30 -04:00
|
|
|
const direction = getDirectionFromCodeBlock(elem);
|
2024-02-18 12:55:56 -05:00
|
|
|
if (direction) {
|
|
|
|
wrapper.setAttribute('dir', direction);
|
|
|
|
}
|
|
|
|
|
2023-11-01 13:56:52 -04:00
|
|
|
const ev = createView('content-code-block', {
|
2022-08-02 15:11:02 -04:00
|
|
|
parent: wrapper,
|
|
|
|
doc: content,
|
2023-04-17 08:24:29 -04:00
|
|
|
extensions: viewerExtensions(wrapper),
|
2017-06-17 10:07:55 -04:00
|
|
|
});
|
2018-06-09 05:41:01 -04:00
|
|
|
|
2023-04-17 08:24:29 -04:00
|
|
|
const editor = new SimpleEditorInterface(ev);
|
|
|
|
editor.setMode(langName, content);
|
|
|
|
|
2022-08-02 15:11:02 -04:00
|
|
|
elem.remove();
|
2022-08-03 14:40:16 -04:00
|
|
|
addCopyIcon(ev);
|
2018-06-09 05:41:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-04-19 10:20:04 -04:00
|
|
|
* Highlight all code blocks within the given parent element
|
|
|
|
* @param {HTMLElement} parent
|
2018-06-09 05:41:01 -04:00
|
|
|
*/
|
2023-04-19 10:20:04 -04:00
|
|
|
export function highlightWithin(parent) {
|
|
|
|
const codeBlocks = parent.querySelectorAll('pre');
|
|
|
|
for (const codeBlock of codeBlocks) {
|
|
|
|
highlightElem(codeBlock);
|
|
|
|
}
|
|
|
|
}
|
2023-04-16 11:05:16 -04:00
|
|
|
|
2023-04-19 10:20:04 -04:00
|
|
|
/**
|
|
|
|
* Highlight pre elements on a page
|
|
|
|
*/
|
|
|
|
export function highlight() {
|
|
|
|
const codeBlocks = document.querySelectorAll('.page-content pre, .comment-box .content pre');
|
|
|
|
for (const codeBlock of codeBlocks) {
|
|
|
|
highlightElem(codeBlock);
|
|
|
|
}
|
2017-06-17 10:07:55 -04:00
|
|
|
}
|
|
|
|
|
2017-09-02 08:34:37 -04:00
|
|
|
/**
|
|
|
|
* Create a CodeMirror instance for showing inside the WYSIWYG editor.
|
2023-04-17 08:24:29 -04:00
|
|
|
* Manages a textarea element to hold code content.
|
2022-02-09 14:24:27 -05:00
|
|
|
* @param {HTMLElement} cmContainer
|
2023-04-16 18:48:45 -04:00
|
|
|
* @param {ShadowRoot} shadowRoot
|
2022-02-09 14:24:27 -05:00
|
|
|
* @param {String} content
|
|
|
|
* @param {String} language
|
2023-04-17 08:24:29 -04:00
|
|
|
* @returns {SimpleEditorInterface}
|
2017-09-02 08:34:37 -04:00
|
|
|
*/
|
2023-04-16 18:48:45 -04:00
|
|
|
export function wysiwygView(cmContainer, shadowRoot, content, language) {
|
2023-11-01 13:56:52 -04:00
|
|
|
const ev = createView('content-code-block', {
|
2023-04-16 11:05:16 -04:00
|
|
|
parent: cmContainer,
|
|
|
|
doc: content,
|
2023-04-17 08:24:29 -04:00
|
|
|
extensions: viewerExtensions(cmContainer),
|
2023-04-16 18:48:45 -04:00
|
|
|
root: shadowRoot,
|
2017-06-17 10:07:55 -04:00
|
|
|
});
|
2023-04-16 11:05:16 -04:00
|
|
|
|
2023-04-17 08:24:29 -04:00
|
|
|
const editor = new SimpleEditorInterface(ev);
|
|
|
|
editor.setMode(language, content);
|
2023-04-16 11:05:16 -04:00
|
|
|
|
2023-04-17 08:24:29 -04:00
|
|
|
return editor;
|
2017-09-02 08:34:37 -04:00
|
|
|
}
|
2017-05-28 08:16:21 -04:00
|
|
|
|
2017-09-02 08:34:37 -04:00
|
|
|
/**
|
|
|
|
* Create a CodeMirror instance to show in the WYSIWYG pop-up editor
|
|
|
|
* @param {HTMLElement} elem
|
|
|
|
* @param {String} modeSuggestion
|
2023-04-17 08:24:29 -04:00
|
|
|
* @returns {SimpleEditorInterface}
|
2017-09-02 08:34:37 -04:00
|
|
|
*/
|
2022-02-08 06:10:01 -05:00
|
|
|
export function popupEditor(elem, modeSuggestion) {
|
2019-12-07 11:23:44 -05:00
|
|
|
const content = elem.textContent;
|
2023-04-17 08:24:29 -04:00
|
|
|
const config = {
|
|
|
|
parent: elem.parentElement,
|
|
|
|
doc: content,
|
|
|
|
extensions: [
|
|
|
|
...editorExtensions(elem.parentElement),
|
|
|
|
],
|
|
|
|
};
|
2017-07-01 08:23:46 -04:00
|
|
|
|
2023-04-17 08:24:29 -04:00
|
|
|
// Create editor, hide original input
|
2023-11-01 13:56:52 -04:00
|
|
|
const editor = new SimpleEditorInterface(createView('code-editor', config));
|
2023-04-17 08:24:29 -04:00
|
|
|
editor.setMode(modeSuggestion, content);
|
|
|
|
elem.style.display = 'none';
|
|
|
|
|
|
|
|
return editor;
|
2017-09-02 08:34:37 -04:00
|
|
|
}
|
2017-07-01 08:23:46 -04:00
|
|
|
|
2022-05-17 12:39:31 -04:00
|
|
|
/**
|
|
|
|
* Create an inline editor to replace the given textarea.
|
|
|
|
* @param {HTMLTextAreaElement} textArea
|
|
|
|
* @param {String} mode
|
2023-04-17 08:24:29 -04:00
|
|
|
* @returns {SimpleEditorInterface}
|
2022-05-17 12:39:31 -04:00
|
|
|
*/
|
|
|
|
export function inlineEditor(textArea, mode) {
|
2023-04-16 11:05:16 -04:00
|
|
|
const content = textArea.value;
|
|
|
|
const config = {
|
2023-04-17 08:24:29 -04:00
|
|
|
parent: textArea.parentElement,
|
2023-04-16 11:05:16 -04:00
|
|
|
doc: content,
|
|
|
|
extensions: [
|
2023-04-17 08:24:29 -04:00
|
|
|
...editorExtensions(textArea.parentElement),
|
2023-04-18 17:20:02 -04:00
|
|
|
EditorView.updateListener.of(v => {
|
2023-04-16 11:05:16 -04:00
|
|
|
if (v.docChanged) {
|
|
|
|
textArea.value = v.state.doc.toString();
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create editor view, hide original input
|
2023-11-01 13:56:52 -04:00
|
|
|
const ev = createView('code-input', config);
|
2023-04-17 08:24:29 -04:00
|
|
|
const editor = new SimpleEditorInterface(ev);
|
|
|
|
editor.setMode(mode, content);
|
2023-04-16 11:05:16 -04:00
|
|
|
textArea.style.display = 'none';
|
|
|
|
|
2023-04-17 08:24:29 -04:00
|
|
|
return editor;
|
2019-12-07 11:54:34 -05:00
|
|
|
}
|
|
|
|
|
2017-09-02 08:34:37 -04:00
|
|
|
/**
|
2019-10-16 13:01:35 -04:00
|
|
|
* Get a CodeMirror instance to use for the markdown editor.
|
2017-09-02 08:34:37 -04:00
|
|
|
* @param {HTMLElement} elem
|
2023-04-10 10:01:44 -04:00
|
|
|
* @param {function} onChange
|
|
|
|
* @param {object} domEventHandlers
|
2023-04-11 06:48:58 -04:00
|
|
|
* @param {Array} keyBindings
|
2023-04-17 08:24:29 -04:00
|
|
|
* @returns {EditorView}
|
2017-09-02 08:34:37 -04:00
|
|
|
*/
|
2023-04-11 06:48:58 -04:00
|
|
|
export function markdownEditor(elem, onChange, domEventHandlers, keyBindings) {
|
2019-10-16 13:01:35 -04:00
|
|
|
const content = elem.textContent;
|
2023-04-14 09:08:40 -04:00
|
|
|
const config = {
|
2023-04-17 08:24:29 -04:00
|
|
|
parent: elem.parentElement,
|
2023-04-10 10:01:44 -04:00
|
|
|
doc: content,
|
|
|
|
extensions: [
|
2023-04-18 09:21:22 -04:00
|
|
|
keymap.of(keyBindings),
|
2023-04-17 08:24:29 -04:00
|
|
|
...editorExtensions(elem.parentElement),
|
2023-04-18 17:20:02 -04:00
|
|
|
EditorView.updateListener.of(v => {
|
2023-04-10 10:01:44 -04:00
|
|
|
onChange(v);
|
|
|
|
}),
|
|
|
|
EditorView.domEventHandlers(domEventHandlers),
|
|
|
|
],
|
2023-04-14 09:08:40 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Emit a pre-event public event to allow tweaking of the configure before view creation.
|
2023-04-18 10:08:17 -04:00
|
|
|
window.$events.emitPublic(elem, 'editor-markdown-cm6::pre-init', {editorViewConfig: config});
|
2023-04-10 10:01:44 -04:00
|
|
|
|
2023-04-14 09:08:40 -04:00
|
|
|
// Create editor view, hide original input
|
2023-11-01 13:56:52 -04:00
|
|
|
const ev = createView('markdown-editor', config);
|
2023-04-17 08:24:29 -04:00
|
|
|
(new SimpleEditorInterface(ev)).setMode('markdown', '');
|
2023-04-10 10:01:44 -04:00
|
|
|
elem.style.display = 'none';
|
|
|
|
|
|
|
|
return ev;
|
2023-04-18 17:20:02 -04:00
|
|
|
}
|