Lidarr/UI/Series/Index/SeriesIndexLayout.js

158 lines
5.2 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 00:30:25 +00:00
'Series/Index/EmptyView',
'Config',
'Series/Index/Table/AirDateCell',
'Series/Index/Table/SeriesStatusCell'
2013-04-23 00:35:04 +00:00
],
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,
2013-04-23 07:11:52 +00:00
cell: 'seriesStatus',
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +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
},
{
name: 'seasonCount',
label: 'Seasons',
editable: false,
2013-04-23 07:11:52 +00:00
cell: 'integer',
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
name: 'quality',
label: 'Quality',
editable: false,
2013-04-23 07:11:52 +00:00
cell: 'integer',
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
name: 'network',
label: 'Network',
editable: false,
2013-04-23 07:11:52 +00:00
cell: 'string',
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +00:00
},
{
name: 'nextAiring',
label: 'Next Airing',
editable: false,
2013-04-23 07:11:52 +00:00
cell: 'airDate',
headerCell: 'nzbDrone'
2013-04-23 00:35:04 +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
},
{
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
}
];
this.series.show(new Backgrid.Grid(
{
2013-04-23 06:06:55 +00:00
row: Backgrid.SeriesIndexTableRow,
2013-04-23 00:35:04 +00:00
columns : columns,
collection : this.seriesCollection,
className: 'table table-hover'
}));
},
showList: function () {
this.series.show(new NzbDrone.Series.Index.List.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 () {
switch (this.viewStyle) {
case 1:
this.showList();
break;
default:
this.showTable();
}
},
changeView: function (e) {
e.preventDefault();
var view = parseInt($(e.target).data('target'));
if (isNaN(view)) {
view = parseInt($(e.target).parent('a').data('target'));
this.setActive($(e.target).parent('a'));
}
else{
this.setActive($(e.target));
}
if (view === 1) {
NzbDrone.Config.SeriesViewStyle(1);
this.showList();
}
else {
NzbDrone.Config.SeriesViewStyle(0);
this.showTable();
}
},
setActive: function (element) {
this.$('a').removeClass('active');
$(element).addClass('active');
}
});
});