mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'marionette',
|
|
'Series/Details/SeasonLayout'
|
|
], function (Marionette, SeasonLayout) {
|
|
return Marionette.CollectionView.extend({
|
|
|
|
itemView: SeasonLayout,
|
|
|
|
initialize: function (options) {
|
|
|
|
if (!options.episodeCollection) {
|
|
throw 'episodeCollection is needed';
|
|
}
|
|
|
|
this.episodeCollection = options.episodeCollection;
|
|
this.series = options.series;
|
|
},
|
|
|
|
itemViewOptions: function () {
|
|
return {
|
|
episodeCollection: this.episodeCollection,
|
|
series : this.series
|
|
};
|
|
},
|
|
|
|
onEpisodeGrabbed: function (message) {
|
|
if (message.episode.series.id != this.episodeCollection.seriesId) {
|
|
return;
|
|
}
|
|
|
|
var self = this;
|
|
|
|
_.each(message.episode.episodes, function (episode){
|
|
var ep = self.episodeCollection.find({ id: episode.id });
|
|
ep.set('downloading', true);
|
|
console.debug(episode.title);
|
|
});
|
|
|
|
this.render();
|
|
}
|
|
});
|
|
});
|