From 0c68a6c8e89d799cac06d1853770db633c37fa09 Mon Sep 17 00:00:00 2001 From: Pierre Date: Sun, 8 Apr 2018 15:16:32 +0200 Subject: [PATCH] Display footer --- assets/js/common/functionsSchema.js | 14 ++++++++ assets/js/common/page.js | 15 +++++--- assets/js/components/bottom/main.js | 54 +++++++++++++++++++++++++++++ system/config/dev.config.php | 3 ++ 4 files changed, 81 insertions(+), 5 deletions(-) create mode 100644 assets/js/components/bottom/main.js diff --git a/assets/js/common/functionsSchema.js b/assets/js/common/functionsSchema.js index 06fb47bc..e4d9aab3 100644 --- a/assets/js/common/functionsSchema.js +++ b/assets/js/common/functionsSchema.js @@ -509,6 +509,20 @@ var ComunicWeb = { }, }, + /** + * Pages bottom + */ + bottom: { + + /** + * Main bottom script file + */ + main: { + //TODO : implement + }, + + }, + /** * Mails caching component */ diff --git a/assets/js/common/page.js b/assets/js/common/page.js index 2ae98edd..868bbd07 100644 --- a/assets/js/common/page.js +++ b/assets/js/common/page.js @@ -203,8 +203,8 @@ ComunicWeb.common.page = { //We check if the page is a full screen page or not if(pageInfos.disableMenus){ //We force the screen to be cleaned - var mainContainerElem = this.emptyPage(true); - var pageTarget = mainContainerElem; //The page directly goes to the main target + var mainContainerElem = this.emptyPage(true); + var pageTarget = mainContainerElem; //The page directly goes to the main target } //Else else { @@ -228,9 +228,7 @@ ComunicWeb.common.page = { //Set wrapper class pageTarget.className = "content-wrapper"; - //Ask adminLTE to fix layout - if($.AdminLTE.layout) - $.AdminLTE.layout.fix(); + //Set body class document.body.className="hold-transition fixed skin-blue layout-top-nav"; @@ -238,6 +236,9 @@ ComunicWeb.common.page = { //We load the menubar ComunicWeb.components.menuBar.common.display(); + //Bottom + ComunicWeb.components.bottom.main.display(); + //We load specific components for logged in users if(ComunicWeb.user.userLogin.getUserLoginState()){ @@ -247,6 +248,10 @@ ComunicWeb.common.page = { //We load conversations manager (login required) ComunicWeb.components.conversations.manager.display(); } + + //Ask adminLTE to fix layout + if($.AdminLTE.layout) + $.AdminLTE.layout.fix(); } //Add the subfolder URI (if any) diff --git a/assets/js/components/bottom/main.js b/assets/js/components/bottom/main.js new file mode 100644 index 00000000..f32893b6 --- /dev/null +++ b/assets/js/components/bottom/main.js @@ -0,0 +1,54 @@ +/** + * Main bottom script file + * + * @author Pierre HUBERT + */ + +ComunicWeb.components.bottom.main = { + + /** + * Display the footer of the pages + */ + display: function(){ + + ComunicWeb.debug.logMessage("Display bottom page."); + + //Check if the footer is already shown or not + var footer = byId("footer"); + + if(footer){ + ComunicWeb.debug.logMessage("Notice : The footer is already shown on the screen !"); + return; + } + + //Create and apply footer + footer = createElem2({ + type: "footer", + appendTo: byId("wrapper"), + id: "footer", + class: "main-footer" + }); + + //Add right element + /*var rightElements = createElem2({ + appendTo: footer, + type: "div", + class: "pull-right" + });*/ + + //Left elements + var leftElements = createElem2({ + appendTo: footer, + type: "span", + innerHTML: "Comunic     " + }); + + //Put the language selector link on the right + var langLink = createElem2({ + appendTo: leftElements, + type: "a", + innerHTML: " Language" + }); + } + +} \ No newline at end of file diff --git a/system/config/dev.config.php b/system/config/dev.config.php index 036ee0b2..5360ac30 100644 --- a/system/config/dev.config.php +++ b/system/config/dev.config.php @@ -211,6 +211,9 @@ class Dev { "js/components/menuBar/common.js", "js/components/menuBar/notAuthenticated.js", "js/components/menuBar/authenticated.js", + + //Bottom view + "js/components/bottom/main.js", //Friends components "js/components/friends/friendsList.js",