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