mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
170 lines
5.6 KiB
JavaScript
170 lines
5.6 KiB
JavaScript
"use strict";
|
|
define([
|
|
'app',
|
|
'Series/Index/List/CollectionView',
|
|
'Series/Index/Posters/CollectionView',
|
|
'Series/Index/EmptyView',
|
|
'Config',
|
|
'Series/Index/Table/AirDateCell',
|
|
'Series/Index/Table/SeriesStatusCell'
|
|
],
|
|
function (app) {
|
|
NzbDrone.Series.Index.SeriesIndexLayout = Backbone.Marionette.Layout.extend({
|
|
template: 'Series/Index/SeriesIndexLayoutTemplate',
|
|
|
|
regions: {
|
|
series: '#x-series'
|
|
},
|
|
|
|
ui: {
|
|
|
|
},
|
|
|
|
events: {
|
|
'click .x-series-change-view': 'changeView'
|
|
},
|
|
|
|
showTable: function () {
|
|
|
|
var columns =
|
|
[
|
|
{
|
|
name: 'status',
|
|
label: '',
|
|
editable: false,
|
|
cell: 'seriesStatus',
|
|
headerCell: 'nzbDrone'
|
|
},
|
|
{
|
|
name: 'title',
|
|
label: 'Title',
|
|
editable: false,
|
|
cell: Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/SeriesTitleTemplate' }),
|
|
headerCell: 'nzbDrone'
|
|
},
|
|
{
|
|
name: 'seasonCount',
|
|
label: 'Seasons',
|
|
editable: false,
|
|
cell: 'integer',
|
|
headerCell: 'nzbDrone'
|
|
},
|
|
{
|
|
name: 'quality',
|
|
label: 'Quality',
|
|
editable: false,
|
|
cell: 'integer',
|
|
headerCell: 'nzbDrone'
|
|
},
|
|
{
|
|
name: 'network',
|
|
label: 'Network',
|
|
editable: false,
|
|
cell: 'string',
|
|
headerCell: 'nzbDrone'
|
|
},
|
|
{
|
|
name: 'nextAiring',
|
|
label: 'Next Airing',
|
|
editable: false,
|
|
cell: 'airDate',
|
|
headerCell: 'nzbDrone'
|
|
},
|
|
{
|
|
name: 'episodes',
|
|
label: 'Episodes',
|
|
editable: false,
|
|
sortable: false,
|
|
cell: Backgrid.TemplateBackedCell.extend({ template: 'Series/EpisodeProgressTemplate' }),
|
|
headerCell: 'nzbDrone'
|
|
},
|
|
{
|
|
name: 'edit',
|
|
label: '',
|
|
editable: false,
|
|
sortable: false,
|
|
cell: Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/ControlsColumnTemplate' }),
|
|
headerCell: 'nzbDrone'
|
|
}
|
|
];
|
|
|
|
this.series.show(new Backgrid.Grid(
|
|
{
|
|
row: Backgrid.SeriesIndexTableRow,
|
|
columns : columns,
|
|
collection : this.seriesCollection,
|
|
className: 'table table-hover'
|
|
}));
|
|
},
|
|
|
|
showList: function () {
|
|
this.series.show(new NzbDrone.Series.Index.List.CollectionView({ collection: this.seriesCollection }));
|
|
},
|
|
|
|
showPosters: function () {
|
|
this.series.show(new NzbDrone.Series.Index.Posters.CollectionView({ collection: this.seriesCollection }));
|
|
},
|
|
|
|
showEmpty: function () {
|
|
this.series.show(new NzbDrone.Series.Index.EmptyView());
|
|
},
|
|
|
|
initialize: function () {
|
|
this.viewStyle = NzbDrone.Config.SeriesViewStyle();
|
|
this.seriesCollection = new NzbDrone.Series.SeriesCollection();
|
|
this.seriesCollection.fetch();
|
|
},
|
|
|
|
onRender: function () {
|
|
var element = this.$('a[data-target="' + this.viewStyle + '"]').removeClass('active');
|
|
this.setActive(element);
|
|
},
|
|
|
|
onShow: function () {
|
|
switch (this.viewStyle) {
|
|
case 1:
|
|
this.showList();
|
|
break;
|
|
case 2:
|
|
this.showPosters();
|
|
break;
|
|
default:
|
|
this.showTable();
|
|
}
|
|
},
|
|
|
|
changeView: function (e) {
|
|
e.preventDefault();
|
|
var view = parseInt($(e.target).data('target'));
|
|
var target = $(e.target);
|
|
|
|
if (isNaN(view)) {
|
|
view = parseInt($(e.target).parent('a').data('target'));
|
|
target = $(e.target).parent('a');
|
|
}
|
|
|
|
if (view === 1) {
|
|
NzbDrone.Config.SeriesViewStyle(1);
|
|
this.showList();
|
|
}
|
|
|
|
else if (view === 2) {
|
|
NzbDrone.Config.SeriesViewStyle(2);
|
|
this.showPosters();
|
|
}
|
|
|
|
else {
|
|
NzbDrone.Config.SeriesViewStyle(0);
|
|
this.showTable();
|
|
}
|
|
|
|
this.setActive(target);
|
|
},
|
|
|
|
setActive: function (element) {
|
|
this.$('a').removeClass('active');
|
|
$(element).addClass('active');
|
|
}
|
|
});
|
|
});
|