signal-desktop/js/views/conversation_list_item_view.js
lilia 28290477f4 Nicer timestamps with momentjs
This dependency may be a little heavy for our current use case, but we can
roll with it for now and find something slimmer if it turns out yagni.

Closes #77
Closes #40
2014-11-12 11:45:58 -08:00

47 lines
1.2 KiB
JavaScript

var Whisper = Whisper || {};
(function () {
'use strict';
Whisper.ConversationListItemView = Backbone.View.extend({
tagName: 'div',
className: 'contact',
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.listenTo(this.model, 'render', this.open);
},
open: function(e) {
$('.conversation').trigger('close'); // detach any existing conversation views
if (!this.view) {
this.view = new Whisper.ConversationView({ model: this.model });
} else {
this.view.delegateEvents();
}
this.view.render();
this.$el.addClass('selected');
},
render: function() {
this.$el.html(
Mustache.render(this.template, {
contact_name: this.model.get('name'),
contact_avatar: this.model.get('image'),
last_message: this.model.get('lastMessage'),
last_message_timestamp: moment(this.model.get('timestamp')).format('MMM M')
})
);
return this;
}
});
})();