2014-05-16 21:48:46 -07:00
|
|
|
var Whisper = Whisper || {};
|
|
|
|
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
|
2014-07-22 21:24:17 -10:00
|
|
|
Whisper.ConversationListItemView = Backbone.View.extend({
|
2014-07-27 12:12:59 -10:00
|
|
|
tagName: 'div',
|
|
|
|
className: 'contact',
|
2014-05-16 21:48:46 -07:00
|
|
|
|
2014-06-07 20:32:17 -07:00
|
|
|
events: {
|
2014-07-22 08:55:26 -10:00
|
|
|
'click': 'open',
|
2014-06-07 20:32:17 -07:00
|
|
|
},
|
2014-05-16 21:48:46 -07:00
|
|
|
initialize: function() {
|
2014-07-22 08:55:26 -10:00
|
|
|
this.template = $('#contact').html();
|
|
|
|
Mustache.parse(this.template);
|
|
|
|
|
2014-05-16 21:48:46 -07:00
|
|
|
this.listenTo(this.model, 'change', this.render); // auto update
|
|
|
|
this.listenTo(this.model, 'destroy', this.remove); // auto update
|
2014-09-04 00:21:18 -07:00
|
|
|
this.listenTo(this.model, 'render', this.open);
|
2014-06-07 20:32:17 -07:00
|
|
|
},
|
2014-05-16 21:48:46 -07:00
|
|
|
|
|
|
|
open: function(e) {
|
2014-08-10 23:34:29 -07:00
|
|
|
$('.conversation').trigger('close'); // detach any existing conversation views
|
2014-07-23 10:06:37 -10:00
|
|
|
if (!this.view) {
|
2014-08-10 23:34:29 -07:00
|
|
|
this.view = new Whisper.ConversationView({ model: this.model });
|
2014-07-23 10:06:37 -10:00
|
|
|
} else {
|
|
|
|
this.view.delegateEvents();
|
|
|
|
}
|
|
|
|
this.view.render();
|
2014-10-22 17:26:37 -07:00
|
|
|
this.$el.addClass('selected');
|
2014-05-16 21:48:46 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2014-07-22 08:55:26 -10:00
|
|
|
this.$el.html(
|
|
|
|
Mustache.render(this.template, {
|
2014-07-27 12:12:59 -10:00
|
|
|
contact_name: this.model.get('name'),
|
2014-10-29 13:25:16 -07:00
|
|
|
contact_avatar: this.model.get('image'),
|
2014-07-27 12:12:59 -10:00
|
|
|
last_message: this.model.get('lastMessage'),
|
2014-11-11 00:35:18 -08:00
|
|
|
last_message_timestamp: moment(this.model.get('timestamp')).format('MMM M')
|
2014-07-22 08:55:26 -10:00
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2014-05-16 21:48:46 -07:00
|
|
|
return this;
|
2014-08-13 00:01:20 -07:00
|
|
|
}
|
2014-07-22 08:55:26 -10:00
|
|
|
|
2014-05-16 21:48:46 -07:00
|
|
|
});
|
|
|
|
})();
|