mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-06 08:25:54 +01:00
24 lines
No EOL
730 B
JavaScript
24 lines
No EOL
730 B
JavaScript
var Marionette = require('marionette');
|
|
var SearchResultView = require('./SearchResultView');
|
|
|
|
module.exports = Marionette.CollectionView.extend({
|
|
itemView : SearchResultView,
|
|
initialize : function(options){
|
|
this.isExisting = options.isExisting;
|
|
this.showing = 1;
|
|
},
|
|
showAll : function(){
|
|
this.showingAll = true;
|
|
this.render();
|
|
},
|
|
showMore : function(){
|
|
this.showing += 5;
|
|
this.render();
|
|
return this.showing >= this.collection.length;
|
|
},
|
|
appendHtml : function(collectionView, itemView, index){
|
|
if(!this.isExisting || index < this.showing || index === 0) {
|
|
collectionView.$el.append(itemView.el);
|
|
}
|
|
}
|
|
}); |