2015-01-19 01:43:25 +00:00
|
|
|
/*global $, Whisper, Backbone, textsecure, extension*/
|
2015-09-07 21:53:43 +00:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-01-19 01:43:25 +00:00
|
|
|
*/
|
|
|
|
|
2015-01-22 04:27:42 +00:00
|
|
|
// This script should only be included in background.html
|
2015-01-19 01:43:25 +00:00
|
|
|
(function () {
|
2015-02-11 10:47:50 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2015-09-17 06:13:17 +00:00
|
|
|
window.setUnreadCount = function(count) {
|
2015-05-26 20:28:43 +00:00
|
|
|
if (count > 0) {
|
|
|
|
extension.navigator.setBadgeText(count);
|
|
|
|
} else {
|
|
|
|
extension.navigator.setBadgeText("");
|
|
|
|
}
|
2015-09-17 06:13:17 +00:00
|
|
|
};
|
2015-05-26 20:28:43 +00:00
|
|
|
|
2015-03-17 22:06:21 +00:00
|
|
|
window.notifyConversation = function(message) {
|
2015-05-24 23:19:33 +00:00
|
|
|
var conversationId = message.get('conversationId');
|
2015-09-09 02:19:30 +00:00
|
|
|
var conversation = ConversationController.get(conversationId);
|
|
|
|
if (!conversation) {
|
2015-09-17 05:47:42 +00:00
|
|
|
conversation = ConversationController.create({id: conversationId});
|
2015-09-09 02:19:30 +00:00
|
|
|
conversation.fetch();
|
|
|
|
}
|
2015-09-16 01:49:41 +00:00
|
|
|
|
2015-08-26 23:10:44 +00:00
|
|
|
if (inboxOpened) {
|
2015-09-14 20:47:47 +00:00
|
|
|
conversation.trigger('newmessages');
|
2015-11-02 07:44:15 +00:00
|
|
|
if (inboxFocused) {
|
2015-09-16 01:49:41 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-11-02 07:44:15 +00:00
|
|
|
if (inboxOpened) {
|
|
|
|
extension.windows.drawAttention(inboxWindowId);
|
|
|
|
}
|
2015-09-16 01:49:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Whisper.Notifications.isEnabled()) {
|
2015-09-09 02:19:30 +00:00
|
|
|
var sender = ConversationController.create({id: message.get('source')});
|
2015-03-17 22:06:21 +00:00
|
|
|
conversation.fetch().then(function() {
|
2015-03-19 23:17:26 +00:00
|
|
|
sender.fetch().then(function() {
|
2015-09-14 03:25:04 +00:00
|
|
|
sender.getNotificationIcon().then(function(iconUrl) {
|
|
|
|
Whisper.Notifications.add({
|
|
|
|
title : sender.getTitle(),
|
|
|
|
message : message.getNotificationText(),
|
|
|
|
iconUrl : iconUrl,
|
|
|
|
imageUrl : message.getImageUrl(),
|
|
|
|
conversationId: conversation.id
|
2015-09-10 07:46:50 +00:00
|
|
|
});
|
2015-03-19 23:17:26 +00:00
|
|
|
});
|
2015-03-17 22:06:21 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
2015-08-27 22:21:25 +00:00
|
|
|
openConversation(conversation);
|
2015-03-17 22:06:21 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-02-11 10:47:50 +00:00
|
|
|
/* Inbox window controller */
|
2015-11-02 07:44:15 +00:00
|
|
|
var inboxFocused = false;
|
2015-02-11 10:47:50 +00:00
|
|
|
var inboxOpened = false;
|
2015-05-23 00:10:01 +00:00
|
|
|
var inboxWindowId = 'inbox';
|
2015-09-16 01:49:41 +00:00
|
|
|
var appWindow = null;
|
2015-05-12 21:01:45 +00:00
|
|
|
window.openInbox = function() {
|
2015-02-11 10:47:50 +00:00
|
|
|
if (inboxOpened === false) {
|
|
|
|
inboxOpened = true;
|
|
|
|
extension.windows.open({
|
2015-05-12 21:01:45 +00:00
|
|
|
id: 'inbox',
|
2015-02-11 10:47:50 +00:00
|
|
|
url: 'index.html',
|
|
|
|
focused: true,
|
2015-08-25 23:47:15 +00:00
|
|
|
width: 580,
|
2015-07-29 18:23:56 +00:00
|
|
|
height: 440,
|
2015-09-18 20:12:10 +00:00
|
|
|
minWidth: 600,
|
|
|
|
minHeight: 360
|
2015-02-11 10:47:50 +00:00
|
|
|
}, function (windowInfo) {
|
|
|
|
inboxWindowId = windowInfo.id;
|
2015-09-16 01:49:41 +00:00
|
|
|
appWindow = windowInfo;
|
2015-03-12 18:23:41 +00:00
|
|
|
|
2015-07-01 20:28:06 +00:00
|
|
|
windowInfo.onClosed.addListener(function () {
|
2015-08-27 22:21:25 +00:00
|
|
|
inboxOpened = false;
|
2015-09-16 01:49:41 +00:00
|
|
|
appWindow = null;
|
2015-07-01 20:28:06 +00:00
|
|
|
});
|
2015-11-02 07:44:15 +00:00
|
|
|
|
|
|
|
appWindow.contentWindow.addEventListener('blur', function() {
|
|
|
|
inboxFocused = false;
|
|
|
|
});
|
|
|
|
appWindow.contentWindow.addEventListener('focus', function() {
|
|
|
|
inboxFocused = true;
|
|
|
|
});
|
2015-07-01 20:28:06 +00:00
|
|
|
|
2015-03-12 18:23:41 +00:00
|
|
|
// close the panel if background.html is refreshed
|
2015-05-13 18:23:59 +00:00
|
|
|
extension.windows.beforeUnload(function() {
|
2015-03-12 18:23:41 +00:00
|
|
|
// TODO: reattach after reload instead of closing.
|
2015-07-01 20:28:06 +00:00
|
|
|
extension.windows.remove(inboxWindowId);
|
2015-03-12 18:23:41 +00:00
|
|
|
});
|
2015-02-11 10:47:50 +00:00
|
|
|
});
|
|
|
|
} else if (inboxOpened === true) {
|
2015-05-12 21:01:45 +00:00
|
|
|
extension.windows.focus(inboxWindowId, function (error) {
|
|
|
|
if (error) {
|
|
|
|
inboxOpened = false;
|
|
|
|
openInbox();
|
|
|
|
}
|
|
|
|
});
|
2015-01-22 04:27:42 +00:00
|
|
|
}
|
2015-05-12 21:01:45 +00:00
|
|
|
};
|
2015-05-15 20:54:29 +00:00
|
|
|
|
2015-09-05 01:33:14 +00:00
|
|
|
var open;
|
2015-09-14 03:25:04 +00:00
|
|
|
window.openConversation = function(conversation) {
|
2015-09-05 01:33:14 +00:00
|
|
|
if (inboxOpened === true) {
|
|
|
|
var appWindow = chrome.app.window.get(inboxWindowId);
|
|
|
|
appWindow.contentWindow.openConversation(conversation);
|
|
|
|
} else {
|
|
|
|
open = conversation;
|
|
|
|
}
|
2015-09-16 03:41:48 +00:00
|
|
|
openInbox();
|
2015-09-14 03:25:04 +00:00
|
|
|
};
|
2015-09-05 01:33:14 +00:00
|
|
|
window.getOpenConversation = function() {
|
|
|
|
var o = open;
|
|
|
|
open = null;
|
|
|
|
return o;
|
|
|
|
};
|
2015-01-22 04:27:42 +00:00
|
|
|
})();
|