2015-09-07 21:53:43 +00:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-03-17 22:06:21 +00:00
|
|
|
*/
|
|
|
|
;(function() {
|
|
|
|
'use strict';
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2016-02-18 00:08:17 +00:00
|
|
|
var SETTINGS = {
|
|
|
|
OFF : 'off',
|
|
|
|
COUNT : 'count',
|
|
|
|
NAME : 'name',
|
|
|
|
MESSAGE : 'message'
|
|
|
|
};
|
|
|
|
|
2017-03-08 00:54:46 +00:00
|
|
|
var sound = new Audio('audio/NewMessage.mp3');
|
2017-01-28 19:33:57 +00:00
|
|
|
|
2015-09-14 03:25:04 +00:00
|
|
|
Whisper.Notifications = new (Backbone.Collection.extend({
|
|
|
|
initialize: function() {
|
2017-04-28 01:21:52 +00:00
|
|
|
this.on('add', this.update);
|
2016-02-22 20:55:19 +00:00
|
|
|
this.on('remove', this.onRemove);
|
2015-09-14 03:25:04 +00:00
|
|
|
},
|
|
|
|
onclick: function() {
|
2017-09-01 18:30:41 +00:00
|
|
|
var conversation;
|
2015-09-14 03:25:04 +00:00
|
|
|
var last = this.last();
|
2017-09-01 18:30:41 +00:00
|
|
|
if (last) {
|
|
|
|
conversation = ConversationController.get(last.get('conversationId'));
|
2015-09-14 03:25:04 +00:00
|
|
|
}
|
2017-09-01 18:30:41 +00:00
|
|
|
this.trigger('click', conversation);
|
2015-09-14 03:25:04 +00:00
|
|
|
this.clear();
|
|
|
|
},
|
2015-11-25 23:11:01 +00:00
|
|
|
update: function() {
|
2016-07-18 23:00:11 +00:00
|
|
|
console.log('updating notifications', this.length);
|
2016-04-11 18:24:18 +00:00
|
|
|
if (this.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
2017-01-28 19:33:57 +00:00
|
|
|
var audioNotification = storage.get('audio-notification') || false;
|
|
|
|
if (audioNotification) {
|
|
|
|
sound.play();
|
|
|
|
}
|
|
|
|
|
2016-02-18 00:08:17 +00:00
|
|
|
var setting = storage.get('notification-setting') || 'message';
|
|
|
|
if (setting === SETTINGS.OFF) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-28 01:31:35 +00:00
|
|
|
var title;
|
|
|
|
var message;
|
|
|
|
var iconUrl;
|
|
|
|
|
|
|
|
var newMessageCount = [
|
2016-02-18 00:08:17 +00:00
|
|
|
this.length,
|
|
|
|
this.length === 1 ? i18n('newMessage') : i18n('newMessages')
|
|
|
|
].join(' ');
|
|
|
|
|
2017-04-28 01:31:35 +00:00
|
|
|
var last = this.last();
|
|
|
|
switch (this.getSetting()) {
|
|
|
|
case SETTINGS.COUNT:
|
|
|
|
title = 'Signal';
|
|
|
|
message = newMessageCount;
|
|
|
|
break;
|
|
|
|
case SETTINGS.NAME:
|
|
|
|
title = newMessageCount;
|
|
|
|
message = 'Most recent from ' + last.get('title');
|
|
|
|
iconUrl = last.get('iconUrl');
|
|
|
|
break;
|
|
|
|
case SETTINGS.MESSAGE:
|
|
|
|
title = last.get('title');
|
|
|
|
message = last.get('message');
|
|
|
|
iconUrl = last.get('iconUrl');
|
|
|
|
break;
|
2017-04-28 01:21:52 +00:00
|
|
|
}
|
2017-05-04 18:06:18 +00:00
|
|
|
var notification = new Notification(title, {
|
|
|
|
body : message,
|
|
|
|
icon : iconUrl,
|
|
|
|
tag : 'signal'
|
|
|
|
});
|
|
|
|
notification.onclick = this.onclick.bind(this);
|
2015-09-14 03:25:04 +00:00
|
|
|
},
|
2016-02-18 00:08:17 +00:00
|
|
|
getSetting: function() {
|
|
|
|
return storage.get('notification-setting') || 'message';
|
|
|
|
},
|
|
|
|
showMessage: function() {
|
|
|
|
return this.getSetting() === SETTINGS.MESSAGE;
|
|
|
|
},
|
|
|
|
showSender: function() {
|
|
|
|
var setting = this.getSetting();
|
|
|
|
return (setting === SETTINGS.MESSAGE || setting === SETTINGS.NAME);
|
|
|
|
},
|
2016-02-22 20:55:19 +00:00
|
|
|
onRemove: function() {
|
2016-07-29 01:09:09 +00:00
|
|
|
console.log('remove notification');
|
2016-02-22 20:55:19 +00:00
|
|
|
if (this.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
2015-09-14 03:25:04 +00:00
|
|
|
clear: function() {
|
|
|
|
this.reset([]);
|
|
|
|
}
|
|
|
|
}))();
|
2015-03-17 22:06:21 +00:00
|
|
|
})();
|