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.
		
		
		
		
		
			
		
			
				
	
	
		
			143 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			143 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			JavaScript
		
	
| /*
 | |
|  * vim: ts=4:sw=4:expandtab
 | |
|  */
 | |
| 
 | |
| ;(function() {
 | |
|     'use strict';
 | |
|     window.Whisper = window.Whisper || {};
 | |
| 
 | |
|     var SETTINGS = {
 | |
|         OFF     : 'off',
 | |
|         COUNT   : 'count',
 | |
|         NAME    : 'name',
 | |
|         MESSAGE : 'message'
 | |
|     };
 | |
| 
 | |
|     let isEnabled = false;
 | |
| 
 | |
|     Whisper.Notifications = new (Backbone.Collection.extend({
 | |
|         initialize: function() {
 | |
|             this.on('add', this.update);
 | |
|             this.on('remove', this.onRemove);
 | |
|         },
 | |
|         onClick: function(conversationId) {
 | |
|             var conversation = ConversationController.get(conversationId);
 | |
|             this.trigger('click', conversation);
 | |
|         },
 | |
|         update: function() {
 | |
|             const isFocused = window.isFocused();
 | |
|             const shouldPlayNotificationSound =
 | |
|                 storage.get('audio-notification') || false;
 | |
|             const numNotifications = this.length;
 | |
|             console.log(
 | |
|                 'updating notifications:',
 | |
|                 'numNotifications:', numNotifications,
 | |
|                 'isFocused:', isFocused,
 | |
|                 'isEnabled:', isEnabled,
 | |
|                 'shouldPlayNotificationSound:', shouldPlayNotificationSound
 | |
|             );
 | |
| 
 | |
|             if (!isEnabled) {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             const hasNotifications = numNotifications > 0;
 | |
|             if (!hasNotifications) {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             const isNotificationOmitted = isFocused;
 | |
|             if (isNotificationOmitted) {
 | |
|                 this.clear();
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             var setting = storage.get('notification-setting') || 'message';
 | |
|             if (setting === SETTINGS.OFF) {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             window.drawAttention();
 | |
| 
 | |
|             var title;
 | |
|             var message;
 | |
|             var iconUrl;
 | |
| 
 | |
|             // NOTE: i18n has more complex rules for pluralization than just
 | |
|             // distinguishing between zero (0) and other (non-zero),
 | |
|             // e.g. Russian:
 | |
|             // http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html
 | |
|             var newMessageCount = [
 | |
|                 numNotifications,
 | |
|                 numNotifications === 1 ? i18n('newMessage') : i18n('newMessages')
 | |
|             ].join(' ');
 | |
| 
 | |
|             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:
 | |
|                 if (numNotifications === 1) {
 | |
|                   title = last.get('title');
 | |
|                 } else {
 | |
|                   title = newMessageCount;
 | |
|                 }
 | |
|                 message = last.get('message');
 | |
|                 iconUrl = last.get('iconUrl');
 | |
|                 break;
 | |
|             }
 | |
| 
 | |
|             if (window.config.polyfillNotifications) {
 | |
|                 window.nodeNotifier.notify({
 | |
|                     title: title,
 | |
|                     message: message,
 | |
|                     sound: shouldPlayNotificationSound,
 | |
|                 });
 | |
|                 window.nodeNotifier.on('click', function(notifierObject, options) {
 | |
|                     last.get('conversationId');
 | |
|                 });
 | |
|             } else {
 | |
|                 var notification = new Notification(title, {
 | |
|                     body   : message,
 | |
|                     icon   : iconUrl,
 | |
|                     tag    : 'signal',
 | |
|                     silent : !shouldPlayNotificationSound,
 | |
|                 });
 | |
| 
 | |
|                 notification.onclick = this.onClick.bind(this, last.get('conversationId'));
 | |
|             }
 | |
| 
 | |
|             // We don't want to notify the user about these same messages again
 | |
|             this.clear();
 | |
|         },
 | |
|         getSetting: function() {
 | |
|             return storage.get('notification-setting') || SETTINGS.MESSAGE;
 | |
|         },
 | |
|         onRemove: function() {
 | |
|             console.log('remove notification');
 | |
|         },
 | |
|         clear: function() {
 | |
|             console.log('remove all notifications');
 | |
|             this.reset([]);
 | |
|         },
 | |
|         enable: function() {
 | |
|             var shouldUpdate = !isEnabled;
 | |
|             isEnabled = true;
 | |
|             if (shouldUpdate) {
 | |
|               this.update();
 | |
|             }
 | |
|         },
 | |
|         disable: function() {
 | |
|             isEnabled = false;
 | |
|         },
 | |
| 
 | |
|     }))();
 | |
| })();
 |