mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
197 lines
5.7 KiB
JavaScript
197 lines
5.7 KiB
JavaScript
(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('<p style="padding:.5em 1em;">' + Globalize.translate('LabelNoUnreadNotifications') + '</p>');
|
|
|
|
return;
|
|
}
|
|
|
|
Notifications.total = totalRecordCount;
|
|
|
|
var html = '';
|
|
|
|
if (totalRecordCount > limit && showPaging === true) {
|
|
|
|
var query = { StartIndex: startIndex, Limit: limit };
|
|
|
|
html += LibraryBrowser.getPagingHtml(query, totalRecordCount, false, limit, 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 += '<div data-notificationid="' + notification.Id + '" class="' + cssClass + '">';
|
|
|
|
html += '<div class="notificationImage">';
|
|
html += getImageHtml(notification);
|
|
html += '</div>';
|
|
|
|
html += '<div class="notificationContent">';
|
|
|
|
html += '<p style="font-size:16px;margin: .5em 0 .5em;" class="notificationName">';
|
|
if (notification.Url) {
|
|
html += '<a href="' + notification.Url + '" target="_blank" style="text-decoration:none;">' + notification.Name + '</a>';
|
|
} else {
|
|
html += notification.Name;
|
|
}
|
|
html += '</p>';
|
|
|
|
html += '<p class="notificationTime" style="margin: .5em 0;">' + humane_date(notification.Date) + '</p>';
|
|
|
|
if (notification.Description) {
|
|
html += '<p style="margin: .5em 0;max-height:150px;overflow:hidden;text-overflow:ellipsis;">' + notification.Description + '</p>';
|
|
}
|
|
|
|
html += '</div>';
|
|
|
|
html += '</div>';
|
|
|
|
return html;
|
|
}
|
|
|
|
function getImageHtml(notification) {
|
|
|
|
if (notification.Level == "Error") {
|
|
|
|
return '<div class="imgNotification imgNotificationError"><div class="imgNotificationInner imgNotificationIcon"></div></div>';
|
|
|
|
}
|
|
if (notification.Level == "Warning") {
|
|
|
|
return '<div class="imgNotification imgNotificationWarning"><div class="imgNotificationInner imgNotificationIcon"></div></div>';
|
|
|
|
}
|
|
|
|
return '<div class="imgNotification imgNotificationNormal"><div class="imgNotificationInner imgNotificationIcon"></div></div>';
|
|
|
|
}
|
|
|
|
window.Notifications = new notifications();
|
|
|
|
$(document).on('libraryMenuCreated', function (e) {
|
|
|
|
if (window.ApiClient) {
|
|
Notifications.updateNotificationCount();
|
|
}
|
|
});
|
|
|
|
function onWebSocketMessage(e, msg) {
|
|
if (msg.MessageType === "NotificationUpdated" || msg.MessageType === "NotificationAdded" || msg.MessageType === "NotificationsMarkedRead") {
|
|
|
|
Notifications.getNotificationsSummaryPromise = null;
|
|
|
|
Notifications.updateNotificationCount();
|
|
}
|
|
}
|
|
|
|
function initializeApiClient(apiClient) {
|
|
$(apiClient).off("websocketmessage", onWebSocketMessage).on("websocketmessage", onWebSocketMessage);
|
|
}
|
|
|
|
Dashboard.ready(function () {
|
|
|
|
if (window.ApiClient) {
|
|
initializeApiClient(window.ApiClient);
|
|
}
|
|
|
|
$(ConnectionManager).on('apiclientcreated', function (e, apiClient) {
|
|
initializeApiClient(apiClient);
|
|
});
|
|
});
|
|
|
|
})(jQuery, document, Dashboard, LibraryBrowser); |