You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
JavaScript
48 lines
1.0 KiB
JavaScript
var Whisper = Whisper || {};
|
|
|
|
(function () {
|
|
'use strict';
|
|
|
|
Whisper.ConversationListItemView = Backbone.View.extend({
|
|
tagName: 'li',
|
|
className: 'conversation',
|
|
|
|
events: {
|
|
'click': 'open',
|
|
},
|
|
initialize: function() {
|
|
this.template = $('#contact').html();
|
|
Mustache.parse(this.template);
|
|
|
|
this.listenTo(this.model, 'change', this.render); // auto update
|
|
this.listenTo(this.model, 'destroy', this.remove); // auto update
|
|
|
|
this.$el.addClass('closed');
|
|
},
|
|
|
|
open: function(e) {
|
|
$('#main').trigger('close'); // detach any existing conversation views
|
|
if (!this.view) {
|
|
this.view = new Whisper.ConversationView({
|
|
el: $('#main'),
|
|
model: this.model
|
|
});
|
|
} else {
|
|
this.view.delegateEvents();
|
|
}
|
|
this.view.render();
|
|
},
|
|
|
|
render: function() {
|
|
this.$el.html(
|
|
Mustache.render(this.template, {
|
|
name: this.model.get('name')
|
|
})
|
|
);
|
|
|
|
return this;
|
|
},
|
|
|
|
});
|
|
})();
|