PERF: don't bind all these things

TODO - cleaner pattern and helper for this
This commit is contained in:
Sam 2015-01-08 14:50:20 +11:00
parent 3347a48275
commit 69cfab62b8
1 changed files with 20 additions and 4 deletions

View File

@ -5,11 +5,27 @@ export default Discourse.View.extend(StringBuffer, {
tagName: 'tr',
rawTemplate: 'list/topic_list_item.raw',
classNameBindings: ['controller.checked',
'content.archived',
':topic-list-item',
'content.hasExcerpt:has-excerpt',
'content.liked:liked',
'content.bookmarked:bookmarked'],
'unboundClassNames'
],
unboundClassNames: function(){
var classes = [];
var topic = this.get('topic');
if(topic.get('hasExcerpt')){
classes.push('has-excerpt');
}
_.each(['liked', 'archived', 'bookmarked'],function(name){
if(topic.get(name)){
classes.push(name);
}
});
return classes.join(' ');
}.property(),
attributeBindings: ['data-topic-id'],
'data-topic-id': Em.computed.alias('content.id'),
titleColSpan: function(){