2014-11-13 22:36:09 +00: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/>.
|
|
|
|
*/
|
2014-07-23 07:24:17 +00:00
|
|
|
(function () {
|
2014-12-02 23:47:28 +00:00
|
|
|
'use strict';
|
2014-11-16 23:30:40 +00:00
|
|
|
window.Whisper = window.Whisper || {};
|
2014-07-23 07:24:17 +00:00
|
|
|
|
2014-11-16 21:19:51 +00:00
|
|
|
Whisper.ConversationView = Backbone.View.extend({
|
2015-01-16 08:22:24 +00:00
|
|
|
className: function() {
|
|
|
|
return [ 'conversation', this.model.get('type') ].join(' ');
|
|
|
|
},
|
2014-11-16 21:19:51 +00:00
|
|
|
initialize: function() {
|
|
|
|
this.listenTo(this.model, 'destroy', this.stopListening); // auto update
|
|
|
|
this.template = $('#conversation').html();
|
|
|
|
Mustache.parse(this.template);
|
2015-01-16 08:22:24 +00:00
|
|
|
|
|
|
|
this.$el.html(Mustache.render(this.template,
|
|
|
|
{ group: this.model.get('type') === 'group' }
|
|
|
|
));
|
2014-07-23 08:52:59 +00:00
|
|
|
|
2014-11-16 21:19:51 +00:00
|
|
|
this.fileInput = new Whisper.FileInputView({
|
|
|
|
el: this.$el.find('.attachments')
|
|
|
|
});
|
2014-10-24 21:03:34 +00:00
|
|
|
|
2014-11-16 21:19:51 +00:00
|
|
|
this.view = new Whisper.MessageListView({
|
2014-11-16 23:30:40 +00:00
|
|
|
collection: this.model.messageCollection
|
2014-11-16 21:19:51 +00:00
|
|
|
});
|
2015-01-22 09:39:07 +00:00
|
|
|
this.$el.find('.discussion-container').append(this.view.el);
|
2015-02-12 07:39:57 +00:00
|
|
|
this.view.render();
|
2015-01-22 04:27:42 +00:00
|
|
|
|
2015-01-30 06:59:08 +00:00
|
|
|
window.addEventListener('resize', this.view.resize.bind(this.view));
|
2015-02-12 19:30:41 +00:00
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
this.view.resize();
|
|
|
|
this.view.scrollToBottom();
|
|
|
|
}.bind(this), 0);
|
2014-11-16 21:19:51 +00:00
|
|
|
},
|
2014-07-23 07:24:17 +00:00
|
|
|
|
2014-11-16 21:19:51 +00:00
|
|
|
events: {
|
|
|
|
'submit .send': 'sendMessage',
|
2014-12-02 23:47:28 +00:00
|
|
|
'close': 'remove',
|
2015-01-13 23:27:18 +00:00
|
|
|
'click .destroy': 'destroyMessages',
|
2015-02-13 04:36:44 +00:00
|
|
|
'click .end-session': 'endSession',
|
|
|
|
'click .leave-group': 'leaveGroup',
|
2015-01-22 04:27:42 +00:00
|
|
|
'click .new-group-update': 'newGroupUpdate',
|
|
|
|
'click .settings-btn': 'toggleSettings',
|
2015-01-26 20:37:13 +00:00
|
|
|
'click .go-back': 'toggleSettings',
|
|
|
|
'click .hamburger': 'toggleMenu'
|
|
|
|
},
|
|
|
|
|
2015-02-13 04:36:44 +00:00
|
|
|
endSession: function() {
|
|
|
|
this.model.endSession();
|
|
|
|
this.$el.find('.menu-list').hide();
|
|
|
|
},
|
|
|
|
|
|
|
|
leaveGroup: function() {
|
|
|
|
this.model.leaveGroup();
|
|
|
|
this.$el.find('.menu-list').hide();
|
|
|
|
},
|
|
|
|
|
2015-01-26 20:37:13 +00:00
|
|
|
toggleMenu: function() {
|
|
|
|
this.$el.find('.menu-list').toggle();
|
2015-01-13 23:27:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
newGroupUpdate: function() {
|
|
|
|
if (!this.newGroupUpdateView) {
|
|
|
|
this.newGroupUpdateView = new Whisper.NewGroupUpdateView({
|
|
|
|
model: this.model
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.newGroupUpdateView.delegateEvents();
|
|
|
|
}
|
|
|
|
this.newGroupUpdateView.render().$el.insertBefore(this.view.el);
|
2014-12-02 23:47:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
destroyMessages: function(e) {
|
|
|
|
if (confirm("Permanently delete this conversation?")) {
|
|
|
|
this.model.destroyMessages();
|
|
|
|
this.model.collection.remove(this.model);
|
|
|
|
this.remove();
|
|
|
|
this.model.trigger('destroy');
|
|
|
|
}
|
2015-02-13 04:36:44 +00:00
|
|
|
this.$el.find('.menu-list').hide();
|
2014-11-16 21:19:51 +00:00
|
|
|
},
|
2014-10-25 01:44:30 +00:00
|
|
|
|
2014-11-16 21:19:51 +00:00
|
|
|
sendMessage: function(e) {
|
|
|
|
e.preventDefault();
|
2015-01-22 09:39:07 +00:00
|
|
|
var input = this.$el.find('.send input.send-message');
|
2014-11-16 21:19:51 +00:00
|
|
|
var message = input.val();
|
|
|
|
var convo = this.model;
|
2014-07-23 20:06:37 +00:00
|
|
|
|
2014-11-16 21:19:51 +00:00
|
|
|
if (message.length > 0 || this.fileInput.hasFiles()) {
|
|
|
|
this.fileInput.getFiles().then(function(attachments) {
|
|
|
|
convo.sendMessage(message, attachments);
|
|
|
|
});
|
|
|
|
input.val("");
|
2015-02-10 09:20:21 +00:00
|
|
|
this.fileInput.deleteFiles();
|
2014-11-16 21:19:51 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-01-22 04:27:42 +00:00
|
|
|
toggleSettings: function (e) {
|
|
|
|
$('body').toggleClass('settings-open');
|
|
|
|
console.log('toggling');
|
|
|
|
debugger;
|
2014-11-16 21:19:51 +00:00
|
|
|
}
|
|
|
|
});
|
2014-07-23 07:24:17 +00:00
|
|
|
})();
|