Radarr/UI/AddSeries/Existing/CollectionView.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

2013-06-21 01:43:58 +00:00
'use strict';
define(
[
'marionette',
'AddSeries/AddSeriesView',
2013-06-21 01:43:58 +00:00
'AddSeries/Existing/UnmappedFolderCollection'
], function (Marionette, AddSeriesView, UnmappedFolderCollection) {
2013-06-21 01:43:58 +00:00
return Marionette.CollectionView.extend({
itemView: AddSeriesView,
2013-06-21 01:43:58 +00:00
initialize: function () {
this.collection = new UnmappedFolderCollection();
this.collection.importItems(this.model);
},
showCollection: function () {
this._showAndSearch(0);
},
_showAndSearch: function (index) {
2013-09-18 19:43:37 +00:00
var self = this;
2013-06-21 01:43:58 +00:00
var model = this.collection.at(index);
2013-06-21 01:43:58 +00:00
if (model) {
var currentIndex = index;
var folderName = model.get('folder').name;
2013-06-21 01:43:58 +00:00
this.addItemView(model, this.getItemView(), index);
2013-09-18 19:43:37 +00:00
this.children.findByModel(model)
.search({term: folderName})
.always((function () {
self._showAndSearch(currentIndex + 1);
}));
2013-06-21 01:43:58 +00:00
}
},
itemViewOptions: {
isExisting: true
2013-06-21 01:43:58 +00:00
}
});
});