X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageMinichat.js;h=adf5c5adf65cf7da82d98ab72b08911eafca65e2;hp=03bf1428a09a8929930137bb4ad298ef2655b587;hb=08193845f5b45402b85977911dbd0693a4d183de;hpb=9b380274dcc75e06c0cdc110f91cc8f0c4738aeb diff --git a/js/pageMinichat.js b/js/pageMinichat.js index 03bf142..adf5c5a 100755 --- a/js/pageMinichat.js +++ b/js/pageMinichat.js @@ -32,7 +32,7 @@ PageMinichat.prototype.contenu = function() { return '\
Troll de la semaine :
\ -
\ +\

\ \ \ @@ -60,24 +60,19 @@ PageMinichat.prototype.charger = function() // les outils de bannissement (uniquement pour les ekMaster) if (this.client.ekMaster) { - $( - '

' + + this.util.outilsBan = $( + '' + '

' + 'Ban de 3 jours' + 'Ban de 15min' + 'Avertissement' + - '
' - ).hover( - function(){}, - function() - { - $("#outilsBan").hide() - } - ).appendTo("body") + '' + ) - this.util.infoBulle("Slap", $("#outilsBan #slap")) - this.util.infoBulle("Kick", $("#outilsBan #kick")) - this.util.infoBulle("Ban", $("#outilsBan #ban")) + this.util.infoBulle("Slap", $("#slap", this.util.outilsBan)) + this.util.infoBulle("Kick (" + conf.tempsKick + "min)", $("#kick", this.util.outilsBan)) + this.util.infoBulle("Ban (" + conf.tempsBan / 24 / 60 + " jours)", $("#ban", this.util.outilsBan)) + this.util.infoBulle("La raison", $("input", this.util.outilsBan)) } this.util.infoBulle("Ouvrir la conversation liée au troll de la semaine", $("#trollCourant .troll")) @@ -92,26 +87,11 @@ PageMinichat.prototype.charger = function() $(this).click( function(event) { - thisPage.util.replaceSelection($("form input.message")[0], thisPage.formateur.smiles[$(this).attr("class")][0].source.replace(/\\/g, "")) - } - ) - .hover( - function() - { - $(this).animate( - { - opacity: 1 - }, 200 - ) - }, - function() - { - $(this).animate( - { - opacity: opacityBase - }, 200 - ) + thisPage.util.replaceSelection($("form#posterMessage input.message")[0], thisPage.formateur.smiles[$(this).attr("class")][0].source.replace(/\\/g, "")) } + ).hover( + function() { $(this).animate({opacity: 1}, 200) }, + function() { $(this).animate({opacity: opacityBase}, 200) } ) } ) @@ -179,7 +159,6 @@ PageMinichat.prototype.decharger = function() this.messages.pageEvent.stopAttenteCourante() $("body #smiles").remove() - $("body #outilsBan").remove() } PageMinichat.prototype.getJSONMessage = function(pseudo, message, repondA) @@ -363,9 +342,9 @@ Message.prototype.getConversation = function(messages) function Conversation(num, util, formateur, client) { var thisConversation = this - + this.num = num // peut changer au cours de la vie de la conversation - this.id = Math.random() * 100000000000000000 + this.id = Math.floor(Math.random() * 1000000).toString(36) this.messageOver = null // le message sur lequel se trouve le curseur this.util = util this.formateur = formateur @@ -525,7 +504,7 @@ Conversation.prototype.flush = function(funClickOuvrirConv) for (var id in message.repondA) { if (!debut) XHTMLrepondA += ", " - dumpObj(message.repondA.count) + ;; dumpObj(message.repondA.count) XHTMLrepondA += this.formateur.traitementComplet(message.repondA[id].pseudo) debut = false } @@ -549,12 +528,6 @@ Conversation.prototype.flush = function(funClickOuvrirConv) messagePair = !messagePair } - - // enlève les messages exedentaires - var nbMessagesAffiche = $("#conversations #" + this.getId() + " .message").size() - - if (nbMessagesAffiche > this.nbMessageMax) - $("#conversations #" + this.getId() + " .message").slice(this.nbMessageMax, nbMessagesAffiche).empty() var DOM = $(XHTML) DOM.each( @@ -586,31 +559,37 @@ Conversation.prototype.flush = function(funClickOuvrirConv) var element = $(this) var h = element.height() var offset = element.offset() - var outils = $("#outilsBan").css("top", offset.top - 2).css("left", offset.left - 2).height(h < 16 ? 16 : h).width(element.width() + 16 * 3 + 4 + 64).show() - $("img", outils).unbind("click") - $("#slap", outils).click( + thisConversation.util.outilsBan.css("top", offset.top - 2).css("left", offset.left - 2).height(h < 16 ? 16 : h).width(element.width() + 16 * 3 + 4 + 64).prependTo(this).show() + $("img", thisConversation.util.outilsBan).unbind("click") + $("#slap", thisConversation.util.outilsBan).click( function(e) { thisConversation.client.slap(userId, $("#outilsBan input").val()) $("#outilsBan input").val("") + $("#outilsBan").hide() } ) - $("#kick", outils).click( + $("#kick", thisConversation.util.outilsBan).click( function(e) { thisConversation.client.kick(userId, $("#outilsBan input").val()) $("#outilsBan input").val("") + $("#outilsBan").hide() } ) - $("#ban", outils).click( + $("#ban", thisConversation.util.outilsBan).click( function(e) { thisConversation.client.ban(userId, $("#outilsBan input").val()) $("#outilsBan input").val("") + $("#outilsBan").hide() } ) }, - function(){} + function(e) + { + $("#outilsBan", this).hide() + } ) thisConversation.util.infoBulle("Extraction de la conversation", $(".extraire", this)) @@ -618,7 +597,7 @@ Conversation.prototype.flush = function(funClickOuvrirConv) $(this).click( function(event) { - if ($(event.target).is("a")) return + if ($(event.target).is("a") || $(event.target).parents("#outilsBan").length > 0) return // l'id du message var idMess = $(this).attr("id").substr(4) @@ -654,6 +633,11 @@ Conversation.prototype.flush = function(funClickOuvrirConv) ) DOM.prependTo("#conversations #" + this.getId()) + // enlève les messages exedentaires + var nbMessagesAffiche = $("#conversations #" + this.getId() + " .message").size() + if (nbMessagesAffiche > this.nbMessageMax) + $("#conversations #" + this.getId() + " .message").slice(this.nbMessageMax, nbMessagesAffiche).remove() + if (this.messages.length > 0) this.idDernierMessageAffiche = this.messages[this.messages.length-1].id } @@ -807,7 +791,7 @@ Messages.prototype.ajouterMessage = function(element, numConversation) function(num) // insertion du lien vers la conversation { thisPage.util.replaceSelection( - $("form input.message")[0], + $("form#posterMessage input.message")[0], "{" + thisMessages.client.conversations[num-1].root.toString(36) + "}" ) } @@ -878,7 +862,7 @@ Messages.prototype.ajusterLargeurConversations = function() var largeurPourcent = (100 / this.conversations.length) // le "- 0.01" evite que IE se chie dessus lamentablement et affiche les conversations les unes au dessus des autres if($.browser["msie"]) - largeurPourcent -= 0.01 + largeurPourcent -= 0.05 $("#conversations .conversation").css("width", largeurPourcent + "%") } @@ -935,11 +919,11 @@ Messages.prototype.rafraichirMessages = function(vider) if (vider) for (var i = 0; i < this.conversations.length; i++) this.conversations[i].idDernierMessageAffiche = 0 - + this.pageEvent.waitEvent( function() { return thisMessages.getJSONrafraichirMessages() }, function(data) - { + { if (vider) { thisMessages.viderMessages() @@ -961,11 +945,11 @@ Messages.prototype.rafraichirMessages = function(vider) $("#trollCourant .troll a[@rel*=lightbox]").lightBox() break - case "new_messages" : + case "new_messages" : // ajoute les messages reçus à leur conversation respective for (var numConv = 0; numConv < data["conversations"].length; numConv++) { - if (! thisMessages.ajouterMessages(data["conversations"][numConv], numConv)) + if (!thisMessages.ajouterMessages(data["conversations"][numConv], numConv)) { thisMessages.util.messageDialogue("La conversation {" + thisMessages.client.conversations[numConv -1].root.toString(36) + "} n'existe pas") thisMessages.client.supprimerConversation(numConv - 1)