You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
'use strict';
|
|
define(['app', 'Series/Details/EpisodeStatusCell', 'Series/Details/EpisodeTitleCell'], function () {
|
|
NzbDrone.Series.Details.SeasonLayout = Backbone.Marionette.Layout.extend({
|
|
template: 'Series/Details/SeasonLayoutTemplate',
|
|
|
|
regions: {
|
|
episodeGrid: '#x-episode-grid'
|
|
},
|
|
|
|
columns: [
|
|
|
|
{
|
|
name : 'episodeNumber',
|
|
label: '#',
|
|
cell : Backgrid.IntegerCell.extend({
|
|
className: 'episode-number-cell'
|
|
})
|
|
},
|
|
|
|
{
|
|
name : 'title',
|
|
label: 'Title',
|
|
cell : NzbDrone.Series.Details.EpisodeTitleCell
|
|
},
|
|
{
|
|
name : 'airDate',
|
|
label: 'Air Date',
|
|
cell : Backgrid.DateCell.extend({
|
|
className: 'episode-air-date-cell'
|
|
})
|
|
} ,
|
|
{
|
|
name : 'status',
|
|
label: 'Status',
|
|
cell : NzbDrone.Series.Details.EpisodeStatusCell
|
|
}
|
|
],
|
|
|
|
initialize: function () {
|
|
this.episodeCollection = new NzbDrone.Series.EpisodeCollection();
|
|
this.episodeCollection.fetch({data: {
|
|
seriesId : this.model.get('seriesId'),
|
|
seasonNumber: this.model.get('seasonNumber')
|
|
}});
|
|
},
|
|
|
|
onShow: function () {
|
|
|
|
this.episodeGrid.show(new Backgrid.Grid(
|
|
{
|
|
columns : this.columns,
|
|
collection: this.episodeCollection,
|
|
className : 'table table-hover'
|
|
}));
|
|
|
|
}
|
|
});
|
|
});
|