discourse/app/assets/javascripts/discourse/controllers/user-activity.js.es6

16 lines
595 B
JavaScript

export default Ember.Controller.extend({
userActionType: null,
needs: ["application"],
_showFooter: function() {
var showFooter;
if (this.get("userActionType")) {
const stat = _.find(this.get("model.stats"), { action_type: this.get("userActionType") });
showFooter = stat && stat.count <= this.get("model.stream.itemsLoaded");
} else {
showFooter = this.get("model.statsCountNonPM") <= this.get("model.stream.itemsLoaded");
}
this.set("controllers.application.showFooter", showFooter);
}.observes("userActionType", "model.stream.itemsLoaded")
});