You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/public/src/modules/notifications.js

161 lines
4.2 KiB
JavaScript

'use strict';
define('notifications', [
'translator',
'components',
'navigator',
'tinycon',
'hooks',
'alerts',
], function (translator, components, navigator, Tinycon, hooks, alerts) {
const Notifications = {};
let unreadNotifs = {};
const _addShortTimeagoString = ({ notifications: notifs }) => new Promise((resolve) => {
translator.toggleTimeagoShorthand(function () {
for (let i = 0; i < notifs.length; i += 1) {
notifs[i].timeago = $.timeago(new Date(parseInt(notifs[i].datetime, 10)));
}
translator.toggleTimeagoShorthand();
resolve({ notifications: notifs });
});
});
hooks.on('filter:notifications.load', _addShortTimeagoString);
Notifications.loadNotifications = function (notifList, callback) {
callback = callback || function () {};
socket.emit('notifications.get', null, function (err, data) {
if (err) {
return alerts.error(err);
}
const notifs = data.unread.concat(data.read).sort(function (a, b) {
return parseInt(a.datetime, 10) > parseInt(b.datetime, 10) ? -1 : 1;
});
hooks.fire('filter:notifications.load', { notifications: notifs }).then(({ notifications }) => {
app.parseAndTranslate('partials/notifications_list', { notifications }, function (html) {
notifList.html(html);
notifList.off('click').on('click', '[data-nid]', function (ev) {
const notifEl = $(this);
if (scrollToPostIndexIfOnPage(notifEl)) {
ev.stopPropagation();
ev.preventDefault();
components.get('notifications/list').dropdown('toggle');
}
const unread = notifEl.hasClass('unread');
if (!unread) {
return;
}
const nid = notifEl.attr('data-nid');
markNotification(nid, true);
});
components.get('notifications').on('click', '.mark-all-read', Notifications.markAllRead);
notifList.on('click', '.mark-read', function () {
const liEl = $(this).parents('li');
const unread = liEl.hasClass('unread');
const nid = liEl.attr('data-nid');
markNotification(nid, unread, function () {
liEl.toggleClass('unread');
});
return false;
});
hooks.fire('action:notifications.loaded', {
notifications: notifs,
list: notifList,
});
callback();
});
});
});
};
Notifications.onNewNotification = function (notifData) {
if (ajaxify.currentPage === 'notifications') {
ajaxify.refresh();
}
socket.emit('notifications.getCount', function (err, count) {
if (err) {
return alerts.error(err);
}
Notifications.updateNotifCount(count);
});
if (!unreadNotifs[notifData.nid]) {
unreadNotifs[notifData.nid] = true;
}
};
function markNotification(nid, read, callback) {
socket.emit('notifications.mark' + (read ? 'Read' : 'Unread'), nid, function (err) {
if (err) {
return alerts.error(err);
}
if (read && unreadNotifs[nid]) {
delete unreadNotifs[nid];
}
if (callback) {
callback();
}
});
}
function scrollToPostIndexIfOnPage(notifEl) {
// Scroll to index if already in topic (gh#5873)
const pid = notifEl.attr('data-pid');
const path = notifEl.attr('data-path');
const postEl = components.get('post', 'pid', pid);
if (path.startsWith(config.relative_path + '/post/') && pid && postEl.length && ajaxify.data.template.topic) {
navigator.scrollToIndex(postEl.attr('data-index'), true);
return true;
}
return false;
}
Notifications.updateNotifCount = function (count) {
const notifIcon = components.get('notifications/icon');
count = Math.max(0, count);
if (count > 0) {
notifIcon.removeClass('fa-bell-o').addClass('fa-bell');
} else {
notifIcon.removeClass('fa-bell').addClass('fa-bell-o');
}
notifIcon.toggleClass('unread-count', count > 0);
notifIcon.attr('data-content', count > 99 ? '99+' : count);
const payload = {
count: count,
updateFavicon: true,
};
hooks.fire('action:notification.updateCount', payload);
if (payload.updateFavicon) {
Tinycon.setBubble(count > 99 ? '99+' : count);
}
if (navigator.setAppBadge) { // feature detection
navigator.setAppBadge(count);
}
};
Notifications.markAllRead = function () {
socket.emit('notifications.markAllRead', function (err) {
if (err) {
alerts.error(err);
}
unreadNotifs = {};
});
};
return Notifications;
});