2017-04-12 14:20:56 -07:00
|
|
|
/*global $, Whisper, Backbone, extension*/
|
2015-09-07 14:53:43 -07:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-01-18 15:43:25 -10:00
|
|
|
*/
|
|
|
|
|
2015-01-21 18:27:42 -10:00
|
|
|
// This script should only be included in background.html
|
2015-01-18 15:43:25 -10:00
|
|
|
(function () {
|
2015-02-11 02:47:50 -08:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2015-11-07 14:11:13 -08:00
|
|
|
window.isOpen = function() {
|
2017-04-12 14:20:56 -07:00
|
|
|
return true;
|
2015-11-07 14:11:13 -08:00
|
|
|
};
|
2015-09-15 18:49:41 -07:00
|
|
|
|
2015-11-07 14:11:13 -08:00
|
|
|
window.drawAttention = function() {
|
2017-04-12 14:20:56 -07:00
|
|
|
if (isOpen() && !isFocused()) {
|
2017-08-24 18:22:01 -05:00
|
|
|
if (window.keepClear) {
|
|
|
|
clearInterval(window.keepClear);
|
|
|
|
delete window.keepClear;
|
|
|
|
}
|
2017-08-28 12:59:08 -07:00
|
|
|
console.log('draw attention');
|
2015-11-07 14:11:13 -08:00
|
|
|
extension.windows.drawAttention(inboxWindowId);
|
2015-03-17 15:06:21 -07:00
|
|
|
}
|
|
|
|
};
|
2016-04-11 15:27:39 -07:00
|
|
|
window.clearAttention = function() {
|
2017-08-28 12:59:08 -07:00
|
|
|
console.log('clear attention');
|
2017-08-24 18:22:01 -05:00
|
|
|
if (window.keepClear) {
|
|
|
|
clearInterval(window.keepClear);
|
|
|
|
delete window.keepClear;
|
|
|
|
}
|
2017-08-25 14:28:05 -07:00
|
|
|
window.keepClear = setInterval(function() {
|
|
|
|
extension.windows.clearAttention(inboxWindowId);
|
2017-08-24 18:22:01 -05:00
|
|
|
}, 2000);
|
2016-04-11 15:27:39 -07:00
|
|
|
};
|
2015-05-22 17:10:01 -07:00
|
|
|
var inboxWindowId = 'inbox';
|
2017-04-12 14:20:56 -07:00
|
|
|
|
|
|
|
window.openInbox = function(options) {
|
|
|
|
Whisper.events.trigger('openInbox', options);
|
2015-05-12 14:01:45 -07:00
|
|
|
};
|
2015-05-15 13:54:29 -07:00
|
|
|
|
2015-11-10 21:19:57 +02:00
|
|
|
window.setUnreadCount = function(count) {
|
|
|
|
if (count > 0) {
|
2017-04-24 17:00:17 -07:00
|
|
|
window.setBadgeCount(count);
|
2017-04-12 19:44:22 -07:00
|
|
|
window.document.title = "Signal (" + count + ")";
|
2015-11-10 21:19:57 +02:00
|
|
|
} else {
|
2017-04-24 17:00:17 -07:00
|
|
|
window.setBadgeCount(0);
|
2017-04-12 19:44:22 -07:00
|
|
|
window.document.title = "Signal";
|
2015-11-10 21:19:57 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-09-13 20:25:04 -07:00
|
|
|
window.openConversation = function(conversation) {
|
2017-04-12 14:20:56 -07:00
|
|
|
Whisper.events.trigger('openConversation', conversation);
|
2015-09-04 18:33:14 -07:00
|
|
|
};
|
2017-04-12 14:20:56 -07:00
|
|
|
|
2015-01-21 18:27:42 -10:00
|
|
|
})();
|