81 lines
2.2 KiB
JavaScript
81 lines
2.2 KiB
JavaScript
(function() {
|
|
var NotificationDropdown = function() {
|
|
var self = this;
|
|
|
|
this.subscribe("widget/ready",function(evt, badge, dropdown) {
|
|
$.extend(self, {
|
|
badge: badge,
|
|
badgeLink: badge.find("a"),
|
|
documentBody: $(document.body),
|
|
dropdown: dropdown,
|
|
dropdownNotifications: dropdown.find(".notifications"),
|
|
ajaxLoader: dropdown.find(".ajax_loader")
|
|
});
|
|
|
|
if( ! $.browser.msie ) {
|
|
self.badgeLink.toggle(self.showDropdown, self.hideDropdown);
|
|
}
|
|
|
|
self.dropdown.click(function(evt) {
|
|
evt.stopPropagation();
|
|
});
|
|
|
|
self.documentBody.click(function(evt) {
|
|
if(self.dropdownShowing()) {
|
|
self.badgeLink.click();
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
this.dropdownShowing = function() {
|
|
return this.dropdown.css("display") === "block";
|
|
};
|
|
|
|
this.showDropdown = function(evt) {
|
|
evt.preventDefault();
|
|
|
|
self.ajaxLoader.show();
|
|
self.badge.addClass("active");
|
|
self.dropdown.css("display", "block");
|
|
|
|
self.getNotifications();
|
|
};
|
|
|
|
this.hideDropdown = function(evt) {
|
|
evt.preventDefault();
|
|
|
|
self.badge.removeClass("active");
|
|
self.dropdown.css("display", "none");
|
|
};
|
|
|
|
this.getNotifications = function() {
|
|
$.getJSON("/notifications?per_page=5", function(notifications) {
|
|
self.notifications = notifications;
|
|
self.renderNotifications();
|
|
});
|
|
};
|
|
|
|
this.renderNotifications = function() {
|
|
self.dropdownNotifications.empty();
|
|
|
|
$.each(self.notifications, function(index, notifications) {
|
|
$.each(notifications, function(index, notification) {
|
|
self.dropdownNotifications.append(notification.note_html);
|
|
});
|
|
});
|
|
self.dropdownNotifications.find("abbr.timeago").timeago();
|
|
|
|
self.dropdownNotifications.find('.unread').each(function(index) {
|
|
Diaspora.page.header.notifications.setUpUnread( $(this) );
|
|
});
|
|
self.dropdownNotifications.find('.read').each(function(index) {
|
|
Diaspora.page.header.notifications.setUpRead( $(this) );
|
|
});
|
|
|
|
self.ajaxLoader.hide();
|
|
};
|
|
};
|
|
|
|
Diaspora.Widgets.NotificationsDropdown = NotificationDropdown;
|
|
})();
|