Remove obsolete notification accessor.
[Sone.git] / src / main / resources / templates / include / head.html
index 8f7aa48..75485bf 100644 (file)
@@ -8,7 +8,9 @@
        <script language="javascript">
                /* this initializes the status update input field. */
                $(document).ready(function() {
-                       registerInputTextareaSwap("#sone #update-status .status-input", "WebInterface.DefaultText.StatusUpdate", "text", false, false);
+                       getTranslation("WebInterface.DefaultText.StatusUpdate", function(text) {
+                               registerInputTextareaSwap("#sone #update-status .status-input", text, "text", false, false);
+                       })
                });
        </script>
 
@@ -16,7 +18,7 @@
                /* these functions are necessary for updating Sone statuses. */
                $(document).ready(function() {
                        $("#sone .sone").each(function() {
-                               watchSone($(this).find(".id").text());
+                               watchSone($(this).find(".id").text(), $(this).hasClass("local"));
                        });
                });
        </script>
        <script language="javascript">
                /* this initializes all reply input fields. */
                $(document).ready(function() {
-                       registerInputTextareaSwap("#sone input.reply-input", "WebInterface.DefaultText.Reply", "text", false, false);
-                       addCommentLinks();
+                       getTranslation("WebInterface.DefaultText.Reply", function(text) {
+                               registerInputTextareaSwap("#sone input.reply-input", text, "text", false, false);
+                               addCommentLinks();
+                       })
+               });
+       </script>
+
+       <script language="javascript">
+               /* replaces all “post reply!” forms with AJAX. */
+               $(document).ready(function() {
+                       $("#sone .create-reply button:submit").click(function() {
+                               $(this.form).submit(function() {
+                                       return false;
+                               });
+                               inputField = $(this.form).find(":input:enabled").get(0);
+                               postId = getPostId($(inputField));
+                               text = $(inputField).val();
+                               $(inputField).val("");
+                               postReply(postId, text, function(success, error, replyId) {
+                                       if (success) {
+                                               getReply(replyId, function(soneId, soneName, replyTime, replyDisplayTime, text, html) {
+                                                       newReply = $(html).insertBefore("#sone .post#" + postId + " .create-reply");
+                                                       $("#sone .post#" + postId + " .create-reply").addClass("hidden");
+                                                       getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(deleteReplyText) {
+                                                               enhanceDeleteReplyButton("#sone .post#" + postId + " .reply#" + replyId + " .delete button", replyId, deleteReplyText);
+                                                       });
+                                                       newReply.find(".status-line .like").submit(function() {
+                                                               likeReply(getReplyId(this));
+                                                               return false;
+                                                       });
+                                                       newReply.find(".status-line .unlike").submit(function() {
+                                                               unlikeReply(getReplyId(this));
+                                                               return false;
+                                                       });
+                                                       addCommentLink(postId, newReply);
+                                               });
+                                       } else {
+                                               alert(error);
+                                       }
+                               });
+                               return false;
+                       });
                });
        </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 + " > .inner-part > .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);
+                       getTranslation("WebInterface.Confirmation.DeletePostButton", function(text) {
+                               deletePostText = text;
+                               getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(text) {
+                                       deleteReplyText = text;
+                                       $("#sone .post").each(function() {
+                                               postId = $(this).attr("id");
+                                               enhanceDeletePostButton("#sone .post#" + postId + " > .inner-part > .status-line .delete button", postId, deletePostText);
+                                               (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, deleteReplyText);
+                                                                       })
+                                                               })(postId, $(this), replyId);
+                                                       });
+                                               })(postId);
                                        });
-                               })(postId);
+                               });
                        });
                });
        </script>
        <script language="javascript">
                /* hides all replies but the latest two. */
                $(document).ready(function() {
-                       $("#sone .post .replies").each(function() {
-                               allReplies = $(this).find(".reply");
-                               if (allReplies.length > 2) {
-                                       for (replyIndex = 0; replyIndex < (allReplies.length - 2); ++replyIndex) {
-                                               $(allReplies[replyIndex]).addClass("hidden");
-                                       }
-                                       clickToShowElement = $("<div></div>").addClass("click-to-show");
-                                       (function(clickToShowElement, allReplies) {
-                                               getTranslation("WebInterface.ClickToShow.Replies", function(text) {
+                       getTranslation("WebInterface.ClickToShow.Replies", function(text) {
+                               $("#sone .post .replies").each(function() {
+                                       allReplies = $(this).find(".reply");
+                                       if (allReplies.length > 2) {
+                                               newHidden = false;
+                                               for (replyIndex = 0; replyIndex < (allReplies.length - 2); ++replyIndex) {
+                                                       $(allReplies[replyIndex]).addClass("hidden");
+                                                       newHidden |= $(allReplies[replyIndex]).hasClass("new");
+                                               }
+                                               clickToShowElement = $("<div></div>").addClass("click-to-show");
+                                               if (newHidden) {
+                                                       clickToShowElement.addClass("new");
+                                               }
+                                               (function(clickToShowElement, allReplies, text) {
                                                        clickToShowElement.text(text);
-                                               });
-                                               clickToShowElement.click(function() {
-                                                       allReplies.removeClass("hidden");
-                                                       clickToShowElement.addClass("hidden");
-                                               });
-                                       })(clickToShowElement, allReplies);
-                                       $(allReplies[0]).before(clickToShowElement);
-                               }
+                                                       clickToShowElement.click(function() {
+                                                               allReplies.removeClass("hidden");
+                                                               clickToShowElement.addClass("hidden");
+                                                       });
+                                               })(clickToShowElement, allReplies, text);
+                                               $(allReplies[0]).before(clickToShowElement);
+                                       }
+                               });
                        });
                });
        </script>
                });
        </script>
 
+       <script language="javascript">
+               /* display large notification about new replies and posts. */
+               $(document).ready(function() {
+                       newPostCount = $("#sone .post.new").length;
+                       newReplyCount = $("#sone .reply.new").length;
+                       if ((newPostCount + newReplyCount) == 0) {
+                               return;
+                       }
+                       if (newPostCount > 0) {
+                               postNotification = $("<div></div>").addClass("notification");
+                               getTranslation("WebInterface.Notification.NewPostCount", function(text) {
+                                       postNotification.append($("<div></div>").text(text)).append($("<div></div>").addClass("post-count").text(newPostCount));
+                               });
+                               postNotification.appendTo("#sone #notification-area");
+                       }
+                       if (newReplyCount > 0) {
+                               replyNotification = $("<div></div>").addClass("notification");
+                               getTranslation("WebInterface.Notification.NewReplyCount", function(text) {
+                                       replyNotification.append($("<div></div>").text(text)).append($("<div></div>").addClass("post-count").text(newReplyCount));
+                               });
+                               replyNotification.appendTo("#sone #notification-area");
+                       }
+               });
+       </script>
+
+       <script language="javascript">
+               /* process all existing notifications, ajaxify dismiss buttons. */
+               $(document).ready(function() {
+                       $("#sone #notification-area .notification").each(function() {
+                               ajaxifyNotificationArea($(this));
+                       });
+               });
+       </script>
+
        <div id="main">
 
                <%if !webInterface.core.identityManager.connected>
                        </div>
                <%/if>
 
+               <div id="notification-area">
+                       <%foreach webInterface.core.notifications.all notification>
+                               <div class="notification" id="<% notification.id|html>">
+                                       <%if notification.dismissable>
+                                               <form class="dismiss" action="dismissNotification.html" method="post">
+                                                       <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+                                                       <input type="hidden" name="returnPage" value="<% request.uri|html>" />
+                                                       <input type="hidden" name="notification" value="<% notification.id|html>" />
+                                                       <button type="submit"><%= Notification.Button.Dismiss|l10n|html></button>
+                                               </form>
+                                       <%/if>
+                                       <% notification>
+                               </div>
+                       <%/foreach>
+               </div>
+
                <div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">
                        <a class="picture" href="index.html">
                                <%ifnull !currentSone>