X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=js%2FpageAdmin.js;h=a0b8d6830ff27280b49d6bc62811469582cdf057;hb=bfb430d094eb0021777302c1191642eab4077e78;hp=9be3ca13fa199c2373f7105e87bac7344f9211d4;hpb=3ea00589df90388456e8587b1bebdeab0f7e99fa;p=euphorik.git diff --git a/js/pageAdmin.js b/js/pageAdmin.js index 9be3ca1..a0b8d68 100644 --- a/js/pageAdmin.js +++ b/js/pageAdmin.js @@ -14,7 +14,7 @@ PageAdmin.prototype.contenu = function() return '

Trolls

\

Chaque semaine un troll est choisit au hasard parmis les trolls proposés et devient le troll de la semaine.

\

\ - \ + \ \

' } @@ -28,6 +28,8 @@ PageAdmin.prototype.charger = function() this.trolls = new Trolls(this.client, this.util, this.formateur) this.trolls.rafraichirTrolls() + $("#page form#nouveauTroll input.troll").focus() + $("#page form#nouveauTroll button.return").click( function() { @@ -86,8 +88,20 @@ PageAdmin.prototype.posterTroll = function() ) } + +/////////////////////////////////////////////////////////////////////////////////////////////////// + + +function Troll(content, author) +{ + this.content = content + this.author = author +} + + /////////////////////////////////////////////////////////////////////////////////////////////////// + function Trolls(client, util, formateur) { this.client = client @@ -95,11 +109,15 @@ function Trolls(client, util, formateur) this.formateur = formateur this.dernierTroll = 0 this.pageEvent = new PageEvent("admin", this.util) + + this.trolls = {} } Trolls.prototype.modifier = function(id, content) { + var thisTrolls = this + var dataToSend = { "action" : "mod_troll", @@ -121,7 +139,7 @@ Trolls.prototype.modifier = function(id, content) ;;; dumpObj(data) if (data["reply"] == "error") { - thisPageAdmin.util.messageDialogue(data["error_message"]) + thisTrolls.util.messageDialogue(data["error_message"]) } } } @@ -133,6 +151,8 @@ Trolls.prototype.modifier = function(id, content) */ Trolls.prototype.supprimer = function(id) { + var thisTrolls = this + var dataToSend = { "action" : "del_troll", @@ -153,7 +173,7 @@ Trolls.prototype.supprimer = function(id) ;;; dumpObj(data) if (data["reply"] == "error") { - thisPageAdmin.util.messageDialogue(data["error_message"]) + thisTrolls.util.messageDialogue(data["error_message"]) } } } @@ -174,10 +194,14 @@ Trolls.prototype.rafraichirTrolls = function() var XHTML = "" for (var i = 0; i < data["trolls"].length; i++) { + var troll = new Troll(data["trolls"][i]["content"], data["trolls"][i]["author"]) + var trollId = data["trolls"][i]["troll_id"] + thisTrolls.trolls[trollId] = troll + XHTML += - '
' + - '' + thisTrolls.formateur.traitementComplet(data["trolls"][i]["content"], data["trolls"][i]["author"]) + '' + - '' + thisTrolls.formateur.traitementComplet(data["trolls"][i]["author"]) + '' + + '
' + + '' + thisTrolls.formateur.traitementComplet(troll.content, troll.author) + '' + + ' - ' + thisTrolls.formateur.traitementComplet(troll.author) + '' + (data["trolls"][i]["author_id"] == thisTrolls.client.id ? 'éditerSupprimer' : '') + '
' } @@ -187,6 +211,16 @@ Trolls.prototype.rafraichirTrolls = function() { var troll = this var id = parseInt($(this).attr("id").substr(5)) + + $("a[@rel*=lightbox]", this).lightBox() + + $(this).keypress( + function(e) + { + if (e.which == 13) // return + $(".modifier", this).click() + } + ) $(".delTroll", this).click( function() { @@ -208,14 +242,18 @@ Trolls.prototype.rafraichirTrolls = function() { $("span", troll).css("display", "none") $(troll).append( - '

' + '

modifierannuler

' ) + $("form input.content").focus() + var virerLeFormulaire = function() { $("form", troll).remove() - $("span", troll).css("display", "inline") + $('span', troll).css("display", "inline") } - $("button.modifier", troll).click( + $("span.modifier", troll).click( function() { var content = $("form input.content", troll).val() @@ -223,7 +261,7 @@ Trolls.prototype.rafraichirTrolls = function() thisTrolls.modifier(id, content) } ) - $("button.annuler", troll).click( virerLeFormulaire ) + $("span.annuler", troll).click( virerLeFormulaire ) $("form", troll).submit(function(){ return false}) } ) @@ -234,11 +272,16 @@ Trolls.prototype.rafraichirTrolls = function() thisTrolls.dernierTroll = data["trolls"][data["trolls"].length - 1]["troll_id"] break case "troll_modified" : - $("#trolls #troll" + data["troll_id"] + " .content").html(data["content"]) + $("#trolls #troll" + data["troll_id"] + " .content").html(thisTrolls.formateur.traitementComplet(data["content"], thisTrolls.trolls[data["troll_id"]].author)) + $("#trolls #troll" + data["troll_id"] + " a[@rel*=lightbox]").lightBox() + thisTrolls.trolls[data["troll_id"]].content = data["content"] break case "troll_deleted" : $("#trolls #troll"+data["troll_id"]).remove() break + case "error" : + thisTrolls.util.messageDialogue(data["error_message"]) + break } } )