session-desktop/js/views/conversation_view.js

489 lines
17 KiB
JavaScript
Raw Normal View History

/*
* vim: ts=4:sw=4:expandtab
2014-11-13 23:36:09 +01:00
*/
(function () {
'use strict';
window.Whisper = window.Whisper || {};
Whisper.ExpiredToast = Whisper.ToastView.extend({
render_attributes: function() {
return { toastMessage: i18n('expiredWarning') };
}
});
Whisper.BlockedToast = Whisper.ToastView.extend({
render_attributes: function() {
return { toastMessage: i18n('unblockToSend') };
}
});
Whisper.LeftGroupToast = Whisper.ToastView.extend({
render_attributes: function() {
return { toastMessage: i18n('youLeftTheGroup') };
}
});
var MenuView = Whisper.View.extend({
toggleMenu: function() {
this.$('.menu-list').toggle();
}
});
var TimerMenuView = MenuView.extend({
initialize: function() {
this.render();
this.listenTo(this.model, 'change:expireTimer', this.render);
},
events: {
'click button': 'toggleMenu',
'click li': 'setTimer'
},
setTimer: function(e) {
var seconds = this.$(e.target).data().seconds;
if (seconds > 0) {
2017-01-03 13:52:29 +01:00
this.model.updateExpirationTimer(seconds);
} else {
this.model.updateExpirationTimer(null);
}
},
render: function() {
var seconds = this.model.get('expireTimer');
if (seconds) {
var s = Whisper.ExpirationTimerOptions.getAbbreviated(seconds);
this.$el.attr('data-time', s);
this.$el.show();
} else {
this.$el.attr('data-time', null);
this.$el.hide();
}
}
});
Whisper.ConversationView = Whisper.View.extend({
className: function() {
return [ 'conversation', this.model.get('type') ].join(' ');
},
id: function() {
return 'conversation-' + this.model.cid;
},
template: $('#conversation').html(),
render_attributes: function() {
2015-05-23 00:41:30 +02:00
return {
group: this.model.get('type') === 'group',
2016-03-18 21:09:45 +01:00
name: this.model.getName(),
number: this.model.getNumber(),
2015-12-25 07:50:27 +01:00
avatar: this.model.getAvatar(),
expireTimer: this.model.get('expireTimer'),
2015-12-25 07:50:27 +01:00
'view-members' : i18n('members'),
'end-session' : i18n('resetSession'),
'verify-identity' : i18n('verifySafetyNumbers'),
2015-12-25 07:50:27 +01:00
'destroy' : i18n('deleteMessages'),
'send-message' : i18n('sendMessage'),
'disappearing-messages': i18n('disappearingMessages'),
timer_options : Whisper.ExpirationTimerOptions.models
2015-05-23 00:41:30 +02:00
};
},
initialize: function(options) {
this.listenTo(this.model, 'destroy', this.stopListening);
this.listenTo(this.model, 'change:color', this.updateColor);
this.listenTo(this.model, 'change:name', this.updateTitle);
this.listenTo(this.model, 'newmessage', this.addMessage);
this.listenTo(this.model, 'delivered', this.updateMessage);
this.listenTo(this.model, 'opened', this.onOpened);
this.listenTo(this.model, 'expired', this.onExpired);
this.listenTo(this.model.messageCollection, 'expired', this.onExpiredCollection);
this.render();
new TimerMenuView({ el: this.$('.timer-menu'), model: this.model });
2015-12-25 07:50:27 +01:00
emoji_util.parse(this.$('.conversation-name'));
this.window = options.window;
this.fileInput = new Whisper.FileInputView({
el: this.$('form.send'),
window: this.window
});
this.view = new Whisper.MessageListView({
collection: this.model.messageCollection,
window: this.window
});
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.window.addEventListener('resize', onResize);
2015-06-23 22:43:22 +02:00
var onFocus = function() {
if (this.$el.css('display') !== 'none') {
this.markRead();
}
}.bind(this);
this.window.addEventListener('focus', onFocus);
extension.windows.onClosed(function () {
this.window.removeEventListener('resize', onResize);
this.window.removeEventListener('focus', onFocus);
2015-06-23 22:43:22 +02:00
window.autosize.destroy(this.$messageField);
this.remove();
this.model.messageCollection.reset([]);
2015-06-23 22:43:22 +02:00
}.bind(this));
this.fetchMessages();
this.$('.send-message').focus(this.focusBottomBar.bind(this));
this.$('.send-message').blur(this.unfocusBottomBar.bind(this));
},
events: {
'submit .send': 'sendMessage',
'input .send-message': 'updateMessageFieldSize',
'keydown .send-message': 'updateMessageFieldSize',
'click .destroy': 'destroyMessages',
'click .end-session': 'endSession',
'click .leave-group': 'leaveGroup',
'click .update-group': 'newGroupUpdate',
'click .verify-identity': 'verifyIdentity',
2015-08-04 21:15:37 +02:00
'click .view-members': 'viewMembers',
2016-03-18 21:09:45 +01:00
'click .conversation-menu .hamburger': 'toggleMenu',
'click .openInbox' : 'openInbox',
'click' : 'onClick',
2016-03-22 01:17:39 +01:00
'click .bottom-bar': 'focusMessageField',
'click .back': 'resetPanel',
2016-08-16 00:36:29 +02:00
'click .microphone': 'captureAudio',
'click .disappearing-messages': 'enableDisappearingMessages',
'focus .send-message': 'focusBottomBar',
2016-08-16 00:36:29 +02:00
'change .file-input': 'toggleMicrophone',
'blur .send-message': 'unfocusBottomBar',
'loadMore .message-list': 'fetchMessages',
'close .menu': 'closeMenu',
'select .message-list .entry': 'messageDetail',
'force-resize': 'forceUpdateMessageFieldSize',
'verify-identity': 'verifyIdentity'
},
enableDisappearingMessages: function() {
if (!this.model.get('expireTimer')) {
2017-01-03 13:52:29 +01:00
this.model.updateExpirationTimer(
moment.duration(1, 'day').asSeconds()
);
}
},
2016-08-16 00:36:29 +02:00
toggleMicrophone: function() {
if (this.$('.send-message').val().length > 0 || this.fileInput.hasFiles()) {
this.$('.capture-audio').hide();
} else {
this.$('.capture-audio').show();
}
},
captureAudio: function(e) {
e.preventDefault();
var view = new Whisper.RecorderView().render();
view.on('send', this.handleAudioCapture.bind(this));
view.on('closed', this.endCaptureAudio.bind(this));
view.$el.appendTo(this.$('.capture-audio'));
this.$('.send-message').attr('disabled','disabled');
this.$('.microphone').hide();
},
handleAudioCapture: function(blob) {
this.fileInput.file = blob;
this.fileInput.isVoiceNote = true;
2016-08-16 00:36:29 +02:00
this.fileInput.previewImages();
this.$('.bottom-bar form').submit();
},
endCaptureAudio: function() {
this.$('.send-message').removeAttr('disabled');
this.$('.microphone').show();
},
unfocusBottomBar: function() {
this.$('.bottom-bar form').removeClass('active');
},
focusBottomBar: function() {
this.$('.bottom-bar form').addClass('active');
},
updateUnread: function() {
this.updateLastSeenIndicator();
this.model.markRead();
},
onOpened: function() {
this.view.resetScrollPosition();
this.$el.trigger('force-resize');
this.focusMessageField();
if (this.inProgressFetch) {
this.inProgressFetch.then(this.updateUnread.bind(this));
} else {
this.updateUnread();
}
},
removeLastSeenIndicator: function() {
if (this.lastSeenIndicator) {
this.lastSeenIndicator.remove();
this.lastSeenIndicator = null;
}
},
updateLastSeenIndicator: function() {
this.removeLastSeenIndicator();
var oldestUnread = this.model.messageCollection.find(function(model) {
return model.get('unread');
});
if (oldestUnread) {
var unreadCount = this.model.get('unreadCount');
this.lastSeenIndicator = new Whisper.LastSeenIndicatorView({count: unreadCount});
var unreadEl = this.lastSeenIndicator.render().$el;
unreadEl.insertBefore(this.$('#' + oldestUnread.get('id')));
var position = unreadEl[0].scrollIntoView(true);
}
},
focusMessageField: function() {
this.$messageField.focus();
2015-02-23 22:17:50 +01:00
},
fetchMessages: function() {
2016-04-09 00:41:46 +02:00
console.log('fetchMessages');
this.$('.bar-container').show();
this.inProgressFetch = this.model.fetchContacts().then(function() {
return this.model.fetchMessages().then(function() {
this.$('.bar-container').hide();
this.model.messageCollection.where({unread: 1}).forEach(function(m) {
m.fetch();
});
this.inProgressFetch = null;
}.bind(this));
}.bind(this));
// TODO catch?
return this.inProgressFetch;
},
onExpired: function(message) {
var mine = this.model.messageCollection.get(message.id);
if (mine && mine.cid !== message.cid) {
mine.trigger('expired', mine);
}
},
onExpiredCollection: function(message) {
console.log('removing message', message.get('sent_at'), 'from collection');
this.model.messageCollection.remove(message.id);
},
addMessage: function(message) {
this.model.messageCollection.add(message, {merge: true});
message.setToExpire();
if (this.lastSeenIndicator) {
this.lastSeenIndicator.increment(1);
}
if (!this.isHidden() && window.isFocused()) {
this.markRead();
}
},
updateMessage: function(message) {
this.model.messageCollection.add(message, {merge: true});
},
2015-02-23 22:17:50 +01:00
2015-08-04 21:15:37 +02:00
viewMembers: function() {
return this.model.fetchContacts().then(function() {
var view = new Whisper.GroupMemberList({ model: this.model });
this.listenBack(view);
}.bind(this));
2015-08-04 21:15:37 +02:00
},
openInbox: function() {
openInbox();
},
onClick: function(e) {
this.closeMenu(e);
this.markRead(e);
},
markRead: function(e) {
this.model.markRead();
},
verifyIdentity: function(ev, model) {
if (!model && this.model.isPrivate()) {
model = this.model;
}
if (model) {
var view = new Whisper.KeyVerificationPanelView({
model: model
});
this.listenBack(view);
}
},
2015-02-23 22:17:50 +01:00
messageDetail: function(e, data) {
var view = new Whisper.MessageDetailView({
model: data.message,
conversation: this.model
2015-03-06 01:30:59 +01:00
});
this.listenBack(view);
view.render();
},
listenBack: function(view) {
this.panel = view;
this.$('.main.panel, .header-buttons.right').hide();
this.$('.back').show();
view.$el.insertBefore(this.$('.panel'));
},
resetPanel: function() {
this.panel.remove();
this.$('.main.panel, .header-buttons.right').show();
this.$('.back').hide();
this.$el.trigger('force-resize');
},
closeMenu: function(e) {
2016-03-18 21:09:45 +01:00
if (e && !$(e.target).hasClass('hamburger')) {
this.$('.conversation-menu .menu-list').hide();
}
if (e && !$(e.target).hasClass('clock')) {
this.$('.timer-menu .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.$('.conversation-menu .menu-list').toggle();
},
newGroupUpdate: function() {
this.newGroupUpdateView = new Whisper.NewGroupUpdateView({
model: this.model,
window: this.window
});
this.listenBack(this.newGroupUpdateView);
},
destroyMessages: function(e) {
this.confirm(i18n('deleteConversationConfirmation')).then(function() {
this.model.destroyMessages();
this.remove();
}.bind(this)).catch(function() {
// clicked cancel, nothing to do.
});
this.$('.menu-list').hide();
},
sendMessage: function(e) {
this.removeLastSeenIndicator();
2016-09-07 22:48:49 +02:00
var toast;
if (extension.expired()) {
2016-09-07 22:48:49 +02:00
toast = new Whisper.ExpiredToast();
}
if (this.model.isPrivate() && storage.isBlocked(this.model.id)) {
2016-09-07 22:48:49 +02:00
toast = new Whisper.BlockedToast();
}
if (!this.model.isPrivate() && this.model.get('left')) {
toast = new Whisper.LeftGroupToast();
}
if (toast) {
toast.$el.insertAfter(this.$el);
toast.render();
return;
}
e.preventDefault();
2015-06-23 22:43:22 +02:00
var input = this.$messageField;
var message = this.replace_colons(input.val()).trim();
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());
},
updateColor: function(model, color) {
var header = this.$('.conversation-header');
header.removeClass(Whisper.Conversation.COLORS);
if (color) {
header.addClass(color);
}
var avatarView = new (Whisper.View.extend({
templateName: 'avatar',
render_attributes: { avatar: this.model.getAvatar() }
}))();
header.find('.avatar').replaceWith(avatarView.render().$('.avatar'));
},
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();
}
2016-08-16 00:36:29 +02:00
this.toggleMicrophone();
this.view.measureScrollPosition();
window.autosize(this.$messageField);
var $attachmentPreviews = this.$('.attachment-previews'),
$bottomBar = this.$('.bottom-bar');
$bottomBar.outerHeight(
this.$messageField.outerHeight() +
$attachmentPreviews.outerHeight() +
parseInt($bottomBar.css('min-height')));
this.view.scrollToBottomIfNeeded();
},
forceUpdateMessageFieldSize: function (event) {
if (this.isHidden()) {
return;
}
this.view.scrollToBottomIfNeeded();
2015-06-23 22:43:22 +02:00
window.autosize.update(this.$messageField);
this.updateMessageFieldSize(event);
},
isHidden: function() {
return (this.$el.css('display') === 'none') || this.$('.panel').css('display') === 'none';
}
});
})();