Filter CSS class names, “~” is not a valid character.
[Sone.git] / src / main / resources / static / javascript / sone.js
index 9bb379c..05ab5a0 100644 (file)
@@ -4,9 +4,9 @@ function isOnline() {
        return $("#sone").hasClass("online");
 }
 
-function registerInputTextareaSwap(inputSelector, defaultText, inputFieldName, optional) {
+function registerInputTextareaSwap(inputSelector, defaultText, inputFieldName, optional, dontUseTextarea) {
        $(inputSelector).each(function() {
-               textarea = $("<textarea name=\"" + inputFieldName + "\"></textarea>").blur(function() {
+               textarea = $(dontUseTextarea ? "<input type=\"text\" name=\"" + inputFieldName + "\">" : "<textarea name=\"" + inputFieldName + "\"></textarea>").blur(function() {
                        if ($(this).val() == "") {
                                $(this).hide();
                                inputField = $(this).data("inputField");
@@ -99,7 +99,7 @@ function getTranslation(key, callback) {
  */
 function getSoneStatus(soneId) {
        $.getJSON("ajax/getSoneStatus.ajax", {"sone": soneId}, function(data, textStatus) {
-               updateSoneStatus(soneId, data.status, data.modified, data.lastUpdated);
+               updateSoneStatus(soneId, data.name, data.status, data.modified, data.lastUpdated);
                /* seconds! */
                updateInterval = 60;
                if (data.modified || (data.status == "downloading") || (data.status == "inserting")) {
@@ -112,6 +112,17 @@ function getSoneStatus(soneId) {
 }
 
 /**
+ * Filters the given Sone ID, replacing all “~” characters by an underscore.
+ *
+ * @param soneId
+ *            The Sone ID to filter
+ * @returns The filtered Sone ID
+ */
+function filterSoneId(soneId) {
+       return soneId.replace(/[^a-zA-Z0-9-]/g, "_");
+}
+
+/**
  * Updates the status of the given Sone.
  *
  * @param soneId
@@ -124,14 +135,15 @@ function getSoneStatus(soneId) {
  * @param lastUpdated
  *            The date and time of the last update (formatted for display)
  */
-function updateSoneStatus(soneId, status, modified, lastUpdated) {
-       $("#sone .sone." + soneId).
+function updateSoneStatus(soneId, name, status, modified, lastUpdated) {
+       $("#sone .sone." + filterSoneId(soneId)).
                toggleClass("unknown", status == "unknown").
                toggleClass("idle", status == "idle").
                toggleClass("inserting", status == "inserting").
                toggleClass("downloading", status == "downloading").
                toggleClass("modified", modified);
-       $("#sone .sone." + soneId + " .last-update span.time").text(lastUpdated);
+       $("#sone .sone." + filterSoneId(soneId) + " .last-update span.time").text(lastUpdated);
+       $("#sone .sone." + filterSoneId(soneId) + " .profile-link a").text(name);
 }
 
 var watchedSones = {};
@@ -249,6 +261,25 @@ function getSoneElement(element) {
 }
 
 /**
+ * Generates a list of Sones by concatening the names of the given sones with a
+ * new line character (“\n”).
+ *
+ * @param sones
+ *            The sones to format
+ * @returns {String} The created string
+ */
+function generateSoneList(sones) {
+       var soneList = "";
+       $.each(sones, function() {
+               if (soneList != "") {
+                       soneList += "\n";
+               }
+               soneList += this.name;
+       });
+       return soneList;
+}
+
+/**
  * Returns the ID of the Sone that this element belongs to.
  *
  * @param element
@@ -267,26 +298,62 @@ function getPostId(element) {
        return getPostElement(element).attr("id");
 }
 
+function getReplyElement(element) {
+       return $(element).parents(".reply");
+}
+
+function getReplyId(element) {
+       return getReplyElement(element).attr("id");
+}
+
 function likePost(postId) {
-       $.getJSON("ajax/likePost.ajax", { "post" : postId, "formPassword": getFormPassword() }, function() {
-               $("#sone .post#" + postId + " > .status-line .like").addClass("hidden");
-               $("#sone .post#" + postId + " > .status-line .unlike").removeClass("hidden");
+       $.getJSON("ajax/like.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function() {
+               $("#sone .post#" + postId + " > .inner-part > .status-line .like").addClass("hidden");
+               $("#sone .post#" + postId + " > .inner-part > .status-line .unlike").removeClass("hidden");
                updatePostLikes(postId);
        });
 }
 
 function unlikePost(postId) {
-       $.getJSON("ajax/unlikePost.ajax", { "post" : postId, "formPassword": getFormPassword() }, function() {
-               $("#sone .post#" + postId + " > .status-line .unlike").addClass("hidden");
-               $("#sone .post#" + postId + " > .status-line .like").removeClass("hidden");
+       $.getJSON("ajax/unlike.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function() {
+               $("#sone .post#" + postId + " > .inner-part > .status-line .unlike").addClass("hidden");
+               $("#sone .post#" + postId + " > .inner-part > .status-line .like").removeClass("hidden");
                updatePostLikes(postId);
        });
 }
 
 function updatePostLikes(postId) {
-       $.getJSON("ajax/getPostLikes.ajax", { "post": postId }, function(data, textStatus) {
+       $.getJSON("ajax/getLikes.ajax", { "type": "post", "post": postId }, function(data, textStatus) {
+               if (data.success) {
+                       $("#sone .post#" + postId + " > .inner-part > .status-line .likes").toggleClass("hidden", data.likes == 0)
+                       $("#sone .post#" + postId + " > .inner-part > .status-line .likes span.like-count").text(data.likes);
+                       $("#sone .post#" + postId + " > .inner-part > .status-line .likes > span").attr("title", generateSoneList(data.sones));
+               }
+       });
+}
+
+function likeReply(replyId) {
+       $.getJSON("ajax/like.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function() {
+               $("#sone .reply#" + replyId + " .status-line .like").addClass("hidden");
+               $("#sone .reply#" + replyId + " .status-line .unlike").removeClass("hidden");
+               updateReplyLikes(replyId);
+       });
+}
+
+function unlikeReply(replyId) {
+       $.getJSON("ajax/unlike.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function() {
+               $("#sone .reply#" + replyId + " .status-line .unlike").addClass("hidden");
+               $("#sone .reply#" + replyId + " .status-line .like").removeClass("hidden");
+               updateReplyLikes(replyId);
+       });
+}
+
+function updateReplyLikes(replyId) {
+       $.getJSON("ajax/getLikes.ajax", { "type": "reply", "reply": replyId }, function(data, textStatus) {
                if (data.success) {
-                       $("#sone .post#" + postId + " > .status-line .likes span.like-count").text(data.likes);
+                       $("#sone .reply#" + replyId + " .status-line .likes").toggleClass("hidden", data.likes == 0)
+                       $("#sone .reply#" + replyId + " .status-line .likes span.like-count").text(data.likes);
+                       $("#sone .reply#" + replyId + " .status-line .likes > span").attr("title", generateSoneList(data.sones));
                }
        });
 }