(function ($, document, Dashboard, LibraryBrowser) { function notifications() { var self = this; self.getNotificationsSummaryPromise = null; self.total = 0; self.getNotificationsSummary = function () { var apiClient = window.ApiClient; if (!apiClient) { return; } self.getNotificationsSummaryPromise = self.getNotificationsSummaryPromise || apiClient.getNotificationSummary(Dashboard.getCurrentUserId()); return self.getNotificationsSummaryPromise; }; self.updateNotificationCount = function () { if (!Dashboard.getCurrentUserId()) { return; } var promise = self.getNotificationsSummary(); if (!promise) { return; } promise.done(function (summary) { var item = $('.btnNotificationsInner').removeClass('levelNormal').removeClass('levelWarning').removeClass('levelError').html(summary.UnreadCount); if (summary.UnreadCount) { item.addClass('level' + summary.MaxUnreadNotificationLevel); } }); }; self.markNotificationsRead = function (ids, callback) { ApiClient.markNotificationsRead(Dashboard.getCurrentUserId(), ids, true).done(function () { self.getNotificationsSummaryPromise = null; self.updateNotificationCount(); if (callback) { callback(); } }); }; self.showNotificationsList = function (startIndex, limit, elem) { refreshNotifications(startIndex, limit, elem, true); }; } function refreshNotifications(startIndex, limit, elem, showPaging) { var apiClient = window.ApiClient; if (apiClient) { return apiClient.getNotifications(Dashboard.getCurrentUserId(), { StartIndex: startIndex, Limit: limit }).done(function (result) { listUnreadNotifications(result.Notifications, result.TotalRecordCount, startIndex, limit, elem, showPaging); }); } } function listUnreadNotifications(list, totalRecordCount, startIndex, limit, elem, showPaging) { if (!totalRecordCount) { elem.html('
' + Globalize.translate('LabelNoUnreadNotifications') + '
'); return; } Notifications.total = totalRecordCount; var html = ''; if (totalRecordCount > limit && showPaging === true) { var query = { StartIndex: startIndex, Limit: limit }; html += LibraryBrowser.getQueryPagingHtml({ startIndex: query.StartIndex, limit: query.Limit, totalRecordCount: totalRecordCount, showLimit: false, updatePageSizeSetting: false }); } for (var i = 0, length = list.length; i < length; i++) { var notification = list[i]; html += getNotificationHtml(notification); } elem.html(html).trigger('create'); } function getNotificationHtml(notification) { var html = ''; var cssClass = notification.IsRead ? "flyoutNotification" : "flyoutNotification unreadFlyoutNotification"; html += ''; if (notification.Url) { html += '' + notification.Name + ''; } else { html += notification.Name; } html += '
'; html += '' + humane_date(notification.Date) + '
'; if (notification.Description) { html += ' '; } html += '