signal-desktop/js/views/new_group_update_view.js

83 lines
2.8 KiB
JavaScript
Raw Normal View History

/*
* vim: ts=4:sw=4:expandtab
*/
(function () {
'use strict';
window.Whisper = window.Whisper || {};
Whisper.NewGroupUpdateView = Whisper.View.extend({
tagName: "div",
className: 'new-group-update',
templateName: 'new-group-update',
initialize: function(options) {
2015-03-06 01:47:58 +00:00
this.render();
this.avatarInput = new Whisper.FileInputView({
el: this.$('.group-avatar'),
window: options.window
});
2015-08-31 22:11:00 +00:00
this.recipients_view = new Whisper.RecipientsInputView();
this.listenTo(this.recipients_view.typeahead, 'sync', function() {
this.model.contactCollection.models.forEach(function(model) {
if (this.recipients_view.typeahead.get(model)) {
this.recipients_view.typeahead.remove(model);
}
}.bind(this));
});
this.recipients_view.$el.insertBefore(this.$('.container'));
this.member_list_view = new Whisper.ContactListView({
collection: this.model.contactCollection,
className: 'members'
});
this.member_list_view.render();
this.$('.scrollable').append(this.member_list_view.el);
},
events: {
'click .back': 'goBack',
'click .send': 'send',
'focusin input.search': 'showResults',
'focusout input.search': 'hideResults',
},
hideResults: function() {
this.$('.results').hide();
},
showResults: function() {
this.$('.results').show();
},
goBack: function() {
this.trigger('back');
},
render_attributes: function() {
2015-03-18 00:10:18 +00:00
return {
name: this.model.getTitle(),
avatar: this.model.getAvatar()
2015-03-18 00:10:18 +00:00
};
},
send: function() {
return this.avatarInput.getThumbnail().then(function(avatarFile) {
var now = Date.now();
2015-07-14 20:39:24 +00:00
var attrs = {
timestamp: now,
active_at: now,
name: this.$('.name').val(),
members: _.union(this.model.get('members'), this.recipients_view.recipients.pluck('id'))
2015-07-14 20:39:24 +00:00
};
2015-06-05 18:52:48 +00:00
if (avatarFile) {
2015-07-14 20:39:24 +00:00
attrs.avatar = avatarFile;
2015-06-05 18:52:48 +00:00
}
2015-07-14 20:39:24 +00:00
this.model.set(attrs);
var group_update = this.model.changed;
2015-06-05 18:52:48 +00:00
this.model.save();
2015-07-14 20:39:24 +00:00
if (group_update.avatar) {
this.model.trigger('change:avatar');
}
2015-09-22 02:12:06 +00:00
this.model.updateGroup(group_update);
this.goBack();
}.bind(this));
}
});
})();