WIP pill view for selected recipients
This commit is contained in:
parent
c84ccfc735
commit
746e6530b9
9 changed files with 366 additions and 172 deletions
|
@ -25,8 +25,7 @@ var Whisper = Whisper || {};
|
|||
className: 'contact',
|
||||
|
||||
events: {
|
||||
'click': 'open',
|
||||
'click .checkbox': 'checkbox'
|
||||
'click': 'open'
|
||||
},
|
||||
initialize: function() {
|
||||
this.template = $('#contact').html();
|
||||
|
@ -41,14 +40,6 @@ var Whisper = Whisper || {};
|
|||
this.$el.trigger('open', {modelId: this.model.id});
|
||||
},
|
||||
|
||||
checkbox: function(e) {
|
||||
e.stopPropagation();
|
||||
this.$el.trigger('checkbox', {
|
||||
modelId: this.model.id,
|
||||
checked: e.target.checked
|
||||
});
|
||||
},
|
||||
|
||||
render: function() {
|
||||
this.$el.html(
|
||||
Mustache.render(this.template, {
|
||||
|
|
|
@ -25,6 +25,7 @@ var Whisper = Whisper || {};
|
|||
this.$input = this.$el.find('input[type=file]');
|
||||
this.modal = new Whisper.ModalView({el: $('#file-modal')});
|
||||
this.thumb = new Whisper.AttachmentPreviewView();
|
||||
this.$el.addClass('file-input');
|
||||
},
|
||||
|
||||
events: {
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
this.$el.addClass('loading');
|
||||
this.conversations.fetchActive({reset: true}).then(function() {
|
||||
this.$el.removeClass('loading');
|
||||
window.conversations = this.conversations;
|
||||
window.conversations = this.conversations; // debug
|
||||
}.bind(this));
|
||||
|
||||
extension.on('message', function() {
|
||||
|
@ -51,20 +51,12 @@
|
|||
'click .back button': 'hideCompose',
|
||||
'click .fab': 'showCompose',
|
||||
'open #contacts': 'openConversation',
|
||||
'open .contacts': 'openConversation',
|
||||
'open .new-group-update-form': 'openConversation',
|
||||
'open .new-contact': 'createConversation',
|
||||
'open .new-conversation .contacts': 'openConversation'
|
||||
},
|
||||
openConversation: function(e, data) {
|
||||
bg.openConversation(data.modelId);
|
||||
this.hideCompose();
|
||||
},
|
||||
createConversation: function(e, data) {
|
||||
this.newConversationView.new_contact.model.save().then(function() {
|
||||
bg.openConversation(data.modelId);
|
||||
});
|
||||
this.hideCompose();
|
||||
},
|
||||
showCompose: function() {
|
||||
this.$fab.hide();
|
||||
this.$contacts.hide();
|
||||
|
|
|
@ -18,7 +18,7 @@ var Whisper = Whisper || {};
|
|||
(function () {
|
||||
'use strict';
|
||||
|
||||
var typeahead = Backbone.TypeaheadCollection.extend({
|
||||
var ContactsTypeahead = Backbone.TypeaheadCollection.extend({
|
||||
typeaheadAttributes: [
|
||||
'name',
|
||||
'e164_number',
|
||||
|
@ -30,72 +30,160 @@ var Whisper = Whisper || {};
|
|||
model: Whisper.Conversation
|
||||
});
|
||||
|
||||
Whisper.ContactPillView = Backbone.View.extend({
|
||||
tagName: 'span',
|
||||
className: 'recipient',
|
||||
events: {
|
||||
'click .remove': 'removeModel'
|
||||
},
|
||||
initialize: function() {
|
||||
this.template = $('#contact_pill').html();
|
||||
Mustache.parse(this.template);
|
||||
|
||||
var error = this.model.validate(this.model.attributes);
|
||||
if (error) {
|
||||
this.$el.addClass('error');
|
||||
}
|
||||
},
|
||||
removeModel: function() {
|
||||
this.$el.trigger('remove', {modelId: this.model.id});
|
||||
this.remove();
|
||||
},
|
||||
render: function() {
|
||||
this.$el.html(
|
||||
Mustache.render(this.template, { name: this.model.getTitle() })
|
||||
);
|
||||
return this;
|
||||
}
|
||||
});
|
||||
|
||||
Whisper.RecipientListView = Whisper.ListView.extend({
|
||||
itemView: Whisper.ContactPillView
|
||||
});
|
||||
|
||||
Whisper.NewConversationView = Backbone.View.extend({
|
||||
className: 'new-conversation',
|
||||
initialize: function() {
|
||||
this.template = $('#new-conversation').html();
|
||||
Mustache.parse(this.template);
|
||||
this.$el.html($(Mustache.render(this.template)));
|
||||
this.$input = this.$el.find('input.new-message');
|
||||
this.$group_update = this.$el.find('.new-group-update-form');
|
||||
this.$buttons = this.$el.find('.buttons');
|
||||
this.$input = this.$el.find('input.new-message');
|
||||
|
||||
this.typeahead_collection = new typeahead();
|
||||
// Collection of contacts to match user input against
|
||||
this.typeahead = new ContactsTypeahead();
|
||||
this.typeahead.fetch({ conditions: { type: 'private' } });
|
||||
|
||||
// View to display the matched contacts from typeahead
|
||||
this.typeahead_view = new Whisper.ConversationListView({
|
||||
collection : new Whisper.ConversationCollection({
|
||||
collection : new Whisper.ConversationCollection([], {
|
||||
comparator: function(m) { return m.getTitle(); }
|
||||
}),
|
||||
className: 'typeahead'
|
||||
});
|
||||
|
||||
this.typeahead_view.$el.appendTo(this.$el.find('.contacts'));
|
||||
this.typeahead_collection.fetch({
|
||||
conditions: { type: 'private' }
|
||||
})
|
||||
});
|
||||
this.$el.find('.contacts').append(this.typeahead_view.el);
|
||||
|
||||
// View to display a new contact
|
||||
this.new_contact = new Whisper.ConversationListItemView({
|
||||
model: new Whisper.Conversation({
|
||||
active_at: null,
|
||||
type: 'private'
|
||||
})
|
||||
}).render();
|
||||
|
||||
this.newGroupUpdateView = new Whisper.NewGroupUpdateView({
|
||||
model: new Whisper.Conversation({ type: 'group' }),
|
||||
el: this.$group_update
|
||||
});
|
||||
this.group_members = new Whisper.ConversationCollection();
|
||||
this.$el.find('.new-contact').append(this.new_contact.el);
|
||||
|
||||
// Group avatar file input
|
||||
this.avatarInput = new Whisper.FileInputView({
|
||||
el: this.$el.find('.group-avatar')
|
||||
});
|
||||
|
||||
// Collection of recipients selected for the new message
|
||||
this.recipients = new Whisper.ConversationCollection([], {
|
||||
comparator: false
|
||||
});
|
||||
// View to display the selected recipients
|
||||
new Whisper.RecipientListView({
|
||||
collection: this.recipients,
|
||||
el: this.$el.find('.recipients')
|
||||
});
|
||||
},
|
||||
|
||||
events: {
|
||||
'change input.new-message': 'filterContacts',
|
||||
'keyup input.new-message': 'filterContacts',
|
||||
'checkbox .contact': 'updateGroup',
|
||||
'click .create-group': 'createGroup'
|
||||
'open .new-contact': 'addNewRecipient',
|
||||
'open .contacts': 'addRecipient',
|
||||
'remove .recipient': 'removeRecipient',
|
||||
'click .create': 'create'
|
||||
},
|
||||
|
||||
updateGroup: function(e, data) {
|
||||
addNewRecipient: function(e, data) {
|
||||
this.new_contact.model.newContact = true; // hack
|
||||
this.recipients.add(this.new_contact.model);
|
||||
this.new_contact.model = new Whisper.Conversation({
|
||||
active_at: null,
|
||||
type: 'private'
|
||||
});
|
||||
this.resetTypeahead();
|
||||
this.updateControls();
|
||||
},
|
||||
|
||||
addRecipient: function(e, data) {
|
||||
this.recipients.add(this.typeahead.remove(data.modelId));
|
||||
this.filterContacts();
|
||||
this.updateControls();
|
||||
},
|
||||
|
||||
removeRecipient: function(e, data) {
|
||||
var model = this.recipients.remove(data.modelId);
|
||||
if (!model.newContact) { // hack
|
||||
this.typeahead.add(model);
|
||||
}
|
||||
this.filterContacts();
|
||||
this.updateControls();
|
||||
},
|
||||
|
||||
updateControls: function() {
|
||||
if (this.recipients.length > 0) {
|
||||
this.$buttons.slideDown();
|
||||
} else {
|
||||
this.$buttons.slideUp();
|
||||
}
|
||||
if (this.recipients.length > 1) {
|
||||
this.$group_update.slideDown();
|
||||
} else {
|
||||
this.$group_update.slideUp();
|
||||
}
|
||||
this.$input.focus();
|
||||
if (data.checked) {
|
||||
this.group_members.add({id: data.modelId});
|
||||
},
|
||||
|
||||
create: function() {
|
||||
if (this.recipients.length > 1) {
|
||||
this.createGroup();
|
||||
} else {
|
||||
this.group_members.remove({id: data.modelId});
|
||||
}
|
||||
this.group_members
|
||||
if (this.group_members.length) {
|
||||
this.$group_update.show();
|
||||
} else {
|
||||
this.$group_update.hide();
|
||||
this.createConversation();
|
||||
}
|
||||
},
|
||||
|
||||
createConversation: function() {
|
||||
var conversation = new Whisper.Conversation({
|
||||
id: this.recipients.at(0).id,
|
||||
type: 'private'
|
||||
});
|
||||
conversation.fetch().fail(function() {
|
||||
if (conversation.save()) {
|
||||
this.$el.trigger('open', { modelId: conversation.id });
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
createGroup: function() {
|
||||
return this.newGroupUpdateView.avatarInput.getFiles().then(function(avatarFiles) {
|
||||
return this.avatarInput.getFiles().then(function(avatarFiles) {
|
||||
var attributes = {
|
||||
type: 'group',
|
||||
name: this.$el.find('.new-group-update-form .name').val(),
|
||||
avatar: avatarFiles[0],
|
||||
members: this.group_members.pluck('id')
|
||||
members: this.recipients.pluck('id')
|
||||
};
|
||||
return textsecure.messaging.createGroup(
|
||||
attributes.members, attributes.name, attributes.avatar
|
||||
|
@ -109,11 +197,18 @@ var Whisper = Whisper || {};
|
|||
}.bind(this));
|
||||
},
|
||||
|
||||
reset: function() {
|
||||
resetTypeahead: function() {
|
||||
this.new_contact.$el.hide();
|
||||
this.$input.val('').focus();
|
||||
this.typeahead_view.collection.reset(this.typeahead_collection.models);
|
||||
this.group_members.reset([]);
|
||||
this.typeahead_view.collection.reset(this.typeahead.models);
|
||||
},
|
||||
|
||||
reset: function() {
|
||||
this.$buttons.hide();
|
||||
this.$group_update.hide();
|
||||
this.typeahead.add(this.recipients.models);
|
||||
this.recipients.reset([]);
|
||||
this.resetTypeahead();
|
||||
},
|
||||
|
||||
filterContacts: function() {
|
||||
|
@ -121,15 +216,15 @@ var Whisper = Whisper || {};
|
|||
if (query.length) {
|
||||
if (this.maybeNumber(query)) {
|
||||
this.new_contact.model.set('id', query);
|
||||
this.new_contact.$el.show();
|
||||
this.new_contact.render().$el.show();
|
||||
} else {
|
||||
this.new_contact.$el.hide();
|
||||
}
|
||||
this.typeahead_view.collection.reset(
|
||||
this.typeahead_collection.typeahead(query)
|
||||
this.typeahead.typeahead(query)
|
||||
);
|
||||
} else {
|
||||
this.reset();
|
||||
this.resetTypeahead();
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue