2022-09-07 20:52:56 +08:00
|
|
|
/* eslint no-underscore-dangle: "off" */
|
|
|
|
/* eslint no-use-before-define: "off" */
|
|
|
|
/* eslint no-restricted-syntax: ["off", "BinaryExpression[operator='in']"] */
|
|
|
|
/* global tinymce I18n HelperModule validateFileSize */
|
|
|
|
|
|
|
|
tinymce.PluginManager.add('customimageuploader', (editor) => {
|
|
|
|
var iframe;
|
|
|
|
var textAreaElement = $('#' + editor.id);
|
|
|
|
|
|
|
|
function loadFiles() {
|
|
|
|
let $fileInput;
|
|
|
|
let hitFileLimit;
|
|
|
|
$('#tinymce_current_upload').remove();
|
|
|
|
$fileInput = $('<input type="file" multiple accept="image/*" id="tinymce_current_upload" style="display: none;">')
|
|
|
|
.prependTo(editor.container);
|
|
|
|
$fileInput.click();
|
|
|
|
|
|
|
|
$fileInput.change(function() {
|
|
|
|
let formData = new FormData();
|
|
|
|
let files = $('#tinymce_current_upload')[0].files;
|
|
|
|
|
|
|
|
Array.from(files).forEach(file => formData.append('files[]', file, file.name));
|
|
|
|
|
|
|
|
Array.from(files).every(file => {
|
|
|
|
if (!validateFileSize(file, true)) {
|
|
|
|
hitFileLimit = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (hitFileLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$.post({
|
|
|
|
url: textAreaElement.data('tinymce-asset-path'),
|
|
|
|
data: formData,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
|
|
|
success: function(data) {
|
|
|
|
handleResponse(data);
|
|
|
|
$('#tinymce_current_upload').remove();
|
|
|
|
},
|
|
|
|
error: function(response) {
|
|
|
|
HelperModule.flashAlertMsg(response.responseJSON.errors, 'danger');
|
|
|
|
$('#tinymce_current_upload').remove();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleResponse(response) {
|
|
|
|
if (response.errors) {
|
|
|
|
handleError(response.errors.join('<br>'));
|
|
|
|
} else {
|
|
|
|
response.images.forEach(el => editor.execCommand('mceInsertContent', false, buildHTML(el)));
|
2022-09-09 21:42:53 +08:00
|
|
|
updateActiveImages();
|
2022-09-07 20:52:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleError(error) {
|
|
|
|
HelperModule.flashAlertMsg(error, 'danger');
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildHTML(image) {
|
|
|
|
return `<img src="${image.url}"
|
|
|
|
data-mce-token="${image.token}"
|
|
|
|
alt="description-${image.token}" />`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create hidden field for images
|
|
|
|
function createImageHiddenField() {
|
2022-09-09 21:42:53 +08:00
|
|
|
textAreaElement.parent().find('input.tiny-mce-images').remove();
|
|
|
|
$('<input type="hidden" class="tiny-mce-images" name="tiny_mce_images" value="[]">').appendTo(textAreaElement.parent());
|
2022-09-07 20:52:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Finding images in text
|
|
|
|
function updateActiveImages() {
|
2022-09-09 21:42:53 +08:00
|
|
|
const imageContainer = $(`#${editor.id}`).parent().find('input.tiny-mce-images');
|
|
|
|
iframe = $(`#${editor.id}`).next().find('.tox-edit-area iframe').contents();
|
|
|
|
const images = $.map($('img', iframe), e => e.dataset.mceToken);
|
2022-09-07 20:52:56 +08:00
|
|
|
if (imageContainer === undefined) {
|
|
|
|
createImageHiddenField();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Small fix for ResultText when you cancel after change MarvinJS
|
|
|
|
if (imageContainer === undefined) return [];
|
|
|
|
|
2022-09-09 21:42:53 +08:00
|
|
|
imageContainer.val(JSON.stringify(images));
|
2022-09-07 20:52:56 +08:00
|
|
|
return JSON.stringify(images);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a button that opens a window
|
|
|
|
editor.ui.registry.addButton('customimageuploader', {
|
|
|
|
tooltip: I18n.t('tiny_mce.upload_window_label'),
|
|
|
|
icon: 'image',
|
|
|
|
onAction: loadFiles
|
|
|
|
});
|
|
|
|
|
|
|
|
// Adds a menu item to the tools menu
|
|
|
|
editor.ui.registry.addMenuItem('customimageuploader', {
|
|
|
|
text: I18n.t('tiny_mce.upload_window_label'),
|
|
|
|
icon: 'image',
|
|
|
|
context: 'insert',
|
|
|
|
onAction: loadFiles
|
|
|
|
});
|
|
|
|
|
|
|
|
editor.on('NodeChange', function() {
|
|
|
|
// Check editor status
|
|
|
|
if (this.initialized) {
|
2022-09-09 21:42:53 +08:00
|
|
|
updateActiveImages();
|
2022-09-07 20:52:56 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
createImageHiddenField();
|
|
|
|
|
|
|
|
return {
|
|
|
|
getMetadata: () => ({
|
|
|
|
name: 'Custom Image Uploader Plugin'
|
|
|
|
})
|
|
|
|
};
|
|
|
|
});
|