session-desktop/js/views/conversation_view.js

234 lines
8.2 KiB
JavaScript
Raw Normal View History

2014-11-13 23:36:09 +01: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 () {
'use strict';
window.Whisper = window.Whisper || {};
emoji.init_colons();
Whisper.ConversationView = Whisper.View.extend({
className: function() {
return [ 'conversation', this.model.get('type') ].join(' ');
},
template: $('#conversation').html(),
render_attributes: function() {
2015-05-23 00:41:30 +02:00
return {
group: this.model.get('type') === 'group',
title: this.model.getTitle()
};
},
initialize: function(options) {
this.listenTo(this.model, 'destroy', this.stopListening);
this.listenTo(this.model, 'change:name', this.updateTitle);
this.render();
this.appWindow = options.appWindow;
new Whisper.WindowControlsView({
appWindow: this.appWindow
2015-05-23 00:41:30 +02:00
}).$el.insertAfter(this.$('.menu'));
this.fileInput = new Whisper.FileInputView({
el: this.$('.attachments'),
window: this.appWindow.contentWindow
});
this.view = new Whisper.MessageListView({
collection: this.model.messageCollection,
window: this.appWindow.contentWindow
});
this.$('.discussion-container').append(this.view.el);
2015-02-12 08:39:57 +01:00
this.view.render();
2015-06-23 22:43:22 +02:00
this.$messageField = this.$('.send-message');
var onResize = this.forceUpdateMessageFieldSize.bind(this);
this.appWindow.contentWindow.addEventListener('resize', onResize);
var onfocus = this.markRead.bind(this);
this.appWindow.contentWindow.addEventListener('focus', onfocus);
2015-06-23 22:43:22 +02:00
this.appWindow.onClosed.addListener(function () {
this.appWindow.contentWindow.removeEventListener('resize', onResize);
this.appWindow.contentWindow.removeEventListener('focus', onfocus);
2015-06-23 22:43:22 +02:00
window.autosize.destroy(this.$messageField);
this.remove();
}.bind(this));
setTimeout(function() {
this.view.scrollToBottom();
}.bind(this), 10);
},
events: {
'submit .send': 'sendMessage',
'input .send-message': 'updateMessageFieldSize',
'keydown .send-message': 'updateMessageFieldSize',
'click .destroy': 'destroyMessages',
'click .end-session': 'endSession',
'click .leave-group': 'leaveGroup',
'click .new-group-update': 'newGroupUpdate',
'click .verify-identity': 'verifyIdentity',
'click .hamburger': 'toggleMenu',
'click .openInbox' : 'openInbox',
'click' : 'onClick',
2015-02-23 22:17:50 +01:00
'select .entry': 'messageDetail'
},
openInbox: function() {
openInbox();
},
onClick: function(e) {
this.closeMenu(e);
this.markRead(e);
},
markRead: function(e) {
this.model.markRead();
},
verifyIdentity: function() {
if (this.model.isPrivate()) {
2015-05-27 02:08:14 +02:00
var their_number = this.model.id;
var our_number = textsecure.storage.user.getNumber();
textsecure.storage.axolotl.getIdentityKey(their_number).then(function(their_key) {
textsecure.storage.axolotl.getIdentityKey(our_number).then(function(our_key) {
var view = new Whisper.KeyVerificationView({
model: { their_key: their_key, your_key: our_key }
});
this.$el.hide();
view.render().$el.insertAfter(this.el);
this.listenTo(view, 'back', function() {
view.remove();
this.$el.show();
}.bind(this));
}.bind(this));
}.bind(this));
}
},
2015-02-23 22:17:50 +01:00
messageDetail: function(e, data) {
2015-03-06 01:30:59 +01:00
var view = new Whisper.MessageDetailView({
model: data.message,
conversation: this.model
});
2015-02-23 22:17:50 +01:00
view.$el.insertAfter(this.$el);
this.$el.hide();
view.render();
this.listenBack(view);
},
listenBack: function(view) {
2015-02-23 22:17:50 +01:00
this.listenTo(view, 'back', function() {
view.remove();
this.$el.show();
});
},
closeMenu: function(e) {
if (e && !$(e.target).hasClass('hamburger')) {
this.$('.menu-list').hide();
}
2015-01-26 21:37:13 +01:00
},
endSession: function() {
this.model.endSession();
this.$('.menu-list').hide();
},
leaveGroup: function() {
this.model.leaveGroup();
this.$('.menu-list').hide();
},
2015-01-26 21:37:13 +01:00
toggleMenu: function() {
this.$('.menu-list').toggle();
},
newGroupUpdate: function() {
this.newGroupUpdateView = new Whisper.NewGroupUpdateView({
model: this.model,
window: this.appWindow.contentWindow
});
this.newGroupUpdateView.$el.insertAfter(this.el);
this.$el.hide();
this.listenBack(this.newGroupUpdateView);
},
destroyMessages: function(e) {
this.confirm("Permanently delete this conversation?").then(function() {
this.model.destroyMessages();
}.bind(this));
this.$('.menu-list').hide();
},
sendMessage: function(e) {
e.preventDefault();
2015-06-23 22:43:22 +02:00
var input = this.$messageField;
var message = this.replace_colons(input.val());
var convo = this.model;
if (message.length > 0 || this.fileInput.hasFiles()) {
this.fileInput.getFiles().then(function(attachments) {
convo.sendMessage(message, attachments);
});
input.val("");
this.forceUpdateMessageFieldSize(e);
this.fileInput.deleteFiles();
}
},
replace_colons: function(str) {
return str.replace(emoji.rx_colons, function(m){
var idx = m.substr(1, m.length-2);
var val = emoji.map.colons[idx];
2015-03-12 19:03:11 +01:00
if (val) {
return emoji.data[val][0][0];
} else {
return m;
}
});
},
updateTitle: function() {
this.$('.conversation-title').text(this.model.getTitle());
},
updateMessageFieldSize: function (event) {
var keyCode = event.which || event.keyCode;
if (keyCode === 13 && !event.altKey && !event.shiftKey && !event.ctrlKey) {
// enter pressed - submit the form now
event.preventDefault();
return this.$('.bottom-bar form').submit();
}
2015-06-23 22:43:22 +02:00
var $discussionContainer = this.$('.discussion-container'),
$bottomBar = this.$('.bottom-bar');
2015-06-23 22:43:22 +02:00
window.autosize(this.$messageField);
$bottomBar.outerHeight(this.$messageField.outerHeight() + 1);
var $bottomBarNewHeight = $bottomBar.outerHeight();
$discussionContainer.outerHeight(this.$el.outerHeight() - $bottomBarNewHeight - this.$('#header').outerHeight());
},
forceUpdateMessageFieldSize: function (event) {
2015-06-23 22:43:22 +02:00
window.autosize.update(this.$messageField);
this.updateMessageFieldSize(event);
}
});
})();