2022-02-05 18:15:58 -05:00
|
|
|
import DrawIO from "../services/drawio";
|
|
|
|
|
|
|
|
let pageEditor = null;
|
|
|
|
let currentNode = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @type {WysiwygConfigOptions}
|
|
|
|
*/
|
|
|
|
let options = {};
|
|
|
|
|
|
|
|
function isDrawing(node) {
|
|
|
|
return node.hasAttribute('drawio-diagram');
|
|
|
|
}
|
|
|
|
|
|
|
|
function showDrawingManager(mceEditor, selectedNode = null) {
|
|
|
|
pageEditor = mceEditor;
|
|
|
|
currentNode = selectedNode;
|
2022-11-16 10:21:22 -05:00
|
|
|
|
|
|
|
/** @type {ImageManager} **/
|
|
|
|
const imageManager = window.$components.first('image-manager');
|
|
|
|
imageManager.show(function (image) {
|
2022-02-05 18:15:58 -05:00
|
|
|
if (selectedNode) {
|
2022-09-05 10:06:47 -04:00
|
|
|
const imgElem = selectedNode.querySelector('img');
|
|
|
|
pageEditor.undoManager.transact(function () {
|
|
|
|
pageEditor.dom.setAttrib(imgElem, 'src', image.url);
|
|
|
|
pageEditor.dom.setAttrib(selectedNode, 'drawio-diagram', image.id);
|
|
|
|
});
|
2022-02-05 18:15:58 -05:00
|
|
|
} else {
|
2022-09-05 10:06:47 -04:00
|
|
|
const imgHTML = `<div drawio-diagram="${image.id}" contenteditable="false"><img src="${image.url}"></div>`;
|
2022-02-05 18:15:58 -05:00
|
|
|
pageEditor.insertContent(imgHTML);
|
|
|
|
}
|
|
|
|
}, 'drawio');
|
|
|
|
}
|
|
|
|
|
|
|
|
function showDrawingEditor(mceEditor, selectedNode = null) {
|
|
|
|
pageEditor = mceEditor;
|
|
|
|
currentNode = selectedNode;
|
|
|
|
DrawIO.show(options.drawioUrl, drawingInit, updateContent);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function updateContent(pngData) {
|
|
|
|
const id = "image-" + Math.random().toString(16).slice(2);
|
|
|
|
const loadingImage = window.baseUrl('/loading.gif');
|
|
|
|
|
|
|
|
const handleUploadError = (error) => {
|
|
|
|
if (error.status === 413) {
|
|
|
|
window.$events.emit('error', options.translations.serverUploadLimitText);
|
|
|
|
} else {
|
|
|
|
window.$events.emit('error', options.translations.imageUploadErrorText);
|
|
|
|
}
|
|
|
|
console.log(error);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Handle updating an existing image
|
|
|
|
if (currentNode) {
|
|
|
|
DrawIO.close();
|
|
|
|
let imgElem = currentNode.querySelector('img');
|
|
|
|
try {
|
|
|
|
const img = await DrawIO.upload(pngData, options.pageId);
|
2022-09-05 10:06:47 -04:00
|
|
|
pageEditor.undoManager.transact(function () {
|
|
|
|
pageEditor.dom.setAttrib(imgElem, 'src', img.url);
|
|
|
|
pageEditor.dom.setAttrib(currentNode, 'drawio-diagram', img.id);
|
|
|
|
});
|
2022-02-05 18:15:58 -05:00
|
|
|
} catch (err) {
|
|
|
|
handleUploadError(err);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(async () => {
|
|
|
|
pageEditor.insertContent(`<div drawio-diagram contenteditable="false"><img src="${loadingImage}" id="${id}"></div>`);
|
|
|
|
DrawIO.close();
|
|
|
|
try {
|
|
|
|
const img = await DrawIO.upload(pngData, options.pageId);
|
2022-09-05 10:06:47 -04:00
|
|
|
pageEditor.undoManager.transact(function () {
|
|
|
|
pageEditor.dom.setAttrib(id, 'src', img.url);
|
|
|
|
pageEditor.dom.get(id).parentNode.setAttribute('drawio-diagram', img.id);
|
|
|
|
});
|
2022-02-05 18:15:58 -05:00
|
|
|
} catch (err) {
|
|
|
|
pageEditor.dom.remove(id);
|
|
|
|
handleUploadError(err);
|
|
|
|
}
|
|
|
|
}, 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function drawingInit() {
|
|
|
|
if (!currentNode) {
|
|
|
|
return Promise.resolve('');
|
|
|
|
}
|
|
|
|
|
|
|
|
let drawingId = currentNode.getAttribute('drawio-diagram');
|
|
|
|
return DrawIO.load(drawingId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {WysiwygConfigOptions} providedOptions
|
|
|
|
* @return {function(Editor, string)}
|
|
|
|
*/
|
|
|
|
export function getPlugin(providedOptions) {
|
|
|
|
options = providedOptions;
|
|
|
|
return function(editor, url) {
|
|
|
|
|
|
|
|
editor.addCommand('drawio', () => {
|
|
|
|
const selectedNode = editor.selection.getNode();
|
|
|
|
showDrawingEditor(editor, isDrawing(selectedNode) ? selectedNode : null);
|
|
|
|
});
|
|
|
|
|
|
|
|
editor.ui.registry.addIcon('diagram', `<svg width="24" height="24" fill="${options.darkMode ? '#BBB' : '#000000'}" xmlns="http://www.w3.org/2000/svg"><path d="M20.716 7.639V2.845h-4.794v1.598h-7.99V2.845H3.138v4.794h1.598v7.99H3.138v4.794h4.794v-1.598h7.99v1.598h4.794v-4.794h-1.598v-7.99zM4.736 4.443h1.598V6.04H4.736zm1.598 14.382H4.736v-1.598h1.598zm9.588-1.598h-7.99v-1.598H6.334v-7.99h1.598V6.04h7.99v1.598h1.598v7.99h-1.598zm3.196 1.598H17.52v-1.598h1.598zM17.52 6.04V4.443h1.598V6.04zm-4.21 7.19h-2.79l-.582 1.599H8.643l2.717-7.191h1.119l2.724 7.19h-1.302zm-2.43-1.006h2.086l-1.039-3.06z"/></svg>`)
|
|
|
|
|
|
|
|
editor.ui.registry.addSplitButton('drawio', {
|
2022-02-06 16:17:08 -05:00
|
|
|
tooltip: 'Insert/edit drawing',
|
2022-02-05 18:15:58 -05:00
|
|
|
icon: 'diagram',
|
|
|
|
onAction() {
|
|
|
|
editor.execCommand('drawio');
|
2022-07-25 14:56:01 -04:00
|
|
|
// Hack to de-focus the tinymce editor toolbar
|
|
|
|
window.document.body.dispatchEvent(new Event('mousedown', {bubbles: true}));
|
2022-02-05 18:15:58 -05:00
|
|
|
},
|
|
|
|
fetch(callback) {
|
|
|
|
callback([
|
|
|
|
{
|
|
|
|
type: 'choiceitem',
|
2022-02-06 16:17:08 -05:00
|
|
|
text: 'Drawing manager',
|
2022-02-05 18:15:58 -05:00
|
|
|
value: 'drawing-manager',
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
},
|
|
|
|
onItemAction(api, value) {
|
|
|
|
if (value === 'drawing-manager') {
|
|
|
|
const selectedNode = editor.selection.getNode();
|
|
|
|
showDrawingManager(editor, isDrawing(selectedNode) ? selectedNode : null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
editor.on('dblclick', event => {
|
|
|
|
let selectedNode = editor.selection.getNode();
|
|
|
|
if (!isDrawing(selectedNode)) return;
|
|
|
|
showDrawingEditor(editor, selectedNode);
|
|
|
|
});
|
|
|
|
|
|
|
|
editor.on('SetContent', function () {
|
2022-07-17 13:33:03 -04:00
|
|
|
const drawings = editor.dom.select('body > div[drawio-diagram]');
|
2022-02-05 18:15:58 -05:00
|
|
|
if (!drawings.length) return;
|
|
|
|
|
|
|
|
editor.undoManager.transact(function () {
|
2022-07-18 08:18:46 -04:00
|
|
|
for (const drawing of drawings) {
|
|
|
|
drawing.setAttribute('contenteditable', 'false');
|
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|