2022-02-05 18:15:58 -05:00
|
|
|
|
function elemIsCodeBlock(elem) {
|
2022-02-09 14:24:27 -05:00
|
|
|
|
return elem.tagName.toLowerCase() === 'code-block';
|
2022-02-05 18:15:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
/**
|
|
|
|
|
* @param {Editor} editor
|
|
|
|
|
* @param {String} code
|
|
|
|
|
* @param {String} language
|
|
|
|
|
* @param {function(string, string)} callback (Receives (code: string,language: string)
|
|
|
|
|
*/
|
|
|
|
|
function showPopup(editor, code, language, callback) {
|
2022-11-14 18:19:02 -05:00
|
|
|
|
window.$components.first('code-editor').open(code, language, (newCode, newLang) => {
|
2022-02-09 14:24:27 -05:00
|
|
|
|
callback(newCode, newLang)
|
|
|
|
|
editor.focus()
|
|
|
|
|
});
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
/**
|
|
|
|
|
* @param {Editor} editor
|
|
|
|
|
* @param {CodeBlockElement} codeBlock
|
|
|
|
|
*/
|
|
|
|
|
function showPopupForCodeBlock(editor, codeBlock) {
|
|
|
|
|
showPopup(editor, codeBlock.getContent(), codeBlock.getLanguage(), (newCode, newLang) => {
|
|
|
|
|
codeBlock.setContent(newCode, newLang);
|
|
|
|
|
});
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
/**
|
|
|
|
|
* Define our custom code-block HTML element that we use.
|
|
|
|
|
* Needs to be delayed since it needs to be defined within the context of the
|
|
|
|
|
* child editor window and document, hence its definition within a callback.
|
|
|
|
|
* @param {Editor} editor
|
|
|
|
|
*/
|
|
|
|
|
function defineCodeBlockCustomElement(editor) {
|
|
|
|
|
const doc = editor.getDoc();
|
|
|
|
|
const win = doc.defaultView;
|
|
|
|
|
|
|
|
|
|
class CodeBlockElement extends win.HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.attachShadow({mode: 'open'});
|
2022-09-27 13:44:06 -04:00
|
|
|
|
|
|
|
|
|
const stylesToCopy = document.querySelectorAll('link[rel="stylesheet"]:not([media="print"])');
|
|
|
|
|
const copiedStyles = Array.from(stylesToCopy).map(styleEl => styleEl.cloneNode(false));
|
2022-02-09 14:24:27 -05:00
|
|
|
|
|
|
|
|
|
const cmContainer = document.createElement('div');
|
|
|
|
|
cmContainer.style.pointerEvents = 'none';
|
|
|
|
|
cmContainer.contentEditable = 'false';
|
|
|
|
|
cmContainer.classList.add('CodeMirrorContainer');
|
|
|
|
|
|
2022-09-27 13:44:06 -04:00
|
|
|
|
this.shadowRoot.append(...copiedStyles, cmContainer);
|
2022-02-09 14:24:27 -05:00
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
getLanguage() {
|
|
|
|
|
const getLanguageFromClassList = (classes) => {
|
|
|
|
|
const langClasses = classes.split(' ').filter(cssClass => cssClass.startsWith('language-'));
|
|
|
|
|
return (langClasses[0] || '').replace('language-', '');
|
|
|
|
|
};
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
const code = this.querySelector('code');
|
|
|
|
|
const pre = this.querySelector('pre');
|
|
|
|
|
return getLanguageFromClassList(pre.className) || (code && getLanguageFromClassList(code.className)) || '';
|
2022-02-05 18:15:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
setContent(content, language) {
|
|
|
|
|
if (this.cm) {
|
|
|
|
|
importVersioned('code').then(Code => {
|
|
|
|
|
Code.setContent(this.cm, content);
|
|
|
|
|
Code.setMode(this.cm, language, content);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let pre = this.querySelector('pre');
|
|
|
|
|
if (!pre) {
|
|
|
|
|
pre = doc.createElement('pre');
|
|
|
|
|
this.append(pre);
|
|
|
|
|
}
|
|
|
|
|
pre.innerHTML = '';
|
|
|
|
|
|
|
|
|
|
const code = doc.createElement('code');
|
|
|
|
|
pre.append(code);
|
|
|
|
|
code.innerText = content;
|
|
|
|
|
code.className = `language-${language}`;
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
getContent() {
|
|
|
|
|
const code = this.querySelector('code') || this.querySelector('pre');
|
|
|
|
|
const tempEl = document.createElement('pre');
|
2022-06-21 07:01:06 -04:00
|
|
|
|
tempEl.innerHTML = code.innerHTML.replace(/\ufeff/g, '');
|
|
|
|
|
|
|
|
|
|
const brs = tempEl.querySelectorAll('br');
|
|
|
|
|
for (const br of brs) {
|
|
|
|
|
br.replaceWith('\n');
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
return tempEl.textContent;
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
connectedCallback() {
|
2022-02-27 12:18:08 -05:00
|
|
|
|
const connectedTime = Date.now();
|
2022-02-09 14:24:27 -05:00
|
|
|
|
if (this.cm) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-27 12:18:08 -05:00
|
|
|
|
this.cleanChildContent();
|
2022-03-25 07:13:04 -04:00
|
|
|
|
const content = this.getContent();
|
|
|
|
|
const lines = content.split('\n').length;
|
|
|
|
|
const height = (lines * 19.2) + 18 + 24;
|
|
|
|
|
this.style.height = `${height}px`;
|
2022-02-27 12:18:08 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
const container = this.shadowRoot.querySelector('.CodeMirrorContainer');
|
2022-02-27 12:18:08 -05:00
|
|
|
|
const renderCodeMirror = (Code) => {
|
2022-03-25 07:13:04 -04:00
|
|
|
|
this.cm = Code.wysiwygView(container, content, this.getLanguage());
|
2022-08-10 08:51:54 -04:00
|
|
|
|
setTimeout(() => Code.updateLayout(this.cm), 10);
|
|
|
|
|
setTimeout(() => this.style.height = null, 12);
|
2022-02-27 12:18:08 -05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.importVersioned('code').then((Code) => {
|
|
|
|
|
const timeout = (Date.now() - connectedTime < 20) ? 20 : 0;
|
|
|
|
|
setTimeout(() => renderCodeMirror(Code), timeout);
|
2022-02-09 14:24:27 -05:00
|
|
|
|
});
|
|
|
|
|
}
|
2022-02-27 12:18:08 -05:00
|
|
|
|
|
|
|
|
|
cleanChildContent() {
|
|
|
|
|
const pre = this.querySelector('pre');
|
|
|
|
|
if (!pre) return;
|
|
|
|
|
|
|
|
|
|
for (const preChild of pre.childNodes) {
|
|
|
|
|
if (preChild.nodeName === '#text' && preChild.textContent === '') {
|
|
|
|
|
preChild.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-09 14:24:27 -05:00
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
win.customElements.define('code-block', CodeBlockElement);
|
2022-02-05 18:15:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param {Editor} editor
|
|
|
|
|
* @param {String} url
|
|
|
|
|
*/
|
|
|
|
|
function register(editor, url) {
|
|
|
|
|
|
|
|
|
|
editor.ui.registry.addIcon('codeblock', '<svg width="24" height="24"><path d="M4 3h16c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1H4a1 1 0 0 1-1-1V4c0-.6.4-1 1-1Zm1 2v14h14V5Z"/><path d="M11.103 15.423c.277.277.277.738 0 .922a.692.692 0 0 1-1.106 0l-4.057-3.78a.738.738 0 0 1 0-1.107l4.057-3.872c.276-.277.83-.277 1.106 0a.724.724 0 0 1 0 1.014L7.6 12.012ZM12.897 8.577c-.245-.312-.2-.675.08-.955.28-.281.727-.27 1.027.033l4.057 3.78a.738.738 0 0 1 0 1.107l-4.057 3.872c-.277.277-.83.277-1.107 0a.724.724 0 0 1 0-1.014l3.504-3.412z"/></svg>')
|
|
|
|
|
|
|
|
|
|
editor.ui.registry.addButton('codeeditor', {
|
2022-02-06 16:17:08 -05:00
|
|
|
|
tooltip: 'Insert code block',
|
2022-02-05 18:15:58 -05:00
|
|
|
|
icon: 'codeblock',
|
|
|
|
|
onAction() {
|
|
|
|
|
editor.execCommand('codeeditor');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2022-10-15 10:47:34 -04:00
|
|
|
|
editor.ui.registry.addButton('editcodeeditor', {
|
|
|
|
|
tooltip: 'Edit code block',
|
|
|
|
|
icon: 'edit-block',
|
|
|
|
|
onAction() {
|
|
|
|
|
editor.execCommand('codeeditor');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2022-02-05 18:15:58 -05:00
|
|
|
|
editor.addCommand('codeeditor', () => {
|
2022-02-09 14:24:27 -05:00
|
|
|
|
const selectedNode = editor.selection.getNode();
|
|
|
|
|
const doc = selectedNode.ownerDocument;
|
|
|
|
|
if (elemIsCodeBlock(selectedNode)) {
|
|
|
|
|
showPopupForCodeBlock(editor, selectedNode);
|
|
|
|
|
} else {
|
|
|
|
|
const textContent = editor.selection.getContent({format: 'text'});
|
|
|
|
|
showPopup(editor, textContent, '', (newCode, newLang) => {
|
|
|
|
|
const pre = doc.createElement('pre');
|
|
|
|
|
const code = doc.createElement('code');
|
|
|
|
|
code.classList.add(`language-${newLang}`);
|
|
|
|
|
code.innerText = newCode;
|
|
|
|
|
pre.append(code);
|
|
|
|
|
|
2022-02-27 12:18:08 -05:00
|
|
|
|
editor.insertContent(pre.outerHTML);
|
2022-02-09 14:24:27 -05:00
|
|
|
|
});
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
editor.on('dblclick', event => {
|
|
|
|
|
let selectedNode = editor.selection.getNode();
|
2022-02-09 14:24:27 -05:00
|
|
|
|
if (elemIsCodeBlock(selectedNode)) {
|
|
|
|
|
showPopupForCodeBlock(editor, selectedNode);
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
});
|
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
editor.on('PreInit', () => {
|
|
|
|
|
editor.parser.addNodeFilter('pre', function(elms) {
|
|
|
|
|
for (const el of elms) {
|
2022-07-18 08:18:46 -04:00
|
|
|
|
const wrapper = tinymce.html.Node.create('code-block', {
|
2022-02-09 14:24:27 -05:00
|
|
|
|
contenteditable: 'false',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const spans = el.getAll('span');
|
|
|
|
|
for (const span of spans) {
|
|
|
|
|
span.unwrap();
|
|
|
|
|
}
|
|
|
|
|
el.attr('style', null);
|
|
|
|
|
el.wrap(wrapper);
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
});
|
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
editor.parser.addNodeFilter('code-block', function(elms) {
|
|
|
|
|
for (const el of elms) {
|
2022-02-27 12:18:08 -05:00
|
|
|
|
el.attr('contenteditable', 'false');
|
2022-02-09 14:24:27 -05:00
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
});
|
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
editor.serializer.addNodeFilter('code-block', function(elms) {
|
|
|
|
|
for (const el of elms) {
|
|
|
|
|
el.unwrap();
|
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
|
});
|
2022-02-09 14:24:27 -05:00
|
|
|
|
});
|
2022-02-05 18:15:58 -05:00
|
|
|
|
|
2022-10-15 10:47:34 -04:00
|
|
|
|
editor.ui.registry.addContextToolbar('codeeditor', {
|
|
|
|
|
predicate: function (node) {
|
|
|
|
|
return node.nodeName.toLowerCase() === 'code-block';
|
|
|
|
|
},
|
|
|
|
|
items: 'editcodeeditor',
|
|
|
|
|
position: 'node',
|
|
|
|
|
scope: 'node'
|
|
|
|
|
});
|
|
|
|
|
|
2022-02-09 14:24:27 -05:00
|
|
|
|
editor.on('PreInit', () => {
|
|
|
|
|
defineCodeBlockCustomElement(editor);
|
2022-02-05 18:15:58 -05:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param {WysiwygConfigOptions} options
|
|
|
|
|
* @return {register}
|
|
|
|
|
*/
|
|
|
|
|
export function getPlugin(options) {
|
|
|
|
|
return register;
|
|
|
|
|
}
|