openstamanager/assets/src/js/functions/textarea.js

141 lines
4.4 KiB
JavaScript

/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* Funzione per l'inizializzazione dei campi textarea.
* @param input
*/
function initTextareaInput(input) {
autosize($(input));
return true;
}
function initCharCounter(input) {
let $input = $(input);
if (input.hasAttribute('maxlength')) {
$input.maxlength({
warningClass: "help-block",
limitReachedClass: "help-block text-danger",
preText: '',
separator: ' / ',
postText: '',
showMaxLength: true,
placement: 'bottom-right-inside',
utf8: false, //Default: false
appendToParent: true,
alwaysShow: true,
//threshold: 150,
twoCharLinebreak: false, //count linebreak as 2 characters to match IE/Chrome textarea validation. Default: true.
warningClass: "small form-text text-muted",
limitReachedClass: "small form-text text-warning",
limitExceededClass: "small form-text text-danger",
});
} else {
$input.attr('maxlength', '65535');
$input.maxlength({
warningClass: "help-block",
limitReachedClass: "help-block text-danger",
showMaxLength: false,
placement: 'bottom-right-inside',
utf8: false, //Default: false
twoCharLinebreak: false, //count linebreak as 2 characters to match IE/Chrome textarea validation. Default: true.
appendToParent: true,
alwaysShow: true
});
}
$input.on('autosize:resized', function() {
$(this).trigger('maxlength.reposition');
});
return true;
}
function waitCKEditor(input) {
setTimeout(function () {
initEditorInput(input);
}, 100);
}
/**
* Funzione per l'inizializzazione dei campi editor.
* @param input
*/
function initEditorInput(input) {
if (window.CKEDITOR && CKEDITOR.status === "loaded") {
initCKEditor(input);
} else {
waitCKEditor(input);
}
return true;
}
function initCKEditor(input) {
let $input = $(input);
let name = input.getAttribute("id");
if($input.prop('required')){
$input.data('mandatory', '1');
}
// Controllo su istanza già esistente
let instance = CKEDITOR.instances[name];
if (instance) {
instance.destroy();
}
// Avvio di CKEditor
CKEDITOR.replace(name, {
toolbar: (input.hasAttribute('use_full_ckeditor')) ? globals.ckeditorToolbar_Full : globals.ckeditorToolbar,
language: globals.locale,
scayt_autoStartup: true,
scayt_sLang: globals.full_locale,
scayt_disableOptionsStorage: 'lang',
disableNativeSpellChecker: false,
//filebrowserUploadUrl: globals.rootdir+'/ckeditor_fileupload/ajaxfile.php?type=file',
filebrowserImageUploadUrl: globals.rootdir+"/actions.php?type=image&op=aggiungi-allegato&id_module="+globals.id_module+"&id_plugin="+globals.id_plugin+"&id_record="+globals.id_record,
filebrowserUploadMethod: 'form',
fullPage: (input.hasAttribute('use_full_ckeditor')) ? true : false,
allowedContent: (input.hasAttribute('use_full_ckeditor')) ? true : false,
versionCheck: false,
extraPlugins: 'scayt,textwatcher,autocomplete,textmatch,emoji',
skin: 'moono-lisa',
});
// Gestione di eventi noti
CKEDITOR.instances[name].on("key", function (event) {
$input.trigger("keydown", event.data);
$input.trigger("keyup", event.data);
});
CKEDITOR.instances[name].on("change", function (event) {
$input.trigger("change", event);
});
CKEDITOR.instances[name].on("focus", function (event) {
$input.trigger("focus", event);
});
}