Sonarr/UI/Series/Index/SeriesIndexLayout.js

188 lines
6.9 KiB
JavaScript
Raw Normal View History

2013-04-23 00:35:04 +00:00
"use strict";
define([
'app',
'Series/Index/List/CollectionView',
2013-04-24 03:11:45 +00:00
'Series/Index/Posters/CollectionView',
2013-04-24 00:30:25 +00:00
'Series/Index/EmptyView',
'Series/Index/Table/AirDateCell',
2013-04-25 04:27:49 +00:00
'Series/Index/Table/SeriesStatusCell',
'Shared/Toolbar/ToolbarView',
'Shared/Toolbar/ToolbarLayout',
'Config'
2013-04-23 00:35:04 +00:00
],
2013-04-23 02:07:21 +00:00
function () {
2013-04-23 00:35:04 +00:00
NzbDrone.Series.Index.SeriesIndexLayout = Backbone.Marionette.Layout.extend({
template: 'Series/Index/SeriesIndexLayoutTemplate',
regions: {
series : '#x-series',
toolbar: '#x-toolbar'
2013-04-23 00:35:04 +00:00
},
ui: {
},
events: {
'click .x-series-change-view': 'changeView'
},
showTable: function () {
2013-04-25 04:27:49 +00:00
var columns = [
2013-04-23 00:35:04 +00:00
{
2013-04-25 04:27:49 +00:00
name : 'status',
label : '',
editable : false,
cell : 'seriesStatus',
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
2013-04-25 04:27:49 +00:00
name : 'title',
label : 'Title',
editable : false,
cell : Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/SeriesTitleTemplate' }),
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
2013-04-25 04:27:49 +00:00
name : 'seasonCount',
label : 'Seasons',
editable : false,
cell : 'integer',
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
2013-04-25 04:27:49 +00:00
name : 'quality',
label : 'Quality',
editable : false,
cell : 'integer',
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
2013-04-25 04:27:49 +00:00
name : 'network',
label : 'Network',
editable : false,
cell : 'string',
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
2013-04-25 04:27:49 +00:00
name : 'nextAiring',
label : 'Next Airing',
editable : false,
cell : 'airDate',
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
2013-04-25 04:27:49 +00:00
name : 'episodes',
label : 'Episodes',
editable : false,
sortable : false,
cell : Backgrid.TemplateBackedCell.extend({ template: 'Series/EpisodeProgressTemplate' }),
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
2013-04-25 04:27:49 +00:00
name : 'edit',
label : '',
editable : false,
sortable : false,
cell : Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/ControlsColumnTemplate' }),
2013-04-23 07:11:52 +00:00
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
}
];
2013-04-25 04:27:49 +00:00
2013-04-23 00:35:04 +00:00
this.series.show(new Backgrid.Grid(
{
2013-04-25 04:27:49 +00:00
row : Backgrid.SeriesIndexTableRow,
columns : columns,
collection: this.seriesCollection,
className : 'table table-hover'
2013-04-23 00:35:04 +00:00
}));
},
showList: function () {
this.series.show(new NzbDrone.Series.Index.List.CollectionView({ collection: this.seriesCollection }));
},
2013-04-24 03:11:45 +00:00
showPosters: function () {
this.series.show(new NzbDrone.Series.Index.Posters.CollectionView({ collection: this.seriesCollection }));
},
2013-04-24 00:30:25 +00:00
showEmpty: function () {
this.series.show(new NzbDrone.Series.Index.EmptyView());
},
2013-04-23 00:35:04 +00:00
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"}));
2013-04-25 04:27:49 +00:00
this.toolbar.show(new NzbDrone.Shared.Toolbar.ToolbarLayout({left: [ menuLeft, menuLeft], right: [menuRight]}));
2013-04-23 00:35:04 +00:00
switch (this.viewStyle) {
case 1:
this.showList();
break;
2013-04-24 03:11:45 +00:00
case 2:
this.showPosters();
break;
2013-04-23 00:35:04 +00:00
default:
this.showTable();
}
},
changeView: function (e) {
e.preventDefault();
var view = parseInt($(e.target).data('target'));
var target = $(e.target);
2013-04-23 00:35:04 +00:00
if (isNaN(view)) {
view = parseInt($(e.target).parent('a').data('target'));
target = $(e.target).parent('a');
2013-04-23 00:35:04 +00:00
}
if (view === 1) {
NzbDrone.Config.SeriesViewStyle(1);
this.showList();
}
2013-04-24 03:11:45 +00:00
else if (view === 2) {
NzbDrone.Config.SeriesViewStyle(2);
this.showPosters();
}
2013-04-23 00:35:04 +00:00
else {
NzbDrone.Config.SeriesViewStyle(0);
this.showTable();
}
this.setActive(target);
2013-04-23 00:35:04 +00:00
},
setActive: function (element) {
this.$('a').removeClass('active');
$(element).addClass('active');
}
});
});