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