mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
188 lines
6.9 KiB
JavaScript
188 lines
6.9 KiB
JavaScript
"use strict";
|
|
define([
|
|
'app',
|
|
'Series/Index/List/CollectionView',
|
|
'Series/Index/Posters/CollectionView',
|
|
'Series/Index/EmptyView',
|
|
'Series/Index/Table/AirDateCell',
|
|
'Series/Index/Table/SeriesStatusCell',
|
|
'Shared/Toolbar/ToolbarView',
|
|
'Shared/Toolbar/ToolbarLayout',
|
|
'Config'
|
|
],
|
|
function () {
|
|
NzbDrone.Series.Index.SeriesIndexLayout = Backbone.Marionette.Layout.extend({
|
|
template: 'Series/Index/SeriesIndexLayoutTemplate',
|
|
|
|
regions: {
|
|
series : '#x-series',
|
|
toolbar: '#x-toolbar'
|
|
},
|
|
|
|
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 () {
|
|
|
|
var menuLeft = new NzbDrone.Shared.Toolbar.CommandCollection();
|
|
|
|
menuLeft.add(new NzbDrone.Shared.Toolbar.CommandModel({title: "Add Series", icon: "icon-plus"}));
|
|
menuLeft.add(new NzbDrone.Shared.Toolbar.CommandModel({title: "RSS Sync", icon: "icon-rss"}));
|
|
menuLeft.add(new NzbDrone.Shared.Toolbar.CommandModel({title: "Sync Database", icon: "icon-refresh"}));
|
|
|
|
var menuRight = new NzbDrone.Shared.Toolbar.CommandCollection();
|
|
|
|
menuRight.add(new NzbDrone.Shared.Toolbar.CommandModel({title: "Add Series", icon: "icon-plus"}));
|
|
menuRight.add(new NzbDrone.Shared.Toolbar.CommandModel({title: "RSS Sync", icon: "icon-rss"}));
|
|
menuRight.add(new NzbDrone.Shared.Toolbar.CommandModel({title: "Sync Database", icon: "icon-refresh"}));
|
|
|
|
this.toolbar.show(new NzbDrone.Shared.Toolbar.ToolbarLayout({left: [ menuLeft, menuLeft], right: [menuRight]}));
|
|
|
|
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');
|
|
}
|
|
});
|
|
});
|