244 lines
7.3 KiB
JavaScript
244 lines
7.3 KiB
JavaScript
|
/**
|
||
|
|
||
|
* Initialisation de TinyMCE
|
||
|
|
||
|
*/
|
||
|
|
||
|
tinymce.init({
|
||
|
// Classe où appliquer l'éditeur
|
||
|
selector: ".editorWysiwyg",
|
||
|
// Aperçu dans le pied de page
|
||
|
setup:function(ed) {
|
||
|
ed.on('change', function(e) {
|
||
|
if (ed.id === 'themeFooterText') {
|
||
|
$("#footerText").html(tinyMCE.get('themeFooterText').getContent());
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
// Langue
|
||
|
language: "fr_FR",
|
||
|
// Plugins
|
||
|
plugins: "advlist anchor autolink autoresize autosave colorpicker contextmenu fullscreen hr lists paste searchreplace stickytoolbar tabfocus template textcolor visualblocks",
|
||
|
// Contenu de la barre d'outils
|
||
|
toolbar: "restoredraft | undo redo | styleselect | bold italic forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist | visualblocks fullscreen",
|
||
|
// Cibles de la target
|
||
|
target_list: [
|
||
|
{title: 'None', value: ''},
|
||
|
{title: 'Nouvel onglet', value: '_blank'}
|
||
|
],
|
||
|
// Target pour lightbox
|
||
|
rel_list: [
|
||
|
{title: 'None', value: ''},
|
||
|
{title: 'Popup intégrée (Lity)', value: 'data-lity'},
|
||
|
{title: 'Diaporama d\'images (SimpleLightbox)', value: 'gallery'}
|
||
|
],
|
||
|
// Titre des images
|
||
|
image_title: true,
|
||
|
// Pages internes
|
||
|
link_list: baseUrl + "core/vendor/tinymce/links.php",
|
||
|
// Contenu du menu contextuel
|
||
|
contextmenu: "cut copy paste pastetext | selectall searchreplace ",
|
||
|
// Fichiers CSS à intégrer à l'éditeur
|
||
|
content_css: [
|
||
|
baseUrl + "core/layout/common.css",
|
||
|
baseUrl + "core/vendor/tinymce/content.css",
|
||
|
baseUrl + "site/data/theme.css",
|
||
|
baseUrl + "site/data/custom.css"
|
||
|
],
|
||
|
// Classe à ajouter à la balise body dans l'iframe
|
||
|
body_class: "editorWysiwyg",
|
||
|
// Cache les menus
|
||
|
menubar: false,
|
||
|
// URL menu contextuel
|
||
|
link_context_toolbar: true,
|
||
|
// Cache la barre de statut
|
||
|
statusbar: false,
|
||
|
// Autorise tous les éléments
|
||
|
valid_elements :"*[*]",
|
||
|
valid_children : "*[*]",
|
||
|
// Autorise l'ajout de script
|
||
|
// extended_valid_elements: "script[language|type|src]",
|
||
|
// Bloque le dimensionnement des médias (car automatiquement en fullsize avec fitvids pour le responsive)
|
||
|
media_dimensions: true,
|
||
|
// Désactiver la dimension des images
|
||
|
image_dimensions: true,
|
||
|
// Active l'onglet avancé lors de l'ajout d'une image
|
||
|
image_advtab: true,
|
||
|
// Urls absolues
|
||
|
relative_urls: false,
|
||
|
// Url de base
|
||
|
document_base_url: baseUrl,
|
||
|
// Gestionnaire de fichiers
|
||
|
//filemanager_access_key: privateKey,
|
||
|
//external_filemanager_path: baseUrl + "core/vendor/filemanager/",
|
||
|
//external_plugins: {
|
||
|
// "filemanager": baseUrl + "core/vendor/filemanager/plugin.min.js"
|
||
|
//},
|
||
|
// Thème mobile
|
||
|
// mobile: {
|
||
|
// theme: "mobile",
|
||
|
// plugins: [ 'autosave', 'lists', 'autolink' ],
|
||
|
// toolbar: [ 'undo', 'bold', 'italic', 'styleselect' ]
|
||
|
//},
|
||
|
// Contenu du bouton insérer
|
||
|
insert_button_items: "image link media template codesample inserttable | hr | anchor",
|
||
|
// Contenu du bouton formats
|
||
|
style_formats: [
|
||
|
{title: "Headers", items: [
|
||
|
{title: "Header 1", format: "h1"},
|
||
|
{title: "Header 2", format: "h2"},
|
||
|
{title: "Header 3", format: "h3"},
|
||
|
{title: "Header 4", format: "h4"}
|
||
|
]},
|
||
|
{title: "Inline", items: [
|
||
|
{title: "Bold", icon: "bold", format: "bold"},
|
||
|
{title: "Italic", icon: "italic", format: "italic"},
|
||
|
{title: "Underline", icon: "underline", format: "underline"},
|
||
|
{title: "Strikethrough", icon: "strikethrough", format: "strikethrough"},
|
||
|
{title: "Superscript", icon: "superscript", format: "superscript"},
|
||
|
{title: "Subscript", icon: "subscript", format: "subscript"},
|
||
|
{title: "Code", icon: "code", format: "code"}
|
||
|
]},
|
||
|
{title: "Blocks", items: [
|
||
|
{title: "Paragraph", format: "p"},
|
||
|
{title: "Blockquote", format: "blockquote"},
|
||
|
{title: "Div", format: "div"},
|
||
|
{title: "Pre", format: "pre"}
|
||
|
]},
|
||
|
{title: "Alignment", items: [
|
||
|
{title: "Left", icon: "alignleft", format: "alignleft"},
|
||
|
{title: "Center", icon: "aligncenter", format: "aligncenter"},
|
||
|
{title: "Right", icon: "alignright", format: "alignright"},
|
||
|
{title: "Justify", icon: "alignjustify", format: "alignjustify"}
|
||
|
]}
|
||
|
],
|
||
|
// Templates
|
||
|
templates: [
|
||
|
{
|
||
|
title: "Bloc de texte",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/block.html",
|
||
|
description: "Bloc de texte avec un titre."
|
||
|
},
|
||
|
{
|
||
|
title: "Effet accordéon",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/accordion.html",
|
||
|
description: "Bloc de texte avec effet accordéon."
|
||
|
},
|
||
|
{
|
||
|
title: "Grille symétrique : 6 - 6",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/col6.html",
|
||
|
description: "Grille adaptative sur 12 colonnes, sur mobile elles passent les unes en dessous des autres."
|
||
|
},
|
||
|
{
|
||
|
title: "Grille symétrique : 4 - 4 - 4",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/col4.html",
|
||
|
description: "Grille adaptative sur 12 colonnes, sur mobile elles passent les unes en dessous des autres."
|
||
|
},
|
||
|
{
|
||
|
title: "Grille symétrique : 3 - 3 - 3 - 3",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/col3.html",
|
||
|
description: "Grille adaptative sur 12 colonnes, sur mobile elles passent les unes en dessous des autres."
|
||
|
},
|
||
|
{
|
||
|
title: "Grille asymétrique : 4 - 8",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/col4-8.html",
|
||
|
description: "Grille adaptative sur 12 colonnes, sur mobile elles passent les unes en dessous des autres."
|
||
|
},
|
||
|
{
|
||
|
title: "Grille asymétrique : 8 - 4",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/col8-4.html",
|
||
|
description: "Grille adaptative sur 12 colonnes, sur mobile elles passent les unes en dessous des autres."
|
||
|
},
|
||
|
{
|
||
|
title: "Grille asymétrique : 2 - 10",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/col2-10.html",
|
||
|
description: "Grille adaptative sur 12 colonnes, sur mobile elles passent les unes en dessous des autres."
|
||
|
},
|
||
|
{
|
||
|
title: "Grille asymétrique : 10 - 2",
|
||
|
url: baseUrl + "core/vendor/tinymce/templates/col10-2.html",
|
||
|
description: "Grille adaptative sur 12 colonnes, sur mobile elles passent les unes en dessous des autres."
|
||
|
}
|
||
|
]
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
tinymce.PluginManager.add('stickytoolbar', function(editor, url) {
|
||
|
editor.on('init', function() {
|
||
|
setSticky();
|
||
|
});
|
||
|
|
||
|
$(window).on('scroll', function() {
|
||
|
setSticky();
|
||
|
});
|
||
|
|
||
|
function setSticky() {
|
||
|
var container = editor.editorContainer;
|
||
|
var toolbars = $(container).find('.mce-toolbar-grp');
|
||
|
var statusbar = $(container).find('.mce-statusbar');
|
||
|
|
||
|
if (isSticky()) {
|
||
|
$(container).css({
|
||
|
paddingTop: toolbars.outerHeight()
|
||
|
});
|
||
|
|
||
|
if (isAtBottom()) {
|
||
|
toolbars.css({
|
||
|
top: 'auto',
|
||
|
bottom: statusbar.outerHeight(),
|
||
|
position: 'absolute',
|
||
|
width: '100%',
|
||
|
borderBottom: 'none'
|
||
|
});
|
||
|
} else {
|
||
|
toolbars.css({
|
||
|
top: 45,
|
||
|
bottom: 'auto',
|
||
|
position: 'fixed',
|
||
|
width: $(container).width(),
|
||
|
borderBottom: '1px solid rgba(0,0,0,0.2)'
|
||
|
});
|
||
|
}
|
||
|
} else {
|
||
|
$(container).css({
|
||
|
paddingTop: 0
|
||
|
});
|
||
|
|
||
|
toolbars.css({
|
||
|
top:0,
|
||
|
position: 'relative',
|
||
|
width: 'auto',
|
||
|
borderBottom: 'none'
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function isSticky() {
|
||
|
var container = editor.editorContainer,
|
||
|
editorTop = container.getBoundingClientRect().top;
|
||
|
|
||
|
if (editorTop < 0) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
function isAtBottom() {
|
||
|
var container = editor.editorContainer,
|
||
|
editorTop = container.getBoundingClientRect().top;
|
||
|
|
||
|
var toolbarHeight = $(container).find('.mce-toolbar-grp').outerHeight();
|
||
|
var footerHeight = $(container).find('.mce-statusbar').outerHeight();
|
||
|
|
||
|
var hiddenHeight = -($(container).outerHeight() - toolbarHeight - footerHeight);
|
||
|
|
||
|
if (editorTop < hiddenHeight) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
});
|