X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2Feuphorik.js;h=825e4c34a4aa008bc615b0eaee6bfdda9faa92aa;hp=1b78ba8294365fa1a2cf0e6dbc9cae9e5cd7fd73;hb=fdbd960f3fda4a5b1e71dc410ad162c78390f409;hpb=84a86204f1f87a6b898975bc1d817130c7168a7c diff --git a/js/euphorik.js b/js/euphorik.js index 1b78ba8..825e4c3 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -1,4 +1,4 @@ -// coding: utf-8 +// coding: utf-8 // Copyright 2008 Grégory Burri // // This file is part of Euphorik. @@ -31,7 +31,9 @@ var conf = { nbMessageAffiche : 40, // (par page) pseudoDefaut : "", - tempsAffichageMessageDialogue : 4000, // en ms + tempsAffichageMessageDialogue : 4000, // en ms + tempsKick : 15, // en minute + tempsBan : 60 * 24 * 3, // en minutes (3jours) smiles : { "smile" : [/:\)/g, /:-\)/g], "bigsmile" : [/:D/g, /:-D/g], @@ -90,7 +92,10 @@ function Util(formateur) $("#info").slideUp(50) }) + $("body").append('
').append('

') + this.formateur = formateur + this.bulleActive = true } var messageType = {informatif: 0, question: 1, erreur: 2} @@ -140,19 +145,25 @@ Util.prototype.messageDialogue = function(message, type, boutons, formate) */ Util.prototype.infoBulle = function(message, element) { - var virerMess = function() + var thisUtil = this + + var cacherBulle = function() { - $("#flecheBulle").remove() - $("#messageBulle").remove() + $("#flecheBulle").hide() + $("#messageBulle").hide() } - element.click(virerMess) - element.hover( function(e) { - f = $('
').appendTo("body") - m = $('

' + message + '

').appendTo("body") + if (!thisUtil.bulleActive) + return + + var m = $("#messageBulle") + var f = $("#flecheBulle") + + $("p", m).html(message) + var positionFleche = { left : element.offset().left + element.width() / 2 - f.width() / 2, top : element.offset().top - f.height() @@ -173,8 +184,8 @@ Util.prototype.infoBulle = function(message, element) m.css("top", positionMessage.top).css("left", positionMessage.left).show() f.css("top", positionFleche.top).css("left", positionFleche.left).show() }, - virerMess - ) + cacherBulle + ).click(cacherBulle) } /** @@ -241,19 +252,16 @@ Util.prototype.replaceSelection = function(input, replaceString) { this.setCaretToPos(input, selectionStart + replaceString.length) } else if (document.selection) - { - var range = document.selection.createRange(); + { + input.focus() + var range = document.selection.createRange() if (range.parentElement() == input) { var isCollapsed = range.text == '' range.text = replaceString if (!isCollapsed) - { - // there has been a selection - // it appears range.select() should select the newly - // inserted text but that fails with IE + { range.moveStart('character', -replaceString.length); - range.select(); } } } @@ -290,10 +298,21 @@ function Pages() this.pages = {} } +/** + * Accepte soit un objet soit un string. + * un string correspond au nom de la page, par exemple : "page" -> "page.html" + */ Pages.prototype.ajouterPage = function(page) { - page.pages = this // la magie des langages dynamiques : le foutoire - this.pages[page.nom] = page + if (typeof page == "string") + { + this.pages[page] = page + } + else + { + page.pages = this // la magie des langages dynamiques : le foutoire + this.pages[page.nom] = page + } } Pages.prototype.afficherPage = function(nomPage, forcerChargement) @@ -310,7 +329,12 @@ Pages.prototype.afficherPage = function(nomPage, forcerChargement) $("#menu li." + nomPage).addClass("courante") this.pageCourante = page - $("#page").html(this.pageCourante.contenu()).removeClass().addClass(this.pageCourante.nom) + var contenu = "" + if (typeof page == "string") + $.ajax({async: false, url: "pages/" + page + ".html", success : function(page) { contenu += page }}) + else + contenu += this.pageCourante.contenu() + $("#page").html(contenu).removeClass().addClass(this.pageCourante.nom) if (this.pageCourante.charger) this.pageCourante.charger() @@ -522,6 +546,8 @@ Client.prototype.resetDonneesPersonnelles = function() this.email = "" this.css = $("link#cssPrincipale").attr("href") this.nickFormat = "nick" + this.viewTimes = true + this.viewTooltips = true this.cookie = undefined this.pagePrincipale = 1 @@ -667,6 +693,8 @@ Client.prototype.getJSONProfile = function() "email" : this.email, "css" : this.css, "nick_format" : this.nickFormat, + "view_times" : this.viewTimes, + "view_tooltips" : this.viewTooltips, "main_page" : this.pagePrincipale < 1 ? 1 : this.pagePrincipale, "conversations" : this.getJSONConversations() } @@ -687,14 +715,16 @@ Client.prototype.delCookie = function() document.cookie = "cookie=; max-age=0" } -Client.prototype.setCookie = function(cookie) +Client.prototype.setCookie = function() { - if (this.cookie == null) + if (this.cookie == null || this.cookie == undefined) return - document.cookie = - "cookie="+this.cookie+ - "; max-age=" + (60 * 60 * 24 * 365) + // ne fonctionne pas sous IE.... + /*document.cookie = "cookie=" + this.cookie + "; max-age=" + (60 * 60 * 24 * 365) */ + + document.cookie = + "cookie="+this.cookie+"; expires=" + new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * 365).toUTCString() } Client.prototype.authentifie = function() @@ -758,7 +788,7 @@ Client.prototype.enregistrement = function(login, password) Client.prototype.connexion = function(messageJson) { - ;;; dumpObj(messageJson) + ;; dumpObj(messageJson) thisClient = this jQuery.ajax( { @@ -770,7 +800,7 @@ Client.prototype.connexion = function(messageJson) success: function(data) { - ;;; dumpObj(data) + ;; dumpObj(data) if (data["reply"] == "error") thisClient.util.messageDialogue(data["error_message"]) else @@ -808,12 +838,16 @@ Client.prototype.chargerDonnees = function(data) this.email = data["email"] this.setCss(data["css"]) this.nickFormat = data["nick_format"] + this.viewTimes = data["view_times"] + this.viewTooltips = data["view_tooltips"] // la page de la conversation principale this.pagePrincipale = data["main_page"] == undefined ? 1 : data["main_page"] // les conversations this.conversations = data["conversations"] + + this.majBulle() } } @@ -833,7 +867,7 @@ Client.prototype.flush = function(async) var thisClient = this var ok = true - ;;; dumpObj(this.getJSONProfile()) + ;; dumpObj(this.getJSONProfile()) jQuery.ajax( { async: async, @@ -844,12 +878,16 @@ Client.prototype.flush = function(async) success: function(data) { - ;;; dumpObj(data) + ;; dumpObj(data) if (data["reply"] == "error") { thisClient.util.messageDialogue(data["error_message"]) ok = false } + else + { + thisClient.majBulle() + } } } ) @@ -886,6 +924,14 @@ Client.prototype.majMenu = function() } } +/** + * Met à jour l'affichage des infos bulles en fonction du profile. + */ +Client.prototype.majBulle = function() +{ + this.util.bulleActive = this.viewTooltips +} + Client.prototype.slap = function(userId, raison) { var thisClient = this @@ -916,7 +962,7 @@ Client.prototype.ban = function(userId, raison, minutes) // par défaut un ban correspond à 3 jours if (typeof(minutes) == "undefined") - minutes = 60 * 24 * 3 + minutes = conf.tempsBan; jQuery.ajax({ type: "POST", @@ -941,7 +987,7 @@ Client.prototype.ban = function(userId, raison, minutes) Client.prototype.kick = function(userId, raison) { - this.ban(userId, raison, 15) + this.ban(userId, raison, conf.tempsKick) } /////////////////////////////////////////////////////////////////////////////////////////////////// @@ -999,7 +1045,7 @@ PageEvent.prototype.waitEvent = function(funSend, funReceive) for (v in poulpe) dataToSend[v] = poulpe[v] - ;;; dumpObj(dataToSend) + ;; dumpObj(dataToSend) this.attenteCourante = jQuery.ajax({ type: "POST", @@ -1009,7 +1055,7 @@ PageEvent.prototype.waitEvent = function(funSend, funReceive) success: function(data) { - ;;; dumpObj(data) + ;; dumpObj(data) funReceive(data) @@ -1047,7 +1093,7 @@ function initialiserListeStyles(client) } // charge dynamiquement le script de debug -;;; jQuery.ajax({async : false, url : "js/debug.js", dataType : "script"}) +;; jQuery.ajax({async : false, url : "js/debug.js", dataType : "script"}) // le main $(document).ready( @@ -1083,12 +1129,17 @@ $(document).ready( }) $("#menu .register").click(function(){ pages.afficherPage("register") }) $("#menu .about").click(function(){ pages.afficherPage("about") }) + + // TODO : simplifier et pouvoir créer des liens par exemple : Conditions d'utilisation + $("#footer .conditions").click(function(){ pages.afficherPage("conditions_utilisation") }) pages.ajouterPage(new PageMinichat(client, formateur, util)) pages.ajouterPage(new PageAdmin(client, formateur, util)) pages.ajouterPage(new PageProfile(client, formateur, util)) pages.ajouterPage(new PageRegister(client, formateur, util)) pages.ajouterPage(new PageAbout(client, formateur, util)) + pages.ajouterPage("conditions_utilisation") + pages.afficherPage("minichat") } )