Make “follow”, “unfollow”, “block” and “unblock” buttons dynamic.
[Sone.git] / src / main / resources / templates / include / head.html
index e006967..ee4278c 100644 (file)
 <div id="sone">
 
+       <div id="formPassword"><% formPassword|html></div>
+
        <script src="javascript/jquery-1.4.2.js" language="javascript"></script>
        <script src="javascript/sone.js" language="javascript"></script>
 
        <script language="javascript">
+               /* this initializes the status update input field. */
+               $(document).ready(function() {
+                       registerInputTextareaSwap("#sone #update-status .status-input", "WebInterface.DefaultText.StatusUpdate", "text", false);
+               });
+       </script>
+
+       <script language="javascript">
+               /* these functions are necessary for updating Sone statuses. */
+               $(document).ready(function() {
+                       $("#sone .sone").each(function() {
+                               watchSone($(this).find(".id").text());
+                       });
+               });
+       </script>
+
+       <script language="javascript">
+               /* this initializes all reply input fields. */
+               $(document).ready(function() {
+                       registerInputTextareaSwap("#sone input.reply-input", "WebInterface.DefaultText.Reply", "text", false);
+                       addCommentLinks();
+               });
+       </script>
+
+       <script language="javascript">
+               /* replace all “delete” buttons with javascript. */
+               $(document).ready(function() {
+                       $("#sone .post").each(function() {
+                               postId = $(this).attr("id");
+                               enhanceDeletePostButton("#sone .post#" + postId + " > .status-line .delete button", postId);
+                               (function(postId) {
+                                       $("#sone .post#" + postId + " .reply").each(function() {
+                                               replyId = $(this).attr("id");
+                                               (function(postId, reply, replyId) {
+                                                       reply.find(".delete button").each(function() {
+                                                               enhanceDeleteReplyButton("#sone .post#" + postId + " .reply#" + replyId + " .delete button", replyId);
+                                                       })
+                                               })(postId, $(this), replyId);
+                                       });
+                               })(postId);
+                       });
+               });
+       </script>
+
+       <script language="javascript">
+               /* convert all “follow”, “unfollow”, “block”, and “unblock” links to something nicer. */
                $(document).ready(function() {
-                       registerInputTextareaSwap("#sone #update-status .status-input", "What are you doing?");
+                       $("#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;
+                       });
                });
        </script>
 
        <div id="main">
 
                <div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">
-                       <a class="picture" href="index.html"></a>
-                       <div class="nice-name profile-link"><a href="viewSone.html?sone=<% currentSone.id|html>"><% currentSone.niceName|html></a></div>
-                       <div class="edit-profile-link"><a href="editProfile.html"><%= View.Head.ProfileLink.Text|l10n|html></a></div>
+                       <a class="picture" href="index.html">&nbsp;</a>
                        <%ifnull ! currentSone>
-                               <%include include/updateStatus.html>
+                               <div id="home-sone">
+                                       <% currentSone|store key=sone>
+                                       <%include include/viewSone.html>
+                                       <%include include/updateStatus.html>
+                               </div>
                        <%/if>
                </div>