Sonarr/src/UI/AddSeries/SearchResultCollectionView.js

36 lines
942 B
JavaScript
Raw Normal View History

2015-01-30 02:10:16 +00:00
'use strict';
2013-06-21 01:43:58 +00:00
define(
[
'marionette',
'AddSeries/SearchResultView'
2013-06-30 19:57:26 +00:00
], function (Marionette, SearchResultView) {
2013-06-21 01:43:58 +00:00
return 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;
},
2013-06-30 19:57:26 +00:00
appendHtml: function (collectionView, itemView, index) {
if (!this.isExisting || index < this.showing || index === 0) {
2013-06-30 19:57:26 +00:00
collectionView.$el.append(itemView.el);
}
2013-06-21 01:43:58 +00:00
}
});
});