<script src="{{ asset('bundles/uvdeskcoreframework/js/tinymce/tinymce.min.js') }}"></script>
<script type="text/javascript">
var sfTinyMce = {
tinymce : tinymce,
options : {
browser_spellcheck : true,
selector: '.uv-view textarea',
branding: false,
relative_urls : false,
remove_script_host : false,
image_title: true,
autoresize_max_height: 350,
theme: 'modern',
menubar: false,
height: 150,
toolbar: 'undo redo | bold italic | forecolor | bullist | numlist | link | spellchecker | code | image | styleselect',
spellchecker_languages: 'English=en',
plugins: [
'spellchecker advlist autolink lists link charmap print preview hr anchor pagebreak',
'searchreplace wordcount visualblocks visualchars code fullscreen',
'media nonbreaking table directionality',
'emoticons template paste textcolor colorpicker textpattern codesample toc',
'autoresize image imagetools',
'mention',
],
invalid_elements : 'script,style,iframe,input,textarea,form,onmouseover,onmouseout,onclick',
paste_data_images: true,
mentions : {
source: function(){
return [];
},
},
},
init : function (options){
if(typeof(options.setup) === 'function'){
let optionsSetup = options.setup;
this.options.setup = function(editor){
sfTinyMce.initImageUpload(editor);
optionsSetup(editor);
}
delete options.setup;
}else{
this.options.setup = function(editor){
sfTinyMce.initImageUpload(editor);
}
delete options.setup;
}
this.options = $.extend({}, this.options, options)
window.tinymce.dom.Event.domLoaded = true;
tinymce.init(this.options);
},
html : function(selector, html){
tinymce.get(selector).setContent(html);
},
initImageUpload : function(editor) {
// create input and insert in the DOM
var inp = $('<input id="tinymce-uploader" type="file" name="pic" accept="image/*" style="display:none">');
$(editor.getElement()).parent().append(inp);
// add the image upload button to the editor toolbar
editor.addButton('imageupload', {
text: '',
icon: 'image',
onclick: function(e) { // when toolbar button is clicked, open file select modal
inp.trigger('click');
}
});
// when a file is selected, upload it to the server
inp.on("change", function(e){
sfTinyMce.uploadFile($(this), editor);
});
},
uploadFile : function(input, editor) {
sendFile(input.get(0).files).done(function(json){
//remove loading image
if(json['error'] != ''){
var response = {
'alertClass' : 'danger',
'alertMessage' : json['error'],
};
app.appView.hideLoader();
app.appView.renderResponseAlert(response);
}else if(json['fileNames']){
$.each(json['fileNames'], function(key, path){
editor.insertContent('<img class="content-img" src="' + path + '"/>');
});
}
if(json.location != undefined)
window.location = json.location;
})
.fail(function(xhr) {
if(url = xhr.getResponseHeader('Location'))
window.location = url;
app.appView.hideLoader();
app.appView.renderResponseAlert(warningResponse);
})
;
},
}
function sendFile(files) {
}
function sendUrls(url) {
}
function removeFile(file) {
}
addTranslateButton = function(editor) {
}
</script>