Implement Sone blacklisting via JavaScript.
[Sone.git] / src / main / resources / templates / include / head.html
index 9528ecd..3a2ab57 100644 (file)
@@ -1,4 +1,4 @@
-<div id="sone">
+<div id="sone" class="<%ifnull ! currentSone>online<%else>offline<%/if>">
 
        <div id="formPassword"><% formPassword|html></div>
 
@@ -8,7 +8,7 @@
        <script language="javascript">
                /* this initializes the status update input field. */
                $(document).ready(function() {
-                       registerInputTextareaSwap("#sone #update-status .status-input", "WebInterface.DefaultText.StatusUpdate", "text", false);
+                       registerInputTextareaSwap("#sone #update-status .status-input", "WebInterface.DefaultText.StatusUpdate", "text", false, false);
                });
        </script>
 
@@ -24,7 +24,7 @@
        <script language="javascript">
                /* this initializes all reply input fields. */
                $(document).ready(function() {
-                       registerInputTextareaSwap("#sone input.reply-input", "WebInterface.DefaultText.Reply", "text", false);
+                       registerInputTextareaSwap("#sone input.reply-input", "WebInterface.DefaultText.Reply", "text", false, false);
                        addCommentLinks();
                });
        </script>
                });
        </script>
 
+       <script language="javascript">
+               /* convert all “follow”, “unfollow”, “block”, and “unblock” links to something nicer. */
+               $(document).ready(function() {
+                       $("#sone .follow").submit(function() {
+                               var followElement = this;
+                               $.getJSON("ajax/followSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
+                                       $(followElement).addClass("hidden");
+                                       $(followElement).parent().find(".unfollow").removeClass("hidden");
+                               });
+                               return false;
+                       });
+                       $("#sone .unfollow").submit(function() {
+                               var unfollowElement = this;
+                               $.getJSON("ajax/unfollowSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
+                                       $(unfollowElement).addClass("hidden");
+                                       $(unfollowElement).parent().find(".follow").removeClass("hidden");
+                               });
+                               return false;
+                       });
+                       $("#sone .block").submit(function() {
+                               var blockElement = this;
+                               $.getJSON("ajax/blockSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
+                                       $(blockElement).addClass("hidden");
+                                       $(blockElement).parent().find(".unblock").removeClass("hidden");
+                               });
+                               return false;
+                       });
+                       $("#sone .unblock").submit(function() {
+                               var unblockElement = this;
+                               $.getJSON("ajax/unblockSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
+                                       $(unblockElement).addClass("hidden");
+                                       $(unblockElement).parent().find(".block").removeClass("hidden");
+                               });
+                               return false;
+                       });
+                       $("#sone .blacklist").submit(function() {
+                               var blacklistElement = this;
+                               $.getJSON("ajax/blacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
+                                       $(getSoneElement(blacklistElement)).slideUp();
+                               });
+                               return false;
+                       });
+                       $("#sone .unblacklist").submit(function() {
+                               var unblacklistElement = this;
+                               $.getJSON("ajax/unblacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
+                                       $(getSoneElement(unblacklistElement)).slideUp();
+                               });
+                               return false;
+                       });
+               });
+       </script>
+
+       <script language="javascript">
+               /* convert all “like” buttons to javascript functions. */
+               $(document).ready(function() {
+                       $("#sone .post > .status-line .like").submit(function() {
+                               likePost(getPostId(this));
+                               return false;
+                       });
+                       $("#sone .post > .status-line .unlike").submit(function() {
+                               unlikePost(getPostId(this));
+                               return false;
+                       });
+                       $("#sone .post .reply .status-line .like").submit(function() {
+                               likeReply(getReplyId(this));
+                               return false;
+                       });
+                       $("#sone .post .reply .status-line .unlike").submit(function() {
+                               unlikeReply(getReplyId(this));
+                               return false;
+                       });
+               });
+       </script>
+
        <div id="main">
 
                <div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">