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/>.
|
|
|
|
*/
|
2014-07-23 09:24:17 +02:00
|
|
|
(function () {
|
2014-12-03 00:47:28 +01:00
|
|
|
'use strict';
|
2014-11-17 00:30:40 +01:00
|
|
|
window.Whisper = window.Whisper || {};
|
2015-03-17 01:40:31 +01:00
|
|
|
emoji.init_colons();
|
2014-07-23 09:24:17 +02:00
|
|
|
|
2015-03-06 00:25:49 +01:00
|
|
|
Whisper.ConversationView = Whisper.View.extend({
|
2015-01-16 09:22:24 +01:00
|
|
|
className: function() {
|
|
|
|
return [ 'conversation', this.model.get('type') ].join(' ');
|
|
|
|
},
|
2015-03-06 00:25:49 +01:00
|
|
|
template: $('#conversation').html(),
|
2015-03-07 02:05:36 +01:00
|
|
|
render_attributes: function() {
|
2015-03-06 00:25:49 +01:00
|
|
|
return { group: this.model.get('type') === 'group' };
|
|
|
|
},
|
2014-11-16 22:19:51 +01:00
|
|
|
initialize: function() {
|
2015-03-06 00:25:49 +01:00
|
|
|
this.listenTo(this.model, 'destroy', this.stopListening);
|
2015-01-16 09:22:24 +01:00
|
|
|
|
2015-03-06 00:25:49 +01:00
|
|
|
this.render();
|
2014-07-23 10:52:59 +02:00
|
|
|
|
2014-11-16 22:19:51 +01:00
|
|
|
this.fileInput = new Whisper.FileInputView({
|
|
|
|
el: this.$el.find('.attachments')
|
|
|
|
});
|
2014-10-24 23:03:34 +02:00
|
|
|
|
2014-11-16 22:19:51 +01:00
|
|
|
this.view = new Whisper.MessageListView({
|
2014-11-17 00:30:40 +01:00
|
|
|
collection: this.model.messageCollection
|
2014-11-16 22:19:51 +01:00
|
|
|
});
|
2015-01-22 10:39:07 +01:00
|
|
|
this.$el.find('.discussion-container').append(this.view.el);
|
2015-02-12 08:39:57 +01:00
|
|
|
this.view.render();
|
2015-01-22 05:27:42 +01:00
|
|
|
|
2015-02-12 20:30:41 +01:00
|
|
|
setTimeout(function() {
|
|
|
|
this.view.scrollToBottom();
|
2015-02-19 01:54:43 +01:00
|
|
|
}.bind(this), 10);
|
2014-11-16 22:19:51 +01:00
|
|
|
},
|
2014-07-23 09:24:17 +02:00
|
|
|
|
2014-11-16 22:19:51 +01:00
|
|
|
events: {
|
|
|
|
'submit .send': 'sendMessage',
|
2014-12-03 00:47:28 +01:00
|
|
|
'close': 'remove',
|
2015-01-14 00:27:18 +01:00
|
|
|
'click .destroy': 'destroyMessages',
|
2015-02-13 05:36:44 +01:00
|
|
|
'click .end-session': 'endSession',
|
|
|
|
'click .leave-group': 'leaveGroup',
|
2015-01-22 05:27:42 +01:00
|
|
|
'click .new-group-update': 'newGroupUpdate',
|
2015-02-27 03:10:04 +01:00
|
|
|
'click .verify-identity': 'verifyIdentity',
|
2015-02-19 20:48:56 +01:00
|
|
|
'click .hamburger': 'toggleMenu',
|
2015-03-11 20:06:19 +01:00
|
|
|
'click' : 'onClick',
|
2015-02-23 22:17:50 +01:00
|
|
|
'select .entry': 'messageDetail'
|
|
|
|
},
|
|
|
|
|
2015-03-11 20:06:19 +01:00
|
|
|
onClick: function(e) {
|
|
|
|
this.closeMenu(e);
|
|
|
|
this.markRead(e);
|
|
|
|
},
|
|
|
|
|
|
|
|
markRead: function(e) {
|
|
|
|
this.model.markRead();
|
|
|
|
},
|
|
|
|
|
2015-02-27 03:10:04 +01:00
|
|
|
verifyIdentity: function() {
|
|
|
|
if (this.model.isPrivate()) {
|
|
|
|
var number = this.model.id;
|
|
|
|
var view = new Whisper.KeyVerificationView({
|
|
|
|
model: {
|
|
|
|
their_key: textsecure.storage.devices.getIdentityKeyForNumber(number),
|
|
|
|
your_key: textsecure.storage.devices.getIdentityKeyForNumber(
|
|
|
|
textsecure.utils.unencodeNumber(textsecure.storage.getUnencrypted("number_id"))[0]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.$el.hide();
|
|
|
|
view.render().$el.insertAfter(this.el);
|
|
|
|
this.listenTo(view, 'back', function() {
|
|
|
|
view.remove();
|
|
|
|
this.$el.show();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
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();
|
2015-03-12 19:40:55 +01:00
|
|
|
this.listenBack(view);
|
|
|
|
},
|
|
|
|
|
|
|
|
listenBack: function(view) {
|
2015-02-23 22:17:50 +01:00
|
|
|
this.listenTo(view, 'back', function() {
|
|
|
|
view.remove();
|
|
|
|
this.$el.show();
|
|
|
|
}.bind(this));
|
2015-02-19 20:48:56 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
closeMenu: function(e) {
|
|
|
|
if (e && !$(e.target).hasClass('hamburger')) {
|
|
|
|
this.$el.find('.menu-list').hide();
|
|
|
|
}
|
2015-01-26 21:37:13 +01:00
|
|
|
},
|
|
|
|
|
2015-02-13 05:36:44 +01: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 21:37:13 +01:00
|
|
|
toggleMenu: function() {
|
|
|
|
this.$el.find('.menu-list').toggle();
|
2015-01-14 00:27:18 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
newGroupUpdate: function() {
|
2015-03-12 19:40:55 +01:00
|
|
|
this.newGroupUpdateView = new Whisper.NewGroupUpdateView({
|
|
|
|
model: this.model
|
|
|
|
});
|
|
|
|
this.newGroupUpdateView.$el.insertAfter(this.el);
|
|
|
|
this.$el.hide();
|
|
|
|
this.listenBack(this.newGroupUpdateView);
|
2014-12-03 00:47:28 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
destroyMessages: function(e) {
|
|
|
|
if (confirm("Permanently delete this conversation?")) {
|
|
|
|
this.model.destroyMessages();
|
|
|
|
}
|
2015-02-13 05:36:44 +01:00
|
|
|
this.$el.find('.menu-list').hide();
|
2014-11-16 22:19:51 +01:00
|
|
|
},
|
2014-10-25 03:44:30 +02:00
|
|
|
|
2014-11-16 22:19:51 +01:00
|
|
|
sendMessage: function(e) {
|
|
|
|
e.preventDefault();
|
2015-01-22 10:39:07 +01:00
|
|
|
var input = this.$el.find('.send input.send-message');
|
2015-03-11 02:12:40 +01:00
|
|
|
var message = this.replace_colons(input.val());
|
2014-11-16 22:19:51 +01:00
|
|
|
var convo = this.model;
|
2014-07-23 22:06:37 +02:00
|
|
|
|
2014-11-16 22:19:51 +01:00
|
|
|
if (message.length > 0 || this.fileInput.hasFiles()) {
|
|
|
|
this.fileInput.getFiles().then(function(attachments) {
|
|
|
|
convo.sendMessage(message, attachments);
|
|
|
|
});
|
|
|
|
input.val("");
|
2015-02-10 10:20:21 +01:00
|
|
|
this.fileInput.deleteFiles();
|
2014-11-16 22:19:51 +01:00
|
|
|
}
|
2015-03-11 02:12:40 +01:00
|
|
|
},
|
|
|
|
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;
|
|
|
|
}
|
2015-03-11 02:12:40 +01:00
|
|
|
});
|
2014-11-16 22:19:51 +01:00
|
|
|
}
|
|
|
|
});
|
2014-07-23 09:24:17 +02:00
|
|
|
})();
|