ADD avancement sur les trolls, partie d'administration presque terminée
[euphorik.git] / js / pageAdmin.js
index 93b94d5..9be3ca1 100644 (file)
@@ -12,7 +12,8 @@ function PageAdmin(client, formateur, util)
 PageAdmin.prototype.contenu = function()
 {
    return '<h1>Trolls</h1>\
-   <form id="nouveauTroll"><p>Nouveau troll\
+   <p>Chaque semaine un troll est choisit au hasard parmis les trolls proposés et devient le troll de la semaine.</p>\
+   <form id="nouveauTroll"><p>\
       <input class="troll" name="troll" type="text" size="80" maxlength="500" value=""></input>\
       <button class="return" value="return">poster</button>\
    </p></form><div id="trolls"></div>'
@@ -24,12 +25,13 @@ PageAdmin.prototype.charger = function()
       
    var thisPage = this
    
-   this.trolls = new Trolls(this.util)
+   this.trolls = new Trolls(this.client, this.util, this.formateur)
    this.trolls.rafraichirTrolls()
    
    $("#page form#nouveauTroll button.return").click(
       function()
-      {         
+      {
+         thisPage.posterTroll()
       }
    )
 }
@@ -39,16 +41,125 @@ PageAdmin.prototype.decharger = function()
    this.trolls.pageEvent.stopAttenteCourante()
 }
 
+PageAdmin.prototype.posterTroll = function()
+{
+   var thisPageAdmin = this
+   
+   var content = $("#page form#nouveauTroll input.troll").val()
+   
+   content = content.trim()
+   if (content == "")
+   {
+      this.util.messageDialogue("Le troll est vide")
+      return
+   }
+
+   var dataToSend = 
+      {
+         "action" : "put_troll", 
+         "cookie" : this.client.cookie,
+         "content" : content
+      }
+
+   ;;; dumpObj(dataToSend)
+   jQuery.ajax(
+      {
+         type: "POST",
+         url: "request",
+         dataType: "json",
+         data: this.util.jsonVersAction(dataToSend),
+         success:
+            function(data)
+            {
+               ;;; dumpObj(data)
+               
+               if (data["reply"] == "ok")
+               {
+                  $("#page form#nouveauTroll input.troll").val("")
+               }
+               else if (data["reply"] == "error")
+               {
+                  thisPageAdmin.util.messageDialogue(data["error_message"])
+               }
+            }
+      }
+   )
+}
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 
-function Trolls(util)
+function Trolls(client, util, formateur)
 {
+   this.client = client
    this.util = util
+   this.formateur = formateur
    this.dernierTroll = 0
    this.pageEvent = new PageEvent("admin", this.util)
 }
 
+
+Trolls.prototype.modifier = function(id, content)
+{
+   var dataToSend =
+      {
+         "action" : "mod_troll",
+         "cookie" : this.client.cookie,
+         "troll_id" : id,
+         "content" : content
+      }
+
+   ;;; dumpObj(dataToSend)
+   jQuery.ajax(
+      {
+         type: "POST",
+         url: "request",
+         dataType: "json",
+         data: this.util.jsonVersAction(dataToSend),
+         success:
+            function(data)
+            {
+               ;;; dumpObj(data)
+               if (data["reply"] == "error")
+               {
+                  thisPageAdmin.util.messageDialogue(data["error_message"])
+               }
+            }
+      }
+   )
+}
+
+/**
+  * Supprime un troll en fonction de son id.
+  */
+Trolls.prototype.supprimer = function(id) 
+{
+   var dataToSend =
+      {
+         "action" : "del_troll",
+         "cookie" : this.client.cookie,
+         "troll_id" : id
+      }
+
+   ;;; dumpObj(dataToSend)
+   jQuery.ajax(
+      {
+         type: "POST",
+         url: "request",
+         dataType: "json",
+         data: this.util.jsonVersAction(dataToSend),
+         success:
+            function(data)
+            {
+               ;;; dumpObj(data)
+               if (data["reply"] == "error")
+               {
+                  thisPageAdmin.util.messageDialogue(data["error_message"])
+               }
+            }
+      }
+   )
+}
+
 Trolls.prototype.rafraichirTrolls = function()
 {
    var thisTrolls = this
@@ -57,18 +168,76 @@ Trolls.prototype.rafraichirTrolls = function()
       function() { return { "last_troll" : thisTrolls.dernierTroll }},
       function(data)
       {
-         switch (data["reply"]) {
+         switch (data["reply"])
+         {
             case "troll_added" :
                var XHTML = ""
                for (var i = 0; i < data["trolls"].length; i++)
                {
-                  thisTrolls.dernierTroll = data["trolls"][i]["troll_id"]
-                  XHTML += '<p id="troll' + data["trolls"][i]["troll_id"] + '">' + data["trolls"][i]["content"] + '</p>'
+                  XHTML +=
+                     '<div id="troll' + data["trolls"][i]["troll_id"] + '" class="troll">' +
+                     '<span class="content">' + thisTrolls.formateur.traitementComplet(data["trolls"][i]["content"], data["trolls"][i]["author"]) + '</span>' +
+                     '<span class="author">' + thisTrolls.formateur.traitementComplet(data["trolls"][i]["author"]) + '</span>' +
+                     (data["trolls"][i]["author_id"] == thisTrolls.client.id ? '<span class="editTroll">éditer</span><span class="delTroll">Supprimer</span>' : '') +
+                     '</div>'
                }
                $("#trolls").append(XHTML)
+               $("#trolls .troll").filter(function(){return parseInt($(this).attr("id").substr(5)) > thisTrolls.dernierTroll}).each(
+                  function()
+                  {
+                     var troll = this
+                     var id = parseInt($(this).attr("id").substr(5))
+                     $(".delTroll", this).click(
+                        function()
+                        {
+                           thisTrolls.util.messageDialogue(
+                              "Êtes-vous sur de vouloir supprimer le troll \"" + $("#trolls .troll .content").html() + "\" ?",
+                              messageType.question,
+                              {
+                                 "oui" : function()
+                                    {
+                                       thisTrolls.supprimer(id)
+                                    },
+                                 "non" : function(){}
+                              }
+                           )
+                        }
+                     )
+                     $(".editTroll", this).click(
+                        function()
+                        {
+                           $("span", troll).css("display", "none")
+                           $(troll).append(
+                              '<form><p><input class="content" type="text" size="50" maxlength="500" value="' + $(".content", troll).html() + '"></input><button class="modifier">modifier</button><button class="annuler">annuler</button></p></form>'
+                           )
+                           var virerLeFormulaire = function()
+                           {
+                              $("form", troll).remove()
+                              $("span", troll).css("display", "inline")
+                           }
+                           $("button.modifier", troll).click(
+                              function()
+                              {
+                                 var content = $("form input.content", troll).val()
+                                 virerLeFormulaire()
+                                 thisTrolls.modifier(id, content)
+                              }
+                           )
+                           $("button.annuler", troll).click( virerLeFormulaire )
+                           $("form", troll).submit(function(){ return false})
+                        }  
+                     )
+                  }
+               )
+               
+               if (data["trolls"].length > 0)
+                  thisTrolls.dernierTroll = data["trolls"][data["trolls"].length - 1]["troll_id"]
                break
             case "troll_modified" :
-               $("#trolls #troll"+data["troll_id"]).html(data["content"])
+               $("#trolls #troll" + data["troll_id"] + " .content").html(data["content"])
+               break
+            case "troll_deleted" :
+               $("#trolls #troll"+data["troll_id"]).remove()
                break
          }
       }