ZwiiCMS/core/module/theme/view/footer/footer.js.php

287 lines
10 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
/**
* This file is part of Zwii.
*
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*
* @author Rémi Jean <remi.jean@outlook.com>
* @copyright Copyright (C) 2008-2018, Rémi Jean
* @license GNU General Public License, version 3
2019-05-13 20:38:07 +02:00
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2020-01-21 09:14:04 +01:00
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
2018-04-02 08:29:19 +02:00
* @link http://zwiicms.com/
*/
/**
* Aperçu en direct
*/
$("input, select").on("change", function() {
2019-03-19 06:59:28 +01:00
// Import des polices de caractères
var footerFont = $("#themeFooterFont").val();
var css = "@import url('https://fonts.googleapis.com/css?family=" + footerFont + "');";
2018-04-02 08:29:19 +02:00
// Couleurs du pied de page
var colors = core.colorVariants($("#themeFooterBackgroundColor").val());
var textColor = $("#themeFooterTextColor").val();
2020-03-16 08:59:10 +01:00
var css = "footer {background-color:" + colors.normal + ";color:" + textColor + "}";
2018-04-02 08:29:19 +02:00
css += "footer a{color:" + textColor + "}";
2020-03-16 08:59:10 +01:00
// Couleur de l'éditeur
css += ".editorWysiwyg{background-color:" + colors.normal + " !important; color:" + textColor + " !important;}";
2018-04-02 08:29:19 +02:00
// Hauteur du pied de page
//css += "#footersiteLeft, #footersiteCenter, #footersiteRight, #footerbodyLeft, #footerbodyCenter, #footerbodyRight {margin:" + $("#themeFooterHeight").val() + " 0}";
css += "footer #footersite > div{margin:" + $("#themeFooterHeight").val() + " 0}";
css += "footer #footerbody > div{margin:" + $("#themeFooterHeight").val() + " 0}";
2018-04-02 08:29:19 +02:00
// Alignement du contenu
css += "#footerSocials{text-align:" + $("#themeFooterSocialsAlign").val() + "}";
css += "#footerText > p {text-align:" + $("#themeFooterTextAlign").val() + "}";
2018-04-02 08:29:19 +02:00
css += "#footerCopyright{text-align:" + $("#themeFooterCopyrightAlign").val() + "}";
2019-03-19 06:59:28 +01:00
// Taille, couleur, épaisseur et capitalisation du titre de la bannière
css += "footer span, #footerText > p {color:" + $("#themeFooterTextColor").val() + ";font-family:'" + footerFont.replace(/\+/g, " ") + "',sans-serif;font-weight:" + $("#themeFooterFontWeight").val() + ";font-size:" + $("#themeFooterFontSize").val() + ";text-transform:" + $("#themeFooterTextTransform").val() + "}";
2018-04-02 08:29:19 +02:00
// Marge
if($("#themeFooterMargin").is(":checked")) {
2019-11-12 19:01:53 +01:00
css += 'footer{padding: 0 20px;}';
2018-04-02 08:29:19 +02:00
}
else {
css += 'footer{padding:0}';
2018-04-02 08:29:19 +02:00
}
// Ajout du css au DOM
$("#themePreview").remove();
$("<style>")
.attr("type", "text/css")
.attr("id", "themePreview")
.text(css)
.appendTo("footer");
2018-04-02 08:29:19 +02:00
// Position du pied de page
switch($("#themeFooterPosition").val()) {
case 'hide':
$("footer").hide();
break;
case 'site':
$("footer").show().appendTo("#site");
$("footer > div:first-child").removeAttr("class");
$("footer > div:first-child").addClass("container");
2018-04-02 08:29:19 +02:00
break;
case 'body':
$("footer").show().appendTo("body");
$("footer > div:first-child").removeAttr("class");
$("footer > div:first-child").addClass("container-large");
2018-04-02 08:29:19 +02:00
break;
}
// Réduire la marge du paragraphe de la zone de texte enrichie
$("#footerText > p").css("margin-top","0");
$("#footerText > p").css("margin-bottom","0");
2018-04-02 08:29:19 +02:00
});
2019-01-19 23:37:36 +01:00
// Position dans les blocs
// Bloc texte personnalisé
$(".themeFooterContent").on("change",function() {
// Position site ou body
var footerPosition = $("#themeFooterPosition").val();
switch($("#themeFooterTextPosition").val()) {
2019-06-18 20:08:04 +02:00
case "hide":
$("#footerText").hide();
break;
default:
// Choix de la position du bloc
textPosition = $("#themeFooterTextPosition").val();
textPosition = textPosition.substr(0,1).toUpperCase()+textPosition.substr(1);
$("#footerText").show().appendTo("#footer" + footerPosition + textPosition);
//console.log("text");
//console.log("#footer" + footerPosition + textPosition);
break;
}
switch($("#themeFooterSocialsPosition").val()) {
case 'hide':
$("#footerSocials").hide();
2019-06-23 23:37:12 +02:00
break;
default:
// Choix de la position du bloc
socialsPosition = $("#themeFooterSocialsPosition").val();
socialsPosition = socialsPosition.substr(0,1).toUpperCase()+socialsPosition.substr(1);
$("#footerSocials").show().appendTo("#footer" + footerPosition + socialsPosition);
//console.log("socials");
//console.log("#footer" + footerPosition + socialsPosition);
break;
}
2019-06-22 08:23:09 +02:00
switch($("#themeFooterCopyrightPosition").val()) {
case 'hide':
$("#footerCopyright").hide();
break;
default:
// Choix de la position du bloc
copyrightPosition = $("#themeFooterCopyrightPosition").val();
copyrightPosition = copyrightPosition.substr(0,1).toUpperCase()+copyrightPosition.substr(1);
$("#footerCopyright").show().appendTo("#footer" + footerPosition + copyrightPosition);
//console.log("copyright");
//console.log("#footer" + footerPosition + copyrightPosition);
break;
}
}).trigger("change");
2019-06-22 08:23:09 +02:00
// Fin Position dans les blocs
// Modification dynamique de la mise en page
2019-06-18 20:08:04 +02:00
$("#themeFooterTemplate").on("change",function() {
// Nettoyage des sélecteurs des contenus
2019-06-19 09:35:19 +02:00
var newOptions = {
4: {'hide' : 'Masqué', 'left' : 'En haut', 'center' : 'Au milieu', 'right' : 'En bas'} ,
3: {'hide': 'Masqué', 'left': 'A gauche', 'center': 'Au centre', 'right': 'A droite'} ,
2: {'hide': 'Masqué', 'left': 'A gauche', 'right': 'A droite'} ,
2019-06-19 09:35:19 +02:00
1: {'hide': 'Masqué', 'center': 'Affiché'}
};
var $el = $(".themeFooterContent");
2019-06-18 20:08:04 +02:00
$el.empty();
// Eléments des position de contenus
$.each(newOptions[$("#themeFooterTemplate").val()], function(key,value) {
$el.append($("<option></option>")
.attr("value", key).text(value));
});
var position = $("#themeFooterPosition").val();
2019-06-22 08:23:09 +02:00
// Masquer les contenus
$("#footerCopyright").hide();
$("#footerText").hide();
$("#footerSocials").hide();
2019-07-15 11:54:04 +02:00
// Dimension des blocs
2019-06-18 20:08:04 +02:00
switch($("#themeFooterTemplate").val()) {
case "1":
$("#footer" + position + "Left").css("display","none");
$("#footer" + position + "Center").removeAttr('class').addClass("col12").css("display","");
$("#footer" + position + "Right").css("display","none");
2019-06-18 20:08:04 +02:00
break;
case "2":
$("#footer" + position + "Left").removeAttr('class').addClass('col6').css("display","");
$("#footer" + position + "Center").css("display","none").removeAttr('class');
$("#footer" + position + "Right").removeAttr('class').addClass('col6').css("display","");
2019-06-18 20:08:04 +02:00
break;
case "3":
$("#footer" + position + "Left").removeAttr('class').addClass('col4').css("display","");
$("#footer" + position + "Center").removeAttr('class').addClass('col4').css("display","");
$("#footer" + position + "Right").removeAttr('class').addClass('col4').css("display","");
2019-06-18 20:08:04 +02:00
break;
2019-06-22 19:44:13 +02:00
case "4":
$("#footer" + position + "Left").removeAttr('class').addClass('col12').css("display","");
$("#footer" + position + "Center").removeAttr('class').addClass('col12').css("display","");
$("#footer" + position + "Right").removeAttr('class').addClass('col12').css("display","");
2019-06-22 19:44:13 +02:00
break;
2019-06-18 20:08:04 +02:00
}
});
2019-06-19 21:49:21 +02:00
// Désactivation des sélections multiples
$("#themeFooterSocialsPosition").on("change", function() {
if ($(this).prop('selectedIndex') >= 1 ) {
if ( $("#themeFooterTextPosition").prop('selectedIndex') === $(this).prop('selectedIndex') ) {
$("#themeFooterTextPosition").prop('selectedIndex',0);
$("#footerText").hide();
}
if ( $("#themeFooterCopyrightPosition").prop('selectedIndex') === $(this).prop('selectedIndex') ) {
$("#themeFooterCopyrightPosition").prop('selectedIndex',0);
$("#footerCopyright").hide();
}
}
}).trigger("change");
$("#themeFooterTextPosition").on("change", function() {
if ($(this).prop('selectedIndex') >= 1 ) {
if ( $("#themeFooterSocialsPosition").prop('selectedIndex') === $(this).prop('selectedIndex') ) {
$("#themeFooterSocialsPosition").prop('selectedIndex',0);
$("#footerSocials").hide();
}
if ( $("#themeFooterCopyrightPosition").prop('selectedIndex') === $(this).prop('selectedIndex') ) {
$("#themeFooterCopyrightPosition").prop('selectedIndex',0);
$("#footerCopyright").hide();
}
}
}).trigger("change");
$("#themeFooterCopyrightPosition").on("change", function() {
if ($(this).prop('selectedIndex') >= 1 ) {
if ( $("#themeFooterTextPosition").prop('selectedIndex') === $(this).prop('selectedIndex') ) {
$("#themeFooterTextPosition").prop('selectedIndex',0);
$("#footerText").hide();
}
if ( $("#themeFooterSocialsPosition").prop('selectedIndex') === $(this).prop('selectedIndex') ) {
$("#themeFooterSocialsPosition").prop('selectedIndex',0);
$("#footerSocials").hide();
}
}
}).trigger("change");
2020-02-02 19:14:57 +01:00
// Affiche / Cache les options du footer fixe
$("#themeFooterPosition").on("change", function() {
if($(this).val() === 'body') {
$("#themeFooterPositionFixed").slideDown();
}
else {
$("#themeFooterPositionFixed").slideUp(function() {
2020-02-04 13:17:38 +01:00
$("#themeFooterFixed").prop("checked", false).trigger("change");
2020-02-02 19:14:57 +01:00
});
}
}).trigger("change");
2019-06-19 21:49:21 +02:00
2018-04-02 08:29:19 +02:00
// Lien de connexion
$("#themeFooterLoginLink").on("change", function() {
if($(this).is(":checked")) {
$("#footerLoginLink").show();
}
else {
$("#footerLoginLink").hide();
}
}).trigger("change");
2019-05-02 13:21:48 +02:00
// Numéro de version
$("#themefooterDisplayVersion").on("change", function() {
if($(this).is(":checked")) {
2019-06-22 19:44:13 +02:00
$("#footerDisplayVersion").show();
2019-05-02 13:21:48 +02:00
}
else {
2019-06-22 19:44:13 +02:00
$("#footerDisplayVersion").hide();
2019-05-02 13:21:48 +02:00
}
}).trigger("change");
// Numéro de version
$("#themefooterDisplayCopyright").on("change", function() {
if($(this).is(":checked")) {
$("#footerDisplayCopyright").show();
}
else {
$("#footerDisplayCopyright").hide();
}
}).trigger("change");
// Site Map
$("#themefooterDisplaySiteMap").on("change", function() {
if($(this).is(":checked")) {
$("#footerDisplaySiteMap").show();
}
else {
$("#footerDisplaySiteMap").hide();
}
}).trigger("change");
2019-07-12 10:04:01 +02:00
// Rechercher
$("#themeFooterDisplaySearch").on("change", function() {
if($(this).is(":checked")) {
$("#footerDisplaySearch").show();
}
else {
$("#footerDisplaySearch").hide();
}
}).trigger("change");
2019-01-19 23:37:36 +01:00
/*
2018-04-02 08:29:19 +02:00
// Affiche / Cache les options de la position
$("#themeFooterPosition").on("change", function() {
if($(this).val() === 'site') {
$("#themeFooterPositionOptions").slideDown();
}
else {
$("#themeFooterPositionOptions").slideUp(function() {
$("#themeFooterMargin").prop("checked", false).trigger("change");
});
}
2019-05-02 13:21:48 +02:00
}).trigger("change");
*/