|
|
|
'use strict';
|
|
|
|
|
|
|
|
/* globals define, socket, utils, config, app, ajaxify, templates, Tinycon*/
|
|
|
|
|
|
|
|
define('notifications', ['sounds', 'translator'], function(sound, translator) {
|
|
|
|
var Notifications = {};
|
|
|
|
|
|
|
|
Notifications.prepareDOM = function() {
|
|
|
|
var notifContainer = $('.notifications'),
|
|
|
|
notifTrigger = notifContainer.children('a'),
|
|
|
|
notifList = $('#notif-list'),
|
|
|
|
notifIcon = $('.notification-icon');
|
|
|
|
|
|
|
|
notifTrigger.on('click', function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
if (notifContainer.hasClass('open')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
socket.emit('notifications.get', null, function(err, data) {
|
|
|
|
if (err) {
|
|
|
|
return app.alertError(err.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
var notifs = data.unread.concat(data.read).sort(function(a, b) {
|
|
|
|
return parseInt(a.datetime, 10) > parseInt(b.datetime, 10) ? -1 : 1;
|
|
|
|
});
|
|
|
|
|
|
|
|
translator.toggleTimeagoShorthand();
|
|
|
|
for(var i=0; i<notifs.length; ++i) {
|
|
|
|
notifs[i].timeago = $.timeago(new Date(parseInt(notifs[i].datetime, 10)));
|
|
|
|
}
|
|
|
|
translator.toggleTimeagoShorthand();
|
|
|
|
|
|
|
|
templates.parse('partials/notifications_list', {notifications: notifs}, function(html) {
|
|
|
|
notifList.translateHtml(html);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
notifList.on('click', '[data-nid]', function() {
|
|
|
|
var unread = $(this).hasClass('unread');
|
|
|
|
if (!unread) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
socket.emit('notifications.markRead', $(this).attr('data-nid'), function(err) {
|
|
|
|
if (err) {
|
|
|
|
return app.alertError(err.message);
|
|
|
|
}
|
|
|
|
increaseNotifCount(-1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
notifContainer.on('click', '.mark-all-read', function() {
|
|
|
|
socket.emit('notifications.markAllRead', function(err) {
|
|
|
|
if (err) {
|
|
|
|
app.alertError(err.message);
|
|
|
|
}
|
|
|
|
updateNotifCount(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
notifList.on('click', '.mark-read', function(e) {
|
|
|
|
var liEl = $(this).parent(),
|
|
|
|
unread = liEl.hasClass('unread');
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
socket.emit('notifications.mark' + (unread ? 'Read' : 'Unread'), liEl.attr('data-nid'), function(err) {
|
|
|
|
if (err) {
|
|
|
|
app.alertError(err.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
liEl.toggleClass('unread');
|
|
|
|
increaseNotifCount(unread ? -1 : 1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function updateNotifCount(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 > 20 ? '20+' : count);
|
|
|
|
|
|
|
|
Tinycon.setBubble(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
function increaseNotifCount(delta) {
|
|
|
|
var count = parseInt(notifIcon.attr('data-content'), 10) + delta;
|
|
|
|
updateNotifCount(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
socket.emit('notifications.getCount', function(err, count) {
|
|
|
|
if (!err) {
|
|
|
|
updateNotifCount(count);
|
|
|
|
} else {
|
|
|
|
updateNotifCount(0);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('event:new_notification', function(notifData) {
|
|
|
|
app.alert({
|
|
|
|
alert_id: 'new_notif',
|
|
|
|
title: '[[notifications:new_notification]]',
|
|
|
|
message: '[[notifications:you_have_unread_notifications]]',
|
|
|
|
type: 'warning',
|
|
|
|
timeout: 2000
|
|
|
|
});
|
|
|
|
app.refreshTitle();
|
|
|
|
|
|
|
|
if (ajaxify.currentPage === 'notifications') {
|
|
|
|
ajaxify.refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
increaseNotifCount(1);
|
|
|
|
|
|
|
|
sound.play('notification');
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('event:notifications.updateCount', function(count) {
|
|
|
|
updateNotifCount(count);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return Notifications;
|
|
|
|
});
|