X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Fstatic%2Fjavascript%2Fsone.js;h=200c870f187ce6aa9bf209c80faba5ab5e7154e4;hb=ed3c6d96e9b97324c92913dfd289624dedcd3ba3;hp=44cff7ccc690f2cbbed1559890333bdda71449ab;hpb=957281659ee81f25c6d92ddc97288283b458efd3;p=Sone.git diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index 44cff7c..200c870 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -1,18 +1,53 @@ /* Sone JavaScript functions. */ -function registerInputTextareaSwap(inputSelector, defaultText) { - $(inputSelector).focus(function() { - if ($(this).val() == defaultText) { - $(this).val("").removeClass("default"); - } - }).blur(function() { - if ($(this).val() == "") { - $(this).val(defaultText).addClass("default"); - } - }).addClass("default").val(defaultText); - $($(inputSelector).get(0).form).submit(function() { - if ($(inputSelector).hasClass("default")) { - $(inputSelector).val(""); - } +function registerInputTextareaSwap(inputSelector, defaultText, inputFieldName) { + $(inputSelector).each(function() { + textarea = $("").blur(function() { + if ($(this).val() == "") { + $(this).hide(); + $(this).data("inputField").show().removeAttr("disabled"); + } + }).hide().data("inputField", $(this)); + $(this).after(textarea); + (function(inputField, textarea) { + $(inputField).focus(function() { + $(this).hide().attr("disabled", "disabled"); + textarea.show().focus(); + }).addClass("default").val(defaultText); + $(inputField.form).submit(function() { + if (textarea.val() == "") { + return false; + } + }); + })(this, textarea); + }); +} + +/* hide all the “create reply” forms until a link is clicked. */ +function addCommentLinks() { + $("#sone .post").each(function() { + postId = $(this).attr("id"); + commentElement = (function(postId) { + var commentElement = $("
Comment
").addClass("show-reply-form").click(function() { + replyElement = $("#sone .post#" + postId + " .create-reply"); + replyElement.removeClass("hidden"); + replyElement.removeClass("light"); + (function(replyElement) { + replyElement.find("input.reply-input").blur(function() { + if ($(this).hasClass("default")) { + replyElement.addClass("light"); + } + }).focus(function() { + replyElement.removeClass("light"); + }); + })(replyElement); + replyElement.find("input.reply-input").focus(); + }); + return commentElement; + })(postId); + $(this).find(".create-reply").addClass("hidden"); + $(this).find(".status-line .time").each(function() { + $(this).after(commentElement.clone(true)); + }); }); }