mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-03 14:23:42 +08:00
31 lines
842 B
JavaScript
31 lines
842 B
JavaScript
|
/**
|
||
|
* @param {Editor} editor
|
||
|
* @param {String} url
|
||
|
*/
|
||
|
function register(editor, url) {
|
||
|
|
||
|
// Custom Image picker button
|
||
|
editor.ui.registry.addButton('imagemanager-insert', {
|
||
|
title: 'Insert an image',
|
||
|
icon: 'image',
|
||
|
tooltip: 'Insert an image',
|
||
|
onAction() {
|
||
|
window.ImageManager.show(function (image) {
|
||
|
const imageUrl = image.thumbs.display || image.url;
|
||
|
let html = `<a href="${image.url}" target="_blank">`;
|
||
|
html += `<img src="${imageUrl}" alt="${image.name}">`;
|
||
|
html += '</a>';
|
||
|
editor.execCommand('mceInsertContent', false, html);
|
||
|
}, 'gallery');
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @param {WysiwygConfigOptions} options
|
||
|
* @return {register}
|
||
|
*/
|
||
|
export function getPlugin(options) {
|
||
|
return register;
|
||
|
}
|