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-06-08 05:32:17 +02:00
|
|
|
},
|
2014-05-17 06:48:46 +02:00
|
|
|
|
|
|
|
open: function(e) {
|
2014-08-11 08:34:29 +02:00
|
|
|
$('.conversation').trigger('close'); // detach any existing conversation views
|
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();
|
|
|
|
}
|
|
|
|
this.view.render();
|
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'),
|
|
|
|
last_message: this.model.get('lastMessage'),
|
2014-08-13 09:01:20 +02:00
|
|
|
last_message_timestamp: this.formatTimestamp()
|
2014-07-22 20:55:26 +02:00
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2014-05-17 06:48:46 +02:00
|
|
|
return this;
|
2014-07-22 20:55:26 +02:00
|
|
|
},
|
2014-08-13 09:01:20 +02:00
|
|
|
formatTimestamp: function() {
|
|
|
|
var timestamp = this.model.get('timestamp');
|
|
|
|
var now = new Date().getTime();
|
|
|
|
var date = new Date();
|
|
|
|
date.setTime(timestamp*1000);
|
|
|
|
if (now - timestamp > 60*60*24*7) {
|
|
|
|
return date.toLocaleDateString('en-US',{month: 'short', day: 'numeric'});
|
|
|
|
}
|
|
|
|
if (now - timestamp > 60*60*24) {
|
|
|
|
return date.toLocaleDateString('en-US',{weekday: 'short'});
|
|
|
|
}
|
|
|
|
return date.toTimeString();
|
|
|
|
}
|
2014-07-22 20:55:26 +02:00
|
|
|
|
2014-05-17 06:48:46 +02:00
|
|
|
});
|
|
|
|
})();
|