X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=js%2FpageMinichat.js;h=1f6a1188088e82d15b3e9f1211844ee9dfd22598;hb=8bec0dac79e750d0040de8a009c6ae864479642e;hp=6b7b3401f786d25b2bb70184179b7aed5756d6a1;hpb=eae50232e73fca26d6f631c8177cbea649e5036e;p=euphorik.git diff --git a/js/pageMinichat.js b/js/pageMinichat.js index 6b7b340..1f6a118 100755 --- a/js/pageMinichat.js +++ b/js/pageMinichat.js @@ -15,6 +15,7 @@ function PageMinichat(client, formateur, util) PageMinichat.prototype.contenu = function() { return '\ +
Troll de la semaine :
\
\

\ \ @@ -44,7 +45,12 @@ PageMinichat.prototype.charger = function() if (this.client.ekMaster) { $("body").append( - "

\"Ban\"Ban\"Avertissement\"
" + '
' + + '

' + + 'Ban de 3 jours' + + 'Ban de 15min' + + 'Avertissement' + + '
' ) $("#outilsBan").hover( function(){}, @@ -145,8 +151,7 @@ PageMinichat.prototype.charger = function() PageMinichat.prototype.decharger = function() { - //alert(this.attenteCourante) - this.messages.stopAttenteCourante() + this.messages.pageEvent.stopAttenteCourante() $("body #smiles").remove() $("body #outilsBan").remove() @@ -535,7 +540,7 @@ Conversation.prototype.flush = function(funClickOuvrirConv) } ) - $("a[@rel*=lightbox]").lightBox() + $("a[@rel*=lightbox]", this).lightBox() // les outils de bannissement (uniquement pour les ekMaster) if (thisConversation.client.ekMaster) @@ -546,24 +551,27 @@ Conversation.prototype.flush = function(funClickOuvrirConv) var element = $(e.target) 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).show() + 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() $("#slap", outils).click( function(e) { - thisConversation.client.slap(userId) + thisConversation.client.slap(userId, $("#outilsBan input").val()) + $("#outilsBan input").val("") } ) $("#kick", outils).click( function(e) { - thisConversation.client.kick(userId) + thisConversation.client.kick(userId, $("#outilsBan input").val()) + $("#outilsBan input").val("") } ) $("#ban", outils).click( function(e) { - thisConversation.client.ban(userId) + thisConversation.client.ban(userId, $("#outilsBan input").val()) + $("#outilsBan input").val("") } ) }, @@ -664,8 +672,9 @@ function Messages(client, formateur, util) this.conversations = new Array() // les conversations, la première représente la conversation principale this.nouvelleConversation(0) - // l'objet JSONHttpRequest représentant la connexion d'attente - this.attenteCourante = null + this.trollIdCourant = 0 + + this.pageEvent = new PageEvent("chat", this.util) } /** @@ -674,19 +683,15 @@ function Messages(client, formateur, util) Messages.prototype.getJSONrafraichirMessages = function() { var mess = { - "action" : "wait_event", - "page" : "chat", "message_count" : conf.nbMessageAffiche, "main_page" : this.client.pagePrincipale, - "conversations" : this.getJSONConversations() + "conversations" : this.getJSONConversations(), + "troll_id" : this.trollIdCourant } - if (this.client.cookie != null) mess["cookie"] = this.client.cookie; + if (this.client.cookie != null) mess["cookie"] = this.client.cookie mess["last_message_id"] = this.conversations[0].idDernierMessageAffiche - // obsolète - //if (this.idDernierMessage != null) mess["last_message_id"] = this.idDernierMessage - return mess } @@ -869,22 +874,10 @@ Messages.prototype.ouvrirConversation = function(racine) Messages.prototype.viderMessages = function() { - // Obsolète - //this.idDernierMessage = null - for (var i = 0; i < this.conversations.length; i++) this.conversations[i].viderMessages() } -/** - * Arrete l'attente courante s'il y en a une. - */ -Messages.prototype.stopAttenteCourante = function() -{ - if (this.attenteCourante != null) - this.attenteCourante.abort() -} - /** * Met à jour les messages de manière continue. * (AJAX-Comet-style proof) @@ -892,51 +885,45 @@ Messages.prototype.stopAttenteCourante = function() */ Messages.prototype.rafraichirMessages = function(vider) { - var thisMessages = this // caisupair javacrypte + var thisMessages = this if (vider == undefined) vider = false - - this.stopAttenteCourante() if (vider) for (var i = 0; i < this.conversations.length; i++) - this.conversations[i].idDernierMessageAffiche = 0 - - dumpObj(this.getJSONrafraichirMessages()) - this.attenteCourante = jQuery.ajax({ - type: "POST", - url: "request", - dataType: "json", - data: this.util.jsonVersAction(this.getJSONrafraichirMessages()), - success: - function(data) - { - ;;; dumpObj(data) + this.conversations[i].idDernierMessageAffiche = 0 - if (vider) - thisMessages.viderMessages() - - // ajoute les messages reçus à leur conversation respective - for (var numConv = 0; numConv < data["conversations"].length; numConv++) - { - // ya pas de nouveaux message -> on passe à la prochaine conversation FIXME : marche pas - //if (data["conversations"][numConv]["messages"].length == 0) continue + this.pageEvent.waitEvent( + function() { return thisMessages.getJSONrafraichirMessages() }, + function(data) + { + if (vider) + { + thisMessages.viderMessages() + vider = false + } - if (! thisMessages.ajouterMessages(data["conversations"][numConv], numConv)) + // en fonction du message + switch(data["reply"]) + { + case "new_troll" : + thisMessages.trollIdCourant = data["troll_id"] + $("#trollCourant .troll").html(thisMessages.formateur.traitementComplet(data["content"])) + break + + case "new_messages" : + // ajoute les messages reçus à leur conversation respective + for (var numConv = 0; numConv < data["conversations"].length; numConv++) { - thisMessages.util.messageDialogue("La conversation {" + thisMessages.client.conversations[numConv -1].root.toString(36) + "} n'existe pas") - thisMessages.client.supprimerConversation(numConv - 1) + 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) + } } - } - - // rappel de la fonction dans 100 ms - setTimeout(function(){ thisMessages.rafraichirMessages() }, 100); - }, - error: - function(XMLHttpRequest, textStatus, errorThrown) - { - setTimeout(function(){ thisMessages.rafraichirMessages() }, 1000); + break } - }) + } + ) }