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
|
|
|
|
|
|
|
|
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-01-25 21:55:32 -10:00
|
|
|
this.$back = this.$el.find('.back');
|
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.conversations = new Whisper.ConversationCollection();
|
|
|
|
|
this.inbox = new Whisper.ConversationListView({
|
2015-01-25 02:26:42 -10:00
|
|
|
el : this.$contacts,
|
2014-11-16 16:01:28 -08:00
|
|
|
collection : this.conversations
|
2014-11-16 15:30:40 -08:00
|
|
|
});
|
2014-11-16 16:01:28 -08:00
|
|
|
|
2015-01-25 10:48:47 -10:00
|
|
|
this.$el.addClass('loading');
|
|
|
|
|
this.conversations.fetchActive({reset: true}).then(function() {
|
|
|
|
|
this.$el.removeClass('loading');
|
2015-01-30 11:20:59 -10:00
|
|
|
window.conversations = this.conversations;
|
2015-01-25 10:48:47 -10:00
|
|
|
}.bind(this));
|
2014-11-16 16:01:28 -08:00
|
|
|
|
2015-01-30 11:20:59 -10:00
|
|
|
extension.on('message', function() {
|
|
|
|
|
this.conversations.fetchActive({reset: true});
|
2014-11-16 15:30:40 -08:00
|
|
|
}.bind(this));
|
2015-01-29 20:59:08 -10:00
|
|
|
window.addEventListener('resize', this.inbox.resize.bind(this.inbox));
|
2014-11-16 15:30:40 -08:00
|
|
|
},
|
|
|
|
|
events: {
|
2015-01-26 12:15:07 -10:00
|
|
|
'keyup': 'keyup',
|
2015-01-26 12:04:46 -10:00
|
|
|
'click .back button': 'hideCompose',
|
2015-01-25 21:44:53 -10:00
|
|
|
'click .fab': 'showCompose',
|
2015-01-26 13:55:22 -10:00
|
|
|
'open #contacts': 'openConversation',
|
|
|
|
|
'open .contacts': 'openConversation',
|
2015-02-01 18:37:10 -10:00
|
|
|
'open .new-group-update-form': 'openConversation',
|
2015-01-26 13:55:22 -10:00
|
|
|
'open .new-contact': 'createConversation',
|
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();
|
|
|
|
|
},
|
|
|
|
|
createConversation: function(e, data) {
|
|
|
|
|
this.newConversationView.new_contact.model.save().then(function() {
|
|
|
|
|
bg.openConversation(data.modelId);
|
|
|
|
|
});
|
|
|
|
|
this.hideCompose();
|
2015-01-24 23:55:50 -10:00
|
|
|
},
|
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
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})();
|