mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
'use strict';
|
|
define(['app', 'Series/Details/EpisodeDetailCell'], function () {
|
|
NzbDrone.Series.Details.SeasonLayout = Backbone.Marionette.Layout.extend({
|
|
template: 'Series/Details/SeasonLayoutTemplate',
|
|
|
|
regions: {
|
|
episodeGrid: '#x-episode-grid'
|
|
},
|
|
|
|
columns: [
|
|
{
|
|
name : 'details',
|
|
label : 'Details',
|
|
cell : NzbDrone.Series.Details.EpisodeDetailCell
|
|
},
|
|
{
|
|
name : 'episodeNumber',
|
|
label : '#',
|
|
cell : 'integer'
|
|
},
|
|
|
|
{
|
|
name : 'title',
|
|
label : 'Title',
|
|
cell : 'string'
|
|
},
|
|
{
|
|
name : 'airDate',
|
|
label : 'Air Date',
|
|
cell : 'date'
|
|
//formatter: new Backgrid.AirDateFormatter()
|
|
}
|
|
],
|
|
|
|
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'
|
|
}));
|
|
|
|
}
|
|
});
|
|
});
|