mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-10 19:45:02 -05:00
37 lines
783 B
JavaScript
37 lines
783 B
JavaScript
/*global $, app, me*/
|
|
"use strict";
|
|
|
|
var _ = require('underscore');
|
|
var HumanView = require('human-view');
|
|
var templates = require('../templates');
|
|
|
|
|
|
module.exports = HumanView.extend({
|
|
template: templates.includes.contactListItem,
|
|
classBindings: {
|
|
show: '',
|
|
subscription: '',
|
|
chatState: '',
|
|
activeContact: '',
|
|
hasUnread: ''
|
|
},
|
|
textBindings: {
|
|
displayName: '.name',
|
|
status: '.status',
|
|
unreadCount: '.unread'
|
|
},
|
|
srcBindings: {
|
|
avatar: '.avatar'
|
|
},
|
|
events: {
|
|
'click': 'goChat'
|
|
},
|
|
render: function () {
|
|
this.renderAndBind({contact: this.model});
|
|
return this;
|
|
},
|
|
goChat: function () {
|
|
app.navigate('chat/' + this.model.jid);
|
|
}
|
|
});
|