X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fresources%2Fstatic%2Fjavascript%2Fsone.js;h=efd72a50d57cbc6f64894bcbe4dd605738f12e17;hp=d9c2fb3d3d8d54d8ee673376f81a076608878dda;hb=0e3bd6583c5e987027e3a50a61547dd23ee3ea30;hpb=b4e1998759191eaa6378cd1b99113d95abac63dd diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index d9c2fb3..efd72a5 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -2,13 +2,13 @@ function ajaxGet(url, data, successCallback, errorCallback) { (function(url, data, successCallback, errorCallback) { - $.ajax({"type": "GET", "url": url, "data": data, "dataType": "json", "success": function(data, textStatus, xmlHttpRequest) { + $.ajax({"cache": false, "type": "GET", "url": url, "data": data, "dataType": "json", "success": function(data, textStatus) { ajaxSuccess(); if (typeof successCallback != "undefined") { successCallback(data, textStatus); } - }, "error": function(xmlHttpRequest, textStatus, errorThrown) { - if (xmlHttpRequest.status == 403) { + }, "error": function(xmlHttpRequest) { + if (xmlHttpRequest.status === 403) { notLoggedIn = true; } if (typeof errorCallback != "undefined") { @@ -22,10 +22,10 @@ function ajaxGet(url, data, successCallback, errorCallback) { function registerInputTextareaSwap(inputElement, defaultText, inputFieldName, optional, dontUseTextarea) { $(inputElement).each(function() { - textarea = $(dontUseTextarea ? "" : "").blur(function() { - if ($(this).val() == "") { + var textarea = $(dontUseTextarea ? "" : "").blur(function() { + if ($(this).val() === "") { $(this).hide(); - inputField = $(this).data("inputField"); + var inputField = $(this).data("inputField"); inputField.show().removeAttr("disabled").addClass("default"); inputField.val(defaultText); } @@ -33,20 +33,20 @@ function registerInputTextareaSwap(inputElement, defaultText, inputFieldName, op $(this).data("textarea", textarea).after(textarea); (function(inputField, textarea) { inputField.focus(function() { - $(this).hide().attr("disabled", "disabled"); + $(this).hide().prop("disabled", "disabled"); /* no, show(), “display: block” is not what I need. */ - textarea.attr("style", "display: inline").focus(); + textarea.prop("style", "display: inline").focus(); }); - if (inputField.val() == "") { + if (inputField.val() === "") { inputField.addClass("default"); inputField.val(defaultText); } else { - inputField.hide().attr("disabled", "disabled"); + inputField.hide().prop("disabled", "disabled"); textarea.show(); } $(inputField.get(0).form).submit(function() { - inputField.attr("disabled", "disabled"); - if (!optional && (textarea.val() == "")) { + inputField.prop("disabled", "disabled"); + if (!optional && (textarea.val() === "")) { inputField.removeAttr("disabled").focus(); return false; } @@ -64,18 +64,18 @@ function registerInputTextareaSwap(inputElement, defaultText, inputFieldName, op * The element to add a “comment” link to */ function addCommentLink(postId, author, element, insertAfterThisElement) { - if (($(element).find(".show-reply-form").length > 0) || (getPostElement(element).find(".create-reply").length == 0)) { + if (($(element).find(".show-reply-form").length > 0) || (getPostElement(element).find(".create-reply").length === 0)) { return; } (function(postId, author, insertAfterThisElement) { - separator = $(" · ").addClass("separator"); + var separator = $(" · ").addClass("separator"); getTranslation("WebInterface.Button.Comment", function(text) { - commentElement = $("
" + text + "
").addClass("show-reply-form").click(function() { - replyElement = $("#sone .post#post-" + postId + " .create-reply"); + var commentElement = $("
" + text + "
").addClass("show-reply-form").click(function() { + var replyElement = sone.find(".post#post-" + postId + " .create-reply"); replyElement.removeClass("hidden"); replyElement.removeClass("light"); (function(replyElement) { - replyElement.find("input.reply-input").blur(function() { + replyElement.find(":input.reply-input").blur(function() { if ($(this).hasClass("default")) { replyElement.addClass("light"); } @@ -83,8 +83,8 @@ function addCommentLink(postId, author, element, insertAfterThisElement) { replyElement.removeClass("light"); }); })(replyElement); - textArea = replyElement.find("input.reply-input").focus().data("textarea"); - if (author != getCurrentSoneId()) { + var textArea = replyElement.find(":input.reply-input").focus().data("textarea"); + if (author !== getCurrentSoneId()) { textArea.val(textArea.val() + "@sone://" + author + " "); } }); @@ -110,7 +110,7 @@ function getTranslation(key, callback) { callback(translations[key]); return; } - ajaxGet("getTranslation.ajax", {"key": key}, function(data, textStatus) { + ajaxGet("getTranslation.ajax", {"key": key}, function(data) { if ((data != null) && data.success) { translations[key] = data.value; callback(data.value); @@ -145,22 +145,22 @@ function filterSoneId(soneId) { * The date and time of the last update (formatted for display) */ function updateSoneStatus(soneId, name, status, modified, locked, lastUpdated, lastUpdatedText) { - $("#sone .sone." + filterSoneId(soneId)). - toggleClass("unknown", status == "unknown"). - toggleClass("idle", status == "idle"). - toggleClass("inserting", status == "inserting"). - toggleClass("downloading", status == "downloading"). + var updateSone = sone.find(".sone." + filterSoneId(soneId)); + updateSone.toggleClass("unknown", status === "unknown"). + toggleClass("idle", status === "idle"). + toggleClass("inserting", status === "inserting"). + toggleClass("downloading", status === "downloading"). toggleClass("modified", modified); - $("#sone .sone." + filterSoneId(soneId) + " .lock").toggleClass("hidden", locked); - $("#sone .sone." + filterSoneId(soneId) + " .unlock").toggleClass("hidden", !locked); + updateSone.find(".lock").toggleClass("hidden", locked); + updateSone.find(".unlock").toggleClass("hidden", !locked); if (lastUpdated != null) { - $("#sone .sone." + filterSoneId(soneId) + " .last-update span.time").attr("title", lastUpdated).text(lastUpdatedText); + updateSone.find(".last-update span.time").prop("title", lastUpdated).text(lastUpdatedText); } else { getTranslation("View.Sone.Text.UnknownDate", function(unknown) { - $("#sone .sone." + filterSoneId(soneId) + " .last-update span.time").text(unknown); + updateSone.find(".last-update span.time").text(unknown); }); } - $("#sone .sone." + filterSoneId(soneId) + " .profile-link a").text(name); + updateSone.find(".profile-link a").text(name); } /** @@ -175,7 +175,7 @@ function updateSoneStatus(soneId, name, status, modified, locked, lastUpdated, l */ function enhanceDeleteButton(button, text, deleteCallback) { (function(button) { - newButton = $("").addClass("confirm").hide().text(text).click(function() { + var newButton = $("").addClass("confirm").hide().text(text).click(function() { $(this).fadeOut("slow"); deleteCallback(); return false; @@ -185,7 +185,7 @@ function enhanceDeleteButton(button, text, deleteCallback) { button.fadeOut("slow", function() { newButton.fadeIn("slow"); $(document).one("click", function() { - if (this != newButton.get(0)) { + if (this !== newButton.get(0)) { newButton.fadeOut(function() { button.fadeIn(); }); @@ -210,21 +210,21 @@ function enhanceDeleteButton(button, text, deleteCallback) { */ function enhanceDeletePostButton(button, postId, text) { enhanceDeleteButton(button, text, function() { - ajaxGet("deletePost.ajax", { "post": postId, "formPassword": getFormPassword() }, function(data, textStatus) { + ajaxGet("deletePost.ajax", { "post": postId, "formPassword": getFormPassword() }, function(data) { if (data == null) { return; } if (data.success) { - $("#sone .post#post-" + postId).slideUp(); - } else if (data.error == "invalid-post-id") { + sone.find(".post#post-" + postId).slideUp(); + } else if (data.error === "invalid-post-id") { /* pretend the post is already gone. */ getPost(postId).slideUp(); - } else if (data.error == "auth-required") { + } else if (data.error === "auth-required") { alert("You need to be logged in."); - } else if (data.error == "not-authorized") { + } else if (data.error === "not-authorized") { alert("You are not allowed to delete this post."); } - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); }); @@ -242,28 +242,28 @@ function enhanceDeletePostButton(button, postId, text) { */ function enhanceDeleteReplyButton(button, replyId, text) { enhanceDeleteButton(button, text, function() { - ajaxGet("deleteReply.ajax", { "reply": replyId, "formPassword": $("#sone #formPassword").text() }, function(data, textStatus) { + ajaxGet("deleteReply.ajax", { "reply": replyId, "formPassword": sone.find("#formPassword").text() }, function(data) { if (data == null) { return; } if (data.success) { - $("#sone .reply#reply-" + replyId).slideUp(); - } else if (data.error == "invalid-reply-id") { + sone.find(".reply#reply-" + replyId).slideUp(); + } else if (data.error === "invalid-reply-id") { /* pretend the reply is already gone. */ getReply(replyId).slideUp(); - } else if (data.error == "auth-required") { + } else if (data.error === "auth-required") { alert("You need to be logged in."); - } else if (data.error == "not-authorized") { + } else if (data.error === "not-authorized") { alert("You are not allowed to delete this reply."); } - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); }); } function getFormPassword() { - return $("#sone #formPassword").text(); + return sone.find("#formPassword").text(); } /** @@ -274,8 +274,8 @@ function getFormPassword() { * @returns All Sone elements with the given ID */ function getSone(soneId) { - return $("#sone .sone").filter(function(index) { - return $(".id", this).text() == soneId; + return sone.find(".sone").filter(function() { + return $(".id", this).text() === soneId; }); } @@ -297,21 +297,14 @@ function getMenuSone(element) { /** * Generates a list of Sones by concatening the names of the given sones with a - * new line character (“\n”). + * comma. * * @param sones * The sones to format * @returns {String} The created string */ function generateSoneList(sones) { - var soneList = ""; - $.each(sones, function() { - if (soneList != "") { - soneList += ", "; - } - soneList += this.name; - }); - return soneList; + return sones.reduce((soneList, sone) => soneList + ", " + sone.name, "").substring(2) } /** @@ -333,7 +326,7 @@ function getSoneId(element) { * @returns The element of the post */ function getPost(postId) { - return $("#sone .post#post-" + postId); + return sone.find(".post#post-" + postId); } function getPostElement(element) { @@ -341,7 +334,7 @@ function getPostElement(element) { } function getPostId(element) { - return getPostElement(element).attr("id").substr(5); + return getPostElement(element).prop("id").substr(5); } function getPostTime(element) { @@ -367,7 +360,7 @@ function getPostAuthor(element) { * @returns The element of the reply */ function getReply(replyId) { - return $("#sone .reply#reply-" + replyId); + return sone.find(".reply#reply-" + replyId); } function getReplyElement(element) { @@ -375,7 +368,7 @@ function getReplyElement(element) { } function getReplyId(element) { - return getReplyElement(element).attr("id").substr(6); + return getReplyElement(element).prop("id").substr(6); } function getReplyTime(element) { @@ -401,7 +394,7 @@ function getReplyAuthor(element) { * @returns The notification element */ function getNotification(notificationId) { - return $("#sone #notification-area .notification#" + notificationId); + return sone.find("#notification-area .notification#" + notificationId); } /** @@ -423,7 +416,7 @@ function getNotificationElement(element) { * @returns The ID of the notification */ function getNotificationId(notificationElement) { - return $(notificationElement).attr("id"); + return $(notificationElement).prop("id"); } /** @@ -434,69 +427,69 @@ function getNotificationId(notificationElement) { * @returns The last update time of the notification */ function getNotificationLastUpdatedTime(notificationElement) { - return $(notificationElement).attr("lastUpdatedTime"); + return $(notificationElement).prop("lastUpdatedTime"); } function likePost(postId) { - ajaxGet("like.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) { + ajaxGet("like.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data) { if ((data == null) || !data.success) { return; } - $("#sone .post#post-" + postId + " > .inner-part > .status-line .like").addClass("hidden"); - $("#sone .post#post-" + postId + " > .inner-part > .status-line .unlike").removeClass("hidden"); + sone.find(".post#post-" + postId + " > .inner-part > .status-line .like").addClass("hidden"); + sone.find(".post#post-" + postId + " > .inner-part > .status-line .unlike").removeClass("hidden"); updatePostLikes(postId); - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); } function unlikePost(postId) { - ajaxGet("unlike.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) { + ajaxGet("unlike.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data) { if ((data == null) || !data.success) { return; } - $("#sone .post#post-" + postId + " > .inner-part > .status-line .unlike").addClass("hidden"); - $("#sone .post#post-" + postId + " > .inner-part > .status-line .like").removeClass("hidden"); + sone.find(".post#post-" + postId + " > .inner-part > .status-line .unlike").addClass("hidden"); + sone.find(".post#post-" + postId + " > .inner-part > .status-line .like").removeClass("hidden"); updatePostLikes(postId); - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); } function updatePostLikes(postId) { - ajaxGet("getLikes.ajax", { "type": "post", "post": postId }, function(data, textStatus) { + ajaxGet("getLikes.ajax", { "type": "post", "post": postId }, function(data) { if ((data != null) && data.success) { - $("#sone .post#post-" + postId + " > .inner-part > .status-line .likes").toggleClass("hidden", data.likes == 0); - $("#sone .post#post-" + postId + " > .inner-part > .status-line .likes span.like-count").text(data.likes); - $("#sone .post#post-" + postId + " > .inner-part > .status-line .likes > span").attr("title", generateSoneList(data.sones)); + sone.find(".post#post-" + postId + " > .inner-part > .status-line .likes").toggleClass("hidden", data.likes === 0); + sone.find(".post#post-" + postId + " > .inner-part > .status-line .likes span.like-count").text(data.likes); + sone.find(".post#post-" + postId + " > .inner-part > .status-line .likes > span").prop("title", generateSoneList(data.sones)); } - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); } function likeReply(replyId) { - ajaxGet("like.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) { + ajaxGet("like.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data) { if ((data == null) || !data.success) { return; } - $("#sone .reply#reply-" + replyId + " .status-line .like").addClass("hidden"); - $("#sone .reply#reply-" + replyId + " .status-line .unlike").removeClass("hidden"); + sone.find(".reply#reply-" + replyId + " .status-line .like").addClass("hidden"); + sone.find(".reply#reply-" + replyId + " .status-line .unlike").removeClass("hidden"); updateReplyLikes(replyId); - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); } function unlikeReply(replyId) { - ajaxGet("unlike.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) { + ajaxGet("unlike.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data) { if ((data == null) || !data.success) { return; } - $("#sone .reply#reply-" + replyId + " .status-line .unlike").addClass("hidden"); - $("#sone .reply#reply-" + replyId + " .status-line .like").removeClass("hidden"); + sone.find(".reply#reply-" + replyId + " .status-line .unlike").addClass("hidden"); + sone.find(".reply#reply-" + replyId + " .status-line .like").removeClass("hidden"); updateReplyLikes(replyId); - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); } @@ -508,7 +501,7 @@ function unlikeReply(replyId) { * The ID of the Sone to trust */ function trustSone(soneId) { - ajaxGet("trustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) { + ajaxGet("trustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data) { if ((data != null) && data.success) { updateTrustControls(soneId, data.trustValue); } @@ -522,7 +515,7 @@ function trustSone(soneId) { * The ID of the Sone to distrust */ function distrustSone(soneId) { - ajaxGet("distrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) { + ajaxGet("distrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data) { if ((data != null) && data.success) { updateTrustControls(soneId, data.trustValue); } @@ -536,7 +529,7 @@ function distrustSone(soneId) { * The ID of the Sone to untrust */ function untrustSone(soneId) { - ajaxGet("untrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) { + ajaxGet("untrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data) { if ((data != null) && data.success) { updateTrustControls(soneId, data.trustValue); } @@ -553,15 +546,15 @@ function untrustSone(soneId) { * The trust value for the Sone */ function updateTrustControls(soneId, trustValue) { - $("#sone .post").each(function() { - if (getPostAuthor(this) == soneId) { + sone.find(".post").each(function() { + if (getPostAuthor(this) === soneId) { getPostElement(this).find(".post-trust").toggleClass("hidden", trustValue != null); getPostElement(this).find(".post-distrust").toggleClass("hidden", trustValue != null); getPostElement(this).find(".post-untrust").toggleClass("hidden", trustValue == null); } }); - $("#sone .reply").each(function() { - if (getReplyAuthor(this) == soneId) { + sone.find(".reply").each(function() { + if (getReplyAuthor(this) === soneId) { getReplyElement(this).find(".reply-trust").toggleClass("hidden", trustValue != null); getReplyElement(this).find(".reply-distrust").toggleClass("hidden", trustValue != null); getReplyElement(this).find(".reply-untrust").toggleClass("hidden", trustValue == null); @@ -577,7 +570,7 @@ function updateTrustControls(soneId, trustValue) { */ function bookmarkPost(postId) { (function(postId) { - ajaxGet("bookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data, textStatus) { + ajaxGet("bookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data) { if ((data != null) && data.success) { getPost(postId).find(".bookmark").toggleClass("hidden", true); getPost(postId).find(".unbookmark").toggleClass("hidden", false); @@ -593,7 +586,7 @@ function bookmarkPost(postId) { * The ID of the post to unbookmark */ function unbookmarkPost(postId) { - ajaxGet("unbookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data, textStatus) { + ajaxGet("unbookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data) { if ((data != null) && data.success) { getPost(postId).find(".bookmark").toggleClass("hidden", false); getPost(postId).find(".unbookmark").toggleClass("hidden", true); @@ -602,13 +595,13 @@ function unbookmarkPost(postId) { } function updateReplyLikes(replyId) { - ajaxGet("getLikes.ajax", { "type": "reply", "reply": replyId }, function(data, textStatus) { + ajaxGet("getLikes.ajax", { "type": "reply", "reply": replyId }, function(data) { if ((data != null) && data.success) { - $("#sone .reply#reply-" + replyId + " .status-line .likes").toggleClass("hidden", data.likes == 0); - $("#sone .reply#reply-" + replyId + " .status-line .likes span.like-count").text(data.likes); - $("#sone .reply#reply-" + replyId + " .status-line .likes > span").attr("title", generateSoneList(data.sones)); + sone.find(".reply#reply-" + replyId + " .status-line .likes").toggleClass("hidden", data.likes === 0); + sone.find(".reply#reply-" + replyId + " .status-line .likes span.like-count").text(data.likes); + sone.find(".reply#reply-" + replyId + " .status-line .likes > span").prop("title", generateSoneList(data.sones)); } - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); } @@ -627,7 +620,7 @@ function updateReplyLikes(replyId) { * parameters: success, error, replyId) */ function postReply(sender, postId, text, callbackFunction) { - ajaxGet("createReply.ajax", { "formPassword" : getFormPassword(), "sender": sender, "post" : postId, "text": text }, function(data, textStatus) { + ajaxGet("createReply.ajax", { "formPassword" : getFormPassword(), "sender": sender, "post" : postId, "text": text }, function(data) { if (data == null) { /* TODO - show error */ return; @@ -637,7 +630,7 @@ function postReply(sender, postId, text, callbackFunction) { } else { callbackFunction(false, data.error); } - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); } @@ -703,21 +696,22 @@ function ajaxifyPost(postElement) { return false; }); $(postElement).find(".create-reply button:submit").click(function() { - button = $(this); - button.attr("disabled", "disabled"); - sender = $(this.form).find(":input[name=sender]").val(); - inputField = $(this.form).find(":input[name=text]:enabled").get(0); - postId = getPostId(this); - text = $(inputField).val(); + var button = $(this); + button.prop("disabled", "disabled"); + var sender = $(this.form).find(":input[name=sender]").val(); + var inputField = $(this.form).find(":input[name=text]:enabled").get(0); + var postId = getPostId(this); + var text = $(inputField).val(); (function(sender, postId, text, inputField) { postReply(sender, postId, text, function(success, error, replyId, soneId) { if (success) { $(inputField).val(""); loadNewReply(replyId, soneId, postId); - $("#sone .post#post-" + postId + " .create-reply").addClass("hidden"); - $("#sone .post#post-" + postId + " .create-reply .sender").hide(); - $("#sone .post#post-" + postId + " .create-reply .select-sender").show(); - $("#sone .post#post-" + postId + " .create-reply :input[name=sender]").val(getCurrentSoneId()); + sone.find(".post#post-" + postId + " .create-reply").addClass("hidden"); + sone.find(".post#post-" + postId + " .create-reply .sender").hide(); + sone.find(".post#post-" + postId + " .create-reply .select-sender").show(); + sone.find(".post#post-" + postId + " .create-reply :input[name=sender]").val(getCurrentSoneId()); + updateReplyTimes(replyId); } else { alert(error); } @@ -730,7 +724,7 @@ function ajaxifyPost(postElement) { /* replace all “delete” buttons with javascript. */ (function(postElement) { getTranslation("WebInterface.Confirmation.DeletePostButton", function(deletePostText) { - postId = getPostId(postElement); + var postId = getPostId(postElement); enhanceDeletePostButton($(postElement).find(".delete-post button"), postId, deletePostText); }); })(postElement); @@ -772,8 +766,8 @@ function ajaxifyPost(postElement) { /* convert “show source” link into javascript function. */ $(postElement).find(".show-source").each(function() { $("a", this).click(function() { - post = getPostElement(this); - rawPostText = $(".post-text.raw-text", post); + var post = getPostElement(this); + var rawPostText = $(".post-text.raw-text", post); rawPostText.toggleClass("hidden"); if (rawPostText.hasClass("hidden")) { $(".post-text.short-text", post).removeClass("hidden"); @@ -813,8 +807,8 @@ function ajaxifyPost(postElement) { /* ajaxify author/post links */ $(".post-status-line .permalink a", postElement).click(function() { if (!$(".create-reply", postElement).hasClass("hidden")) { - textArea = $("input.reply-input", postElement).focus().data("textarea"); - $(textArea).replaceSelection($(this).attr("href")); + var textArea = $(":input.reply-input", postElement).focus().data("textarea"); + $(textArea).replaceSelection($(this).prop("href")); } return false; }); @@ -823,7 +817,7 @@ function ajaxifyPost(postElement) { addCommentLink(getPostId(postElement), getPostAuthor(postElement), postElement, $(postElement).find(".post-status-line .permalink-author")); /* process all replies. */ - replyIds = []; + var replyIds = []; $(postElement).find(".reply").each(function() { replyIds.push(getReplyId(this)); ajaxifyReply(this); @@ -832,7 +826,7 @@ function ajaxifyPost(postElement) { /* process reply input fields. */ getTranslation("WebInterface.DefaultText.Reply", function(text) { - $(postElement).find("input.reply-input").each(function() { + $(postElement).find(":input.reply-input").each(function() { registerInputTextareaSwap(this, text, "text", false, false); }); }); @@ -861,7 +855,7 @@ function ajaxifyPost(postElement) { /* show Sone menu when hovering over the avatar. */ $(postElement).find(".post-avatar").mouseover(function() { - if (typeof currentSoneMenuTimeoutHandler != undefined) { + if (typeof currentSoneMenuTimeoutHandler !== undefined) { clearTimeout(currentSoneMenuTimeoutHandler); } currentSoneMenuId = getPostId(this); @@ -872,7 +866,7 @@ function ajaxifyPost(postElement) { }).fadeIn(); }, 1000); }).mouseleave(function() { - if (currentSoneMenuId = getPostId(this)) { + if (currentSoneMenuId === getPostId(this)) { clearTimeout(currentSoneMenuTimeoutHandler); } }); @@ -883,8 +877,8 @@ function ajaxifyPost(postElement) { ajaxGet("followSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() { $(followElement).addClass("hidden"); $(followElement).parent().find(".unfollow").removeClass("hidden"); - $("#sone .sone-menu").each(function() { - if (getMenuSone(this) == soneId) { + sone.find(".sone-menu").each(function() { + if (getMenuSone(this) === soneId) { $(".follow", this).toggleClass("hidden", true); $(".unfollow", this).toggleClass("hidden", false); } @@ -897,8 +891,8 @@ function ajaxifyPost(postElement) { ajaxGet("unfollowSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() { $(unfollowElement).addClass("hidden"); $(unfollowElement).parent().find(".follow").removeClass("hidden"); - $("#sone .sone-menu").each(function() { - if (getMenuSone(this) == soneId) { + sone.find(".sone-menu").each(function() { + if (getMenuSone(this) === soneId) { $(".follow", this).toggleClass("hidden", false); $(".unfollow", this).toggleClass("hidden", true); } @@ -935,8 +929,8 @@ function ajaxifyReply(replyElement) { /* ajaxify author links */ $(".reply-status-line .permalink a", replyElement).click(function() { if (!$(".create-reply", getPostElement(replyElement)).hasClass("hidden")) { - textArea = $("input.reply-input", getPostElement(replyElement)).focus().data("textarea"); - $(textArea).replaceSelection($(this).attr("href")); + var textArea = $(":input.reply-input", getPostElement(replyElement)).focus().data("textarea"); + $(textArea).replaceSelection($(this).prop("href")); } return false; }); @@ -946,8 +940,8 @@ function ajaxifyReply(replyElement) { /* convert “show source” link into javascript function. */ $(replyElement).find(".show-reply-source").each(function() { $("a", this).click(function() { - reply = getReplyElement(this); - rawReplyText = $(".reply-text.raw-text", reply); + var reply = getReplyElement(this); + var rawReplyText = $(".reply-text.raw-text", reply); rawReplyText.toggleClass("hidden"); if (rawReplyText.hasClass("hidden")) { $(".reply-text.short-text", reply).removeClass("hidden"); @@ -1000,7 +994,7 @@ function ajaxifyReply(replyElement) { /* show Sone menu when hovering over the avatar. */ $(replyElement).find(".reply-avatar").mouseover(function() { - if (typeof currentSoneMenuTimeoutHandler != undefined) { + if (typeof currentSoneMenuTimeoutHandler !== undefined) { clearTimeout(currentSoneMenuTimeoutHandler); } currentSoneMenuId = getPostId(this) + "-" + getReplyId(this); @@ -1011,7 +1005,7 @@ function ajaxifyReply(replyElement) { }).fadeIn(); }, 1000); }).mouseleave(function() { - if (currentSoneMenuId = getPostId(this) + "-" + getReplyId(this)) { + if (currentSoneMenuId === getPostId(this) + "-" + getReplyId(this)) { clearTimeout(currentSoneMenuTimeoutHandler); } }); @@ -1022,8 +1016,8 @@ function ajaxifyReply(replyElement) { ajaxGet("followSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() { $(followElement).addClass("hidden"); $(followElement).parent().find(".unfollow").removeClass("hidden"); - $("#sone .sone-menu").each(function() { - if (getMenuSone(this) == soneId) { + sone.find(".sone-menu").each(function() { + if (getMenuSone(this) === soneId) { $(".follow", this).toggleClass("hidden", true); $(".unfollow", this).toggleClass("hidden", false); } @@ -1036,8 +1030,8 @@ function ajaxifyReply(replyElement) { ajaxGet("unfollowSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() { $(unfollowElement).addClass("hidden"); $(unfollowElement).parent().find(".follow").removeClass("hidden"); - $("#sone .sone-menu").each(function() { - if (getMenuSone(this) == soneId) { + sone.find(".sone-menu").each(function() { + if (getMenuSone(this) === soneId) { $(".follow", this).toggleClass("hidden", false); $(".unfollow", this).toggleClass("hidden", true); } @@ -1064,26 +1058,26 @@ function ajaxifyNotification(notification) { notification.find(".text").addClass("hidden"); } notification.find("form.mark-as-read button").click(function() { - allIds = $(":input[name=id]", this.form).val().split(" "); + var allIds = $(":input[name=id]", this.form).val().split(" "); for (var index = 0; index < allIds.length; index += 16) { - ids = allIds.slice(index, index + 16).join(" "); + var ids = allIds.slice(index, index + 16).join(" "); ajaxGet("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": $(":input[name=type]", this.form).val(), "id": ids}); } }); notification.find("a[class^='link-']").each(function() { - linkElement = $(this); + var linkElement = $(this); if (linkElement.is("[href^='viewPost']")) { - id = linkElement.attr("class").substr(5); + var id = linkElement.prop("class").substr(5); if (hasPost(id)) { - linkElement.attr("href", "#post-" + id).addClass("in-page-link"); + linkElement.prop("href", "#post-" + id).addClass("in-page-link"); } } }); notification.find("form.dismiss button").click(function() { - ajaxGet("dismissNotification.ajax", { "formPassword" : getFormPassword(), "notification" : notification.attr("id") }, function(data, textStatus) { + ajaxGet("dismissNotification.ajax", { "formPassword" : getFormPassword(), "notification" : notification.prop("id") }, function() { /* dismiss in case of error, too. */ notification.slideUp(); - }, function(xmlHttpRequest, textStatus, error) { + }, function() { /* ignore error. */ }); }); @@ -1095,7 +1089,7 @@ function ajaxifyNotification(notification) { * determine whether the notifications changed and need to be reloaded. */ function getNotificationHash() { - return $("#sone #notification-area #notification-hash").text(); + return sone.find("#notification-area #notification-hash").text(); } /** @@ -1105,7 +1099,7 @@ function getNotificationHash() { * The new notification hash */ function setNotificationHash(notificationHash) { - $("#sone #notification-area #notification-hash").text(notificationHash); + sone.find("#notification-area #notification-hash").text(notificationHash); } /** @@ -1118,7 +1112,7 @@ function setNotificationHash(notificationHash) { * @returns All extracted IDs */ function getElementIds(notification, selector) { - elementIds = []; + var elementIds = []; $(selector, notification).each(function() { elementIds.push($(this).text()); }); @@ -1135,13 +1129,13 @@ function getElementIds(notification, selector) { * The new notification element */ function checkForRemovedSones(oldNotification, newNotification) { - if (getNotificationId(oldNotification) != "new-sone-notification") { + if (getNotificationId(oldNotification) !== "new-sone-notification") { return; } - oldIds = getElementIds(oldNotification, ".new-sone-id"); - newIds = getElementIds(newNotification, ".new-sone-id"); + var oldIds = getElementIds(oldNotification, ".new-sone-id"); + var newIds = getElementIds(newNotification, ".new-sone-id"); $.each(oldIds, function(index, value) { - if ($.inArray(value, newIds) == -1) { + if ($.inArray(value, newIds) === -1) { markSoneAsKnown(getSone(value), true); } }); @@ -1157,13 +1151,13 @@ function checkForRemovedSones(oldNotification, newNotification) { * The new notification element */ function checkForRemovedPosts(oldNotification, newNotification) { - if (getNotificationId(oldNotification) != "new-post-notification") { + if (getNotificationId(oldNotification) !== "new-post-notification") { return; } - oldIds = getElementIds(oldNotification, ".post-id"); - newIds = getElementIds(newNotification, ".post-id"); + var oldIds = getElementIds(oldNotification, ".post-id"); + var newIds = getElementIds(newNotification, ".post-id"); $.each(oldIds, function(index, value) { - if ($.inArray(value, newIds) == -1) { + if ($.inArray(value, newIds) === -1) { markPostAsKnown(getPost(value), true); } }); @@ -1180,20 +1174,26 @@ function checkForRemovedPosts(oldNotification, newNotification) { * The new notification element */ function checkForRemovedReplies(oldNotification, newNotification) { - if (getNotificationId(oldNotification) != "new-reply-notification") { + if (getNotificationId(oldNotification) !== "new-reply-notification") { return; } - oldIds = getElementIds(oldNotification, ".reply-id"); - newIds = getElementIds(newNotification, ".reply-id"); + var oldIds = getElementIds(oldNotification, ".reply-id"); + var newIds = getElementIds(newNotification, ".reply-id"); $.each(oldIds, function(index, value) { - if ($.inArray(value, newIds) == -1) { + if ($.inArray(value, newIds) === -1) { markReplyAsKnown(getReply(value), true); } }); } function getStatus() { - ajaxGet("getStatus.ajax", isViewSonePage() ? {"soneIds": getShownSoneId() } : {"loadAllSones": isKnownSonesPage()}, function(data, textStatus) { + var parameters = isViewSonePage() ? {"soneIds": getShownSoneId() } : isKnownSonesPage() ? {"soneIds": getShownSoneIds() } : {}; + $.extend(parameters, { + "elements": JSON.stringify($(".linked-element.not-loaded").map(function () { + return $(this).prop("title"); + }).toArray()) + }); + ajaxGet("getStatus.ajax", parameters, function(data) { if ((data != null) && data.success) { /* process Sone information. */ $.each(data.sones, function(index, value) { @@ -1203,18 +1203,21 @@ function getStatus() { if (!notLoggedIn) { showOfflineMarker(!online); } - if (data.notificationHash != getNotificationHash()) { + if (data.notificationHash !== getNotificationHash()) { console.log("Old hash: ", getNotificationHash(), ", new hash: ", data.notificationHash); requestNotifications(); + /* process new posts. */ + $.each(data.newPosts, function(index, value) { + loadNewPost(value.id, value.sone, value.recipient, value.time); + }); + /* process new replies. */ + $.each(data.newReplies, function(index, value) { + loadNewReply(value.id, value.sone, value.post); + }); + } + if (data.linkedElements) { + loadLinkedElements(data.linkedElements) } - /* process new posts. */ - $.each(data.newPosts, function(index, value) { - loadNewPost(value.id, value.sone, value.recipient, value.time); - }); - /* process new replies. */ - $.each(data.newReplies, function(index, value) { - loadNewReply(value.id, value.sone, value.post, value.postSone); - }); /* do it again in 5 seconds. */ setTimeout(getStatus, 5000); } else { @@ -1228,39 +1231,39 @@ function getStatus() { } function requestNotifications() { - ajaxGet("getNotifications.ajax", {}, function(data, textStatus) { + ajaxGet("getNotifications.ajax", {}, function(data) { if (data && data.success) { /* search for removed notifications. */ - $("#sone #notification-area .notification").each(function() { - notificationId = $(this).attr("id"); - foundNotification = false; + sone.find("#notification-area .notification").each(function() { + var notificationId = $(this).prop("id"); + var foundNotification = false; $.each(data.notifications, function(index, value) { - if (value.id == notificationId) { + if (value.id === notificationId) { foundNotification = true; return false; } }); if (!foundNotification) { - if (notificationId == "new-sone-notification" && (data.options["ShowNotification/NewSones"] == true)) { - $(".new-sone-id", this).each(function(index, element) { - soneId = $(this).text(); + if (notificationId === "new-sone-notification" && (data.options["ShowNotification/NewSones"] === true)) { + $(".new-sone-id", this).each(function() { + var soneId = $(this).text(); markSoneAsKnown(getSone(soneId), true); }); - } else if (notificationId == "new-post-notification" && (data.options["ShowNotification/NewPosts"] == true)) { - $(".post-id", this).each(function(index, element) { - postId = $(this).text(); + } else if (notificationId === "new-post-notification" && (data.options["ShowNotification/NewPosts"] === true)) { + $(".post-id", this).each(function() { + var postId = $(this).text(); markPostAsKnown(getPost(postId), true); }); - } else if (notificationId == "new-reply-notification" && (data.options["ShowNotification/NewReplies"] == true)) { - $(".reply-id", this).each(function(index, element) { - replyId = $(this).text(); + } else if (notificationId === "new-reply-notification" && (data.options["ShowNotification/NewReplies"] === true)) { + $(".reply-id", this).each(function() { + var replyId = $(this).text(); markReplyAsKnown(getReply(replyId), true); }); } $(this).slideUp("normal", function() { $(this).remove(); /* remove activity when no notifications are visible. */ - if ($("#sone #notification-area .notification").length == 0) { + if (sone.find("#notification-area .notification").length === 0) { resetActivity(); } }); @@ -1268,11 +1271,11 @@ function requestNotifications() { }); /* process notifications. */ $.each(data.notifications, function(index, value) { - oldNotification = getNotification(value.id); - notification = ajaxifyNotification(createNotification(value.id, value.lastUpdatedTime, value.text, value.dismissable)).hide(); - if (oldNotification.length != 0) { + var oldNotification = getNotification(value.id); + var notification = ajaxifyNotification(createNotification(value.id, value.lastUpdatedTime, value.text, value.dismissable)).hide(); + if (oldNotification.length !== 0) { if ((oldNotification.find(".short-text").length > 0) && (notification.find(".short-text").length > 0)) { - opened = oldNotification.is(":visible") && oldNotification.find(".short-text").hasClass("hidden"); + var opened = oldNotification.is(":visible") && oldNotification.find(".short-text").hasClass("hidden"); notification.find(".short-text").toggleClass("hidden", opened); notification.find(".text").toggleClass("hidden", !opened); } @@ -1281,8 +1284,8 @@ function requestNotifications() { checkForRemovedReplies(oldNotification, notification); oldNotification.replaceWith(notification.show()); } else { - $("#sone #notification-area").append(notification); - if (value.id.substring(0, 5) != "local") { + sone.find("#notification-area").append(notification); + if (value.id.substring(0, 5) !== "local") { notification.slideDown(); setActivity(); } @@ -1309,7 +1312,7 @@ function getCurrentSoneId() { * @returns The page ID */ function getPageId() { - return $("#sone .page-id").text(); + return sone.find(".page-id").text(); } /** @@ -1319,7 +1322,7 @@ function getPageId() { * false otherwise */ function isIndexPage() { - return getPageId() == "index"; + return getPageId() === "index"; } /** @@ -1331,7 +1334,7 @@ function isIndexPage() { * @returns The current page of the pagination */ function getPage(paginationSelector) { - pagination = $(paginationSelector); + var pagination = $(paginationSelector); if (pagination.length > 0) { return $(".current-page", paginationSelector).text(); } @@ -1345,7 +1348,7 @@ function getPage(paginationSelector) { * page, false otherwise */ function isViewSonePage() { - return getPageId() == "view-sone"; + return getPageId() === "view-sone"; } /** @@ -1355,7 +1358,21 @@ function isViewSonePage() { * @returns The ID of the currently shown Sone */ function getShownSoneId() { - return $("#sone .sone-id").first().text(); + return sone.find(".sone-id").first().text(); +} + +/** + * Returns the ID of all currently visible Sones. This is mainly used on the + * “Known Sones” page. + * + * @returns The ID of the currently shown Sones + */ +function getShownSoneIds() { + var soneIds = []; + sone.find("#known-sones .sone .id").each(function() { + soneIds.push($(this).text()); + }); + return soneIds.join(","); } /** @@ -1365,7 +1382,7 @@ function getShownSoneId() { * page, false otherwise */ function isViewPostPage() { - return getPageId() == "view-post"; + return getPageId() === "view-post"; } /** @@ -1375,7 +1392,7 @@ function isViewPostPage() { * @returns The ID of the currently shown post */ function getShownPostId() { - return $("#sone .post-id").text(); + return sone.find(".post-id").text(); } /** @@ -1385,7 +1402,7 @@ function getShownPostId() { * Sones” page, false otherwise */ function isKnownSonesPage() { - return getPageId() == "known-sones"; + return getPageId() === "known-sones"; } /** @@ -1409,7 +1426,7 @@ function hasPost(postId) { * exists on the page, false otherwise */ function hasReply(replyId) { - return $("#sone .reply#reply-" + replyId).length > 0; + return sone.find(".reply#reply-" + replyId).length > 0; } function loadNewPost(postId, soneId, recipientId, time) { @@ -1417,32 +1434,32 @@ function loadNewPost(postId, soneId, recipientId, time) { return; } if (!isIndexPage() || (getPage(".pagination-index") > 1)) { - if (!isViewPostPage() || (getShownPostId() != postId)) { - if (!isViewSonePage() || ((getShownSoneId() != soneId) && (getShownSoneId() != recipientId)) || (getPage(".post-navigation") > 1)) { + if (!isViewPostPage() || (getShownPostId() !== postId)) { + if (!isViewSonePage() || ((getShownSoneId() !== soneId) && (getShownSoneId() !== recipientId)) || (getPage(".post-navigation") > 1)) { return; } } } - if (getPostTime($("#sone .post").last()) > time) { + if (getPostTime(sone.find(".post").last()) > time) { return; } - ajaxGet("getPost.ajax", { "post" : postId }, function(data, textStatus) { + ajaxGet("getPost.ajax", { "post" : postId }, function(data) { if ((data != null) && data.success) { if (hasPost(data.post.id)) { return; } - if ((!isIndexPage() || (getPage(".pagination-index") > 1)) && !(isViewSonePage() && ((getShownSoneId() == data.post.sone) || (getShownSoneId() == data.post.recipient) || (getPage(".post-navigation") > 1)))) { + if ((!isIndexPage() || (getPage(".pagination-index") > 1)) && !(isViewSonePage() && ((getShownSoneId() === data.post.sone) || (getShownSoneId() === data.post.recipient) || (getPage(".post-navigation") > 1)))) { return; } var firstOlderPost = null; - $("#sone .post").each(function() { + sone.find(".post").each(function() { if (getPostTime(this) < data.post.time) { firstOlderPost = $(this); return false; } }); - newPost = $(data.post.html).addClass("hidden"); - if ($(".post-author-local", newPost).text() == "true") { + var newPost = $(data.post.html).addClass("hidden"); + if ($(".post-author-local", newPost).text() === "true") { newPost.removeClass("new"); } if (firstOlderPost != null) { @@ -1456,20 +1473,20 @@ function loadNewPost(postId, soneId, recipientId, time) { }); } -function loadNewReply(replyId, soneId, postId, postSoneId) { +function loadNewReply(replyId, soneId, postId) { if (hasReply(replyId)) { return; } if (!hasPost(postId)) { return; } - ajaxGet("getReply.ajax", { "reply": replyId }, function(data, textStatus) { + ajaxGet("getReply.ajax", { "reply": replyId }, function(data) { /* find post. */ if ((data != null) && data.success) { if (hasReply(data.reply.id)) { return; } - $("#sone .post#post-" + data.reply.postId).each(function() { + sone.find(".post#post-" + data.reply.postId).each(function() { var firstNewerReply = null; $(this).find(".replies .reply").each(function() { if (getReplyTime(this) > data.reply.time) { @@ -1477,8 +1494,8 @@ function loadNewReply(replyId, soneId, postId, postSoneId) { return false; } }); - newReply = $(data.reply.html).addClass("hidden"); - if ($(".reply-author-local", newReply).text() == "true") { + var newReply = $(data.reply.html).addClass("hidden"); + if ($(".reply-author-local", newReply).text() === "true") { newReply.removeClass("new"); (function(newReply) { setTimeout(function() { @@ -1505,6 +1522,41 @@ function loadNewReply(replyId, soneId, postId, postSoneId) { }); } +function loadLinkedElements(links) { + var failedElements = links.filter(function(element) { + return element.failed; + }); + if (failedElements.length > 0) { + failedElements.forEach(function(element) { + getLinkedElements(element.link).each(function() { + $(this).remove() + }); + }); + } + var loadedElements = links.filter(function(element) { + return !element.loading && !element.failed; + }); + if (loadedElements.length > 0) { + ajaxGet("getLinkedElement.ajax", { + "elements": JSON.stringify(loadedElements.map(function(element) { + return element.link; + })) + }, function (data) { + if ((data != null) && (data.success)) { + data.linkedElements.forEach(function (linkedElement) { + getLinkedElements(linkedElement.link).each(function() { + $(this).replaceWith(linkedElement.html); + }); + }); + } + }); + } +} + +function getLinkedElements(link) { + return $(".linked-element[title='" + link + "']") +} + /** * Marks the given Sone as known if it is still new. * @@ -1515,7 +1567,7 @@ function loadNewReply(replyId, soneId, postId, postSoneId) { * request */ function markSoneAsKnown(soneElement, skipRequest) { - if ($(soneElement).is(".new")) { + if ($(soneElement).hasClass("new")) { $(soneElement).removeClass("new"); if ((typeof skipRequest == "undefined") || !skipRequest) { ajaxGet("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": "sone", "id": getSoneId(soneElement)}); @@ -1526,7 +1578,7 @@ function markSoneAsKnown(soneElement, skipRequest) { function markPostAsKnown(postElements, skipRequest) { $(postElements).each(function() { - postElement = this; + var postElement = this; if ($(postElement).hasClass("new") || ((typeof skipRequest != "undefined"))) { (function(postElement) { $(postElement).removeClass("new"); @@ -1543,7 +1595,7 @@ function markPostAsKnown(postElements, skipRequest) { function markReplyAsKnown(replyElements, skipRequest) { $(replyElements).each(function() { - replyElement = this; + var replyElement = this; if ($(replyElement).hasClass("new") || ((typeof skipRequest != "undefined"))) { (function(replyElement) { $(replyElement).removeClass("new"); @@ -1572,7 +1624,7 @@ function updatePostTime(postId, timeText, refreshTime, tooltip) { if (!getPost(postId).is(":visible")) { return; } - getPost(postId).find(".post-status-line > .time a").html(timeText).attr("title", tooltip); + getPost(postId).find(".post-status-line > .time a").html(timeText).prop("title", tooltip); (function(postId, refreshTime) { setTimeout(function() { updatePostTimes(postId); @@ -1587,13 +1639,15 @@ function updatePostTime(postId, timeText, refreshTime, tooltip) { * Comma-separated post IDs */ function updatePostTimes(postIds) { - ajaxGet("getTimes.ajax", { "posts" : postIds }, function(data, textStatus) { - if ((data != null) && data.success) { - $.each(data.postTimes, function(index, value) { - updatePostTime(index, value.timeText, value.refreshTime, value.tooltip); - }); - } - }); + if (postIds !== "") { + ajaxGet("getTimes.ajax", {"posts": postIds}, function (data) { + if ((data != null) && data.success) { + $.each(data.postTimes, function (index, value) { + updatePostTime(index, value.timeText, value.refreshTime, value.tooltip); + }); + } + }); + } } /** @@ -1609,7 +1663,7 @@ function updatePostTimes(postIds) { * The tooltip to show */ function updateReplyTime(replyId, timeText, refreshTime, tooltip) { - getReply(replyId).find(".reply-status-line > .time").html(timeText).attr("title", tooltip); + getReply(replyId).find(".reply-status-line > .time").html(timeText).prop("title", tooltip); (function(replyId, refreshTime) { setTimeout(function() { updateReplyTimes(replyId); @@ -1624,18 +1678,20 @@ function updateReplyTime(replyId, timeText, refreshTime, tooltip) { * Comma-separated post IDs */ function updateReplyTimes(replyIds) { - ajaxGet("getTimes.ajax", { "replies" : replyIds }, function(data, textStatus) { - if ((data != null) && data.success) { - $.each(data.replyTimes, function(index, value) { - updateReplyTime(index, value.timeText, value.refreshTime, value.tooltip); - }); - } - }); + if (replyIds !== "") { + ajaxGet("getTimes.ajax", {"replies": replyIds}, function (data) { + if ((data != null) && data.success) { + $.each(data.replyTimes, function (index, value) { + updateReplyTime(index, value.timeText, value.refreshTime, value.tooltip); + }); + } + }); + } } function resetActivity() { - title = document.title; - if (title.indexOf('(') == 0) { + var title = document.title; + if (title.indexOf('(') === 0) { setTitle(title.substr(title.indexOf(' ') + 1)); } iconBlinking = false; @@ -1643,8 +1699,8 @@ function resetActivity() { function setActivity() { if (!focus) { - title = document.title; - if (title.indexOf('(') != 0) { + var title = document.title; + if (title.indexOf('(') !== 0) { setTitle("(!) " + title); } if (!iconBlinking) { @@ -1698,7 +1754,7 @@ function toggleIcon() { */ function changeIcon(iconUrl) { $("link[rel=icon]").remove(); - $("head").append($("").attr("rel", "icon").attr("type", "image/png").attr("href", iconUrl)); + $("head").append($("").prop("rel", "icon").prop("type", "image/png").prop("href", iconUrl)); $("iframe[id=icon-update]")[0].src += ""; } @@ -1714,9 +1770,9 @@ function changeIcon(iconUrl) { * user */ function createNotification(id, lastUpdatedTime, text, dismissable) { - notification = $("
").addClass("notification").attr("id", id).attr("lastUpdatedTime", lastUpdatedTime); + var notification = $("
").addClass("notification").prop("id", id).prop("lastUpdatedTime", lastUpdatedTime); if (dismissable) { - dismissForm = $("#sone #notification-area #notification-dismiss-template").clone().removeClass("hidden").removeAttr("id"); + var dismissForm = sone.find("#notification-area #notification-dismiss-template").clone().removeClass("hidden").removeAttr("id"); dismissForm.find("input[name=notification]").val(id); notification.append(dismissForm); } @@ -1731,8 +1787,8 @@ function createNotification(id, lastUpdatedTime, text, dismissable) { * The ID of the notification */ function showNotificationDetails(notificationId) { - $("#sone .notification#" + notificationId + " .text").removeClass("hidden"); - $("#sone .notification#" + notificationId + " .short-text").addClass("hidden"); + sone.find(".notification#" + notificationId + " .text").removeClass("hidden"); + sone.find(".notification#" + notificationId + " .short-text").addClass("hidden"); } /** @@ -1742,9 +1798,9 @@ function showNotificationDetails(notificationId) { * The ID of the field to delete */ function deleteProfileField(fieldId) { - ajaxGet("deleteProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId}, function(data, textStatus) { + ajaxGet("deleteProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId}, function(data) { if (data && data.success) { - $("#sone .profile-field#" + data.field.id).slideUp(); + sone.find(".profile-field#" + data.field.id).slideUp(); } }); } @@ -1760,7 +1816,7 @@ function deleteProfileField(fieldId) { * Called when the renaming was successful */ function editProfileField(fieldId, newName, successFunction) { - ajaxGet("editProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "name": newName}, function(data, textStatus) { + ajaxGet("editProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "name": newName}, function(data) { if (data && data.success) { successFunction(); } @@ -1778,7 +1834,7 @@ function editProfileField(fieldId, newName, successFunction) { * Function to call on success */ function moveProfileField(fieldId, direction, successFunction) { - ajaxGet("moveProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "direction": direction}, function(data, textStatus) { + ajaxGet("moveProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "direction": direction}, function(data) { if (data && data.success) { successFunction(); } @@ -1840,11 +1896,11 @@ function ajaxSuccess() { */ function showOfflineMarker(visible) { /* jQuery documentation says toggle() works the other way around?! */ - $("#sone #offline-marker").toggle(visible); + sone.find("#offline-marker").toggle(visible); if (visible) { - $("#sone #main").addClass("offline"); + sone.find("#main").addClass("offline"); } else { - $("#sone #main").removeClass("offline"); + sone.find("#main").removeClass("offline"); } } @@ -1852,9 +1908,10 @@ function showOfflineMarker(visible) { // EVERYTHING BELOW HERE IS EXECUTED AFTER LOADING THE PAGE // +var sone = $("#sone"); var focus = true; var online = true; -var initiallyLoggedIn = $("#sone #loggedIn").text() == "true"; +var initiallyLoggedIn = sone.find("#loggedIn").text() === "true"; var notLoggedIn = !initiallyLoggedIn; /** ID of the next-to-show Sone context menu. */ @@ -1865,25 +1922,33 @@ var currentSoneMenuTimeoutHandler; $(document).ready(function() { + /* rip out the status update textarea. */ + sone.find(".rip-out").each(function() { + var oldElement = $(this); + var newElement = $(""); + newElement.prop("class", oldElement.prop("class")).prop("name", oldElement.prop("name")); + oldElement.before(newElement).remove(); + }); + /* this initializes the status update input field. */ getTranslation("WebInterface.DefaultText.StatusUpdate", function(defaultText) { registerInputTextareaSwap("#sone #update-status .status-input", defaultText, "text", false, false); - $("#sone #update-status .select-sender").css("display", "inline"); - $("#sone #update-status .sender").hide(); - $("#sone #update-status .select-sender button").click(function() { - $("#sone #update-status .sender").show(); - $("#sone #update-status .select-sender").hide(); + sone.find("#update-status .select-sender").css("display", "inline"); + sone.find("#update-status .sender").hide(); + sone.find("#update-status .select-sender button").click(function() { + sone.find("#update-status .sender").show(); + sone.find("#update-status .select-sender").hide(); return false; }); - $("#sone #update-status").submit(function() { - button = $("button:submit", this); - button.attr("disabled", "disabled"); + sone.find("#update-status").submit(function() { + var button = $("button:submit", this); + button.prop("disabled", "disabled"); if ($(this).find(":input.default:enabled").length > 0) { return false; } - sender = $(this).find(":input[name=sender]").val(); - text = $(this).find(":input[name=text]:enabled").val(); - ajaxGet("createPost.ajax", { "formPassword": getFormPassword(), "sender": sender, "text": text }, function(data, textStatus) { + var sender = $(this).find(":input[name=sender]").val(); + var text = $(this).find(":input[name=text]:enabled").val(); + ajaxGet("createPost.ajax", { "formPassword": getFormPassword(), "sender": sender, "text": text }, function() { button.removeAttr("disabled"); }); $(this).find(":input[name=sender]").val(getCurrentSoneId()); @@ -1902,16 +1967,16 @@ $(document).ready(function() { /* ajaxify input field on “view Sone” page. */ getTranslation("WebInterface.DefaultText.Message", function(defaultText) { registerInputTextareaSwap("#sone #post-message input[name=text]", defaultText, "text", false, false); - $("#sone #post-message .select-sender").css("display", "inline"); - $("#sone #post-message .sender").hide(); - $("#sone #post-message .select-sender button").click(function() { - $("#sone #post-message .sender").show(); - $("#sone #post-message .select-sender").hide(); + sone.find("#post-message .select-sender").css("display", "inline"); + sone.find("#post-message .sender").hide(); + sone.find("#post-message .select-sender button").click(function() { + sone.find("#post-message .sender").show(); + sone.find("#post-message .select-sender").hide(); return false; }); - $("#sone #post-message").submit(function() { - sender = $(this).find(":input[name=sender]").val(); - text = $(this).find(":input[name=text]:enabled").val(); + sone.find("#post-message").submit(function() { + var sender = $(this).find(":input[name=sender]").val(); + var text = $(this).find(":input[name=text]:enabled").val(); ajaxGet("createPost.ajax", { "formPassword": getFormPassword(), "recipient": getShownSoneId(), "sender": sender, "text": text }); $(this).find(":input[name=sender]").val(getCurrentSoneId()); $(this).find(":input[name=text]:enabled").val("").blur(); @@ -1923,11 +1988,11 @@ $(document).ready(function() { /* Ajaxifies all posts. */ /* calling getTranslation here will cache the necessary values. */ - getTranslation("WebInterface.Confirmation.DeletePostButton", function(text) { - getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(text) { - getTranslation("WebInterface.DefaultText.Reply", function(text) { - getTranslation("WebInterface.Button.Comment", function(text) { - $("#sone .post").each(function() { + getTranslation("WebInterface.Confirmation.DeletePostButton", function() { + getTranslation("WebInterface.Confirmation.DeleteReplyButton", function() { + getTranslation("WebInterface.DefaultText.Reply", function() { + getTranslation("WebInterface.Button.Comment", function () { + sone.find(".post").each(function() { ajaxifyPost(this); }); }); @@ -1936,8 +2001,8 @@ $(document).ready(function() { }); /* update post times. */ - postIds = []; - $("#sone .post").each(function() { + var postIds = []; + sone.find(".post").each(function() { postIds.push(getPostId(this)); }); updatePostTimes(postIds.join(",")); @@ -1945,15 +2010,15 @@ $(document).ready(function() { /* hides all replies but the latest two. */ if (!isViewPostPage()) { getTranslation("WebInterface.ClickToShow.Replies", function(text) { - $("#sone .post .replies").each(function() { - allReplies = $(this).find(".reply"); + sone.find(".post .replies").each(function() { + var allReplies = $(this).find(".reply"); if (allReplies.length > 2) { - newHidden = false; - for (replyIndex = 0; !newHidden && (replyIndex < (allReplies.length - 2)); ++replyIndex) { + var newHidden = false; + for (var replyIndex = 0; replyIndex < (allReplies.length - 2); ++replyIndex) { $(allReplies[replyIndex]).addClass("hidden"); newHidden |= $(allReplies[replyIndex]).hasClass("new"); } - clickToShowElement = $("
").addClass("click-to-show"); + var clickToShowElement = $("
").addClass("click-to-show"); if (newHidden) { clickToShowElement.addClass("new"); } @@ -1970,12 +2035,12 @@ $(document).ready(function() { }); } - $("#sone .sone").each(function() { + sone.find(".sone").each(function() { ajaxifySone($(this)); }); /* process all existing notifications, ajaxify dismiss buttons. */ - $("#sone #notification-area .notification").each(function() { + sone.find("#notification-area .notification").each(function() { ajaxifyNotification($(this)); });