2014-11-16 15:30:40 -08:00
|
|
|
/* vim: ts=4:sw=4:expandtab
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
(function () {
|
2014-11-16 16:01:28 -08:00
|
|
|
'use strict';
|
2014-11-16 15:30:40 -08:00
|
|
|
|
2014-11-16 16:01:28 -08:00
|
|
|
window.Whisper = window.Whisper || {};
|
2015-01-26 11:44:03 -10:00
|
|
|
var bg = extension.windows.getBackground();
|
2014-11-16 15:30:40 -08:00
|
|
|
|
2015-03-09 13:20:01 -07:00
|
|
|
var SocketView = Whisper.View.extend({
|
|
|
|
className: 'status',
|
|
|
|
initialize: function() {
|
|
|
|
setInterval(function() {
|
|
|
|
var className, message = '';
|
|
|
|
switch(bg.getSocketStatus && bg.getSocketStatus()) {
|
|
|
|
case WebSocket.CONNECTING:
|
|
|
|
className = 'connecting';
|
|
|
|
break;
|
|
|
|
case WebSocket.OPEN:
|
|
|
|
className = 'open';
|
|
|
|
break;
|
|
|
|
case WebSocket.CLOSING:
|
|
|
|
className = 'closing';
|
|
|
|
break;
|
|
|
|
case WebSocket.CLOSED:
|
|
|
|
className = 'closed';
|
|
|
|
message = 'Websocket closed';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!this.$el.hasClass(className)) {
|
|
|
|
this.$el.attr('class', className);
|
|
|
|
this.$el.text(message);
|
|
|
|
}
|
|
|
|
}.bind(this), 1000);
|
|
|
|
},
|
|
|
|
events: {
|
|
|
|
'click': 'reloadBackgroundPage'
|
|
|
|
},
|
|
|
|
reloadBackgroundPage: function() {
|
|
|
|
bg.location.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-11-16 15:30:40 -08:00
|
|
|
Whisper.InboxView = Backbone.View.extend({
|
|
|
|
initialize: function () {
|
2015-01-25 02:26:42 -10:00
|
|
|
this.$gutter = $('#gutter');
|
|
|
|
this.$contacts = $('#contacts');
|
2015-01-25 21:44:53 -10:00
|
|
|
this.$fab = this.$el.find('.fab');
|
2015-02-23 12:50:07 -08:00
|
|
|
this.$back = this.$el.find('.new-conversation-title');
|
2014-11-16 15:30:40 -08:00
|
|
|
|
2015-01-25 02:26:42 -10:00
|
|
|
this.newConversationView = new Whisper.NewConversationView();
|
2015-01-25 10:47:46 -10:00
|
|
|
this.newConversationView.$el.hide().appendTo(this.$gutter);
|
2014-11-16 15:30:40 -08:00
|
|
|
|
2015-01-24 23:55:50 -10:00
|
|
|
this.inbox = new Whisper.ConversationListView({
|
2015-01-25 02:26:42 -10:00
|
|
|
el : this.$contacts,
|
2015-02-10 15:27:26 -08:00
|
|
|
collection : bg.inbox
|
|
|
|
}).render();
|
2014-11-16 16:01:28 -08:00
|
|
|
|
2015-03-09 13:20:01 -07:00
|
|
|
new SocketView().render().$el.appendTo(this.$el.find('.socket-status'));
|
|
|
|
|
2015-02-18 11:23:13 -08:00
|
|
|
window.addEventListener('beforeunload', function () {
|
|
|
|
this.inbox.stopListening();
|
|
|
|
}.bind(this));
|
2014-11-16 15:30:40 -08:00
|
|
|
},
|
|
|
|
events: {
|
2015-01-26 12:15:07 -10:00
|
|
|
'keyup': 'keyup',
|
2015-02-23 12:50:07 -08:00
|
|
|
'click .back': 'hideCompose',
|
2015-01-25 21:44:53 -10:00
|
|
|
'click .fab': 'showCompose',
|
2015-02-08 08:44:31 -10:00
|
|
|
'select #contacts .contact': 'openConversation',
|
|
|
|
'open .new-conversation': 'openConversation'
|
2015-01-26 11:44:03 -10:00
|
|
|
},
|
|
|
|
openConversation: function(e, data) {
|
|
|
|
bg.openConversation(data.modelId);
|
2015-01-26 13:55:22 -10:00
|
|
|
this.hideCompose();
|
|
|
|
},
|
2015-01-25 21:44:53 -10:00
|
|
|
showCompose: function() {
|
|
|
|
this.$fab.hide();
|
|
|
|
this.$contacts.hide();
|
|
|
|
this.newConversationView.reset();
|
2015-01-26 10:38:27 -10:00
|
|
|
this.newConversationView.$el.show();
|
2015-01-26 12:05:12 -10:00
|
|
|
this.newConversationView.$input.focus();
|
2015-01-25 21:55:32 -10:00
|
|
|
this.$back.show();
|
|
|
|
},
|
|
|
|
hideCompose: function() {
|
|
|
|
this.newConversationView.$el.hide();
|
|
|
|
this.$contacts.show();
|
|
|
|
this.$fab.show();
|
|
|
|
this.$back.hide();
|
2015-01-25 21:44:53 -10:00
|
|
|
},
|
2015-01-26 12:15:07 -10:00
|
|
|
keyup: function(e) {
|
2015-01-25 21:44:53 -10:00
|
|
|
if (e.keyCode === 27) {
|
2015-01-25 21:55:32 -10:00
|
|
|
this.hideCompose();
|
2015-01-25 21:44:53 -10:00
|
|
|
}
|
2014-11-16 15:30:40 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
})();
|