This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/components/basic-topic-list.js.es6
2014-08-15 16:39:57 -04:00

49 lines
1.0 KiB
JavaScript

/**
This view is used for rendering a basic list of topics.
@class BasicTopicListComponent
@extends Discourse.View
@namespace Discourse
@module Discourse
**/
export default Ember.Component.extend({
loaded: function() {
var topicList = this.get('topicList');
if (topicList) {
return topicList.get('loaded');
} else {
return true;
}
}.property('topicList.loaded'),
_topicListChanged: function() {
this._initFromTopicList(this.get('topicList'));
}.observes('topicList.@each'),
_initFromTopicList: function(topicList) {
if (topicList !== null) {
this.set('topics', topicList.get('topics'));
this.rerender();
}
},
init: function() {
this._super();
var topicList = this.get('topicList');
if (topicList) {
this._initFromTopicList(topicList);
} else {
// Without a topic list, we assume it's loaded always.
this.set('loaded', true);
}
},
actions: {
clickedActivity: function(data) {
this.sendAction('activityAction', data);
}
}
});