2013-04-23 02:35:04 +02:00
|
|
|
"use strict";
|
|
|
|
define([
|
|
|
|
'app',
|
|
|
|
'Series/Index/List/CollectionView',
|
2013-04-24 05:11:45 +02:00
|
|
|
'Series/Index/Posters/CollectionView',
|
2013-04-24 02:30:25 +02:00
|
|
|
'Series/Index/EmptyView',
|
2013-06-09 22:51:32 +02:00
|
|
|
'Cells/AirDateCell',
|
|
|
|
'Cells/SeriesTitleCell',
|
|
|
|
'Cells/TemplatedCell',
|
2013-04-25 06:27:49 +02:00
|
|
|
'Series/Index/Table/SeriesStatusCell',
|
2013-04-24 07:56:51 +02:00
|
|
|
'Shared/Toolbar/ToolbarLayout',
|
2013-06-08 09:57:43 +02:00
|
|
|
'Config',
|
|
|
|
'Shared/LoadingView'
|
2013-04-23 02:35:04 +02:00
|
|
|
],
|
2013-04-23 04:07:21 +02:00
|
|
|
function () {
|
2013-04-23 02:35:04 +02:00
|
|
|
NzbDrone.Series.Index.SeriesIndexLayout = Backbone.Marionette.Layout.extend({
|
|
|
|
template: 'Series/Index/SeriesIndexLayoutTemplate',
|
|
|
|
|
|
|
|
regions: {
|
2013-04-24 03:55:29 +02:00
|
|
|
series : '#x-series',
|
|
|
|
toolbar: '#x-toolbar'
|
2013-04-23 02:35:04 +02:00
|
|
|
},
|
|
|
|
|
2013-05-17 05:47:28 +02:00
|
|
|
columns: [
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'status',
|
|
|
|
label: '',
|
|
|
|
cell : 'seriesStatus'
|
2013-05-17 05:47:28 +02:00
|
|
|
},
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'this',
|
|
|
|
label: 'Title',
|
|
|
|
cell : NzbDrone.Cells.SeriesTitleCell
|
2013-05-17 05:47:28 +02:00
|
|
|
},
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'seasonCount',
|
|
|
|
label: 'Seasons',
|
|
|
|
cell : 'integer'
|
2013-05-17 05:47:28 +02:00
|
|
|
},
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'quality',
|
|
|
|
label: 'Quality',
|
|
|
|
cell : 'integer'
|
2013-05-17 05:47:28 +02:00
|
|
|
},
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'network',
|
|
|
|
label: 'Network',
|
|
|
|
cell : 'string'
|
2013-05-17 05:47:28 +02:00
|
|
|
},
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'nextAiring',
|
|
|
|
label: 'Next Airing',
|
|
|
|
cell : NzbDrone.Cells.AirDateCell
|
2013-05-17 05:47:28 +02:00
|
|
|
},
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'this',
|
|
|
|
label : 'Episodes',
|
|
|
|
sortable: false,
|
|
|
|
template: 'Series/EpisodeProgressTemplate',
|
|
|
|
cell : NzbDrone.Cells.TemplatedCell
|
2013-05-17 05:47:28 +02:00
|
|
|
},
|
|
|
|
{
|
2013-06-09 22:51:32 +02:00
|
|
|
name : 'this',
|
|
|
|
label : '',
|
|
|
|
sortable: false,
|
|
|
|
template: 'Series/Index/Table/ControlsColumnTemplate',
|
|
|
|
cell : NzbDrone.Cells.TemplatedCell
|
2013-05-17 05:47:28 +02:00
|
|
|
}
|
|
|
|
],
|
2013-04-23 02:35:04 +02:00
|
|
|
|
2013-06-08 09:57:43 +02:00
|
|
|
leftSideButtons: {
|
|
|
|
type : 'default',
|
|
|
|
storeState: false,
|
|
|
|
items : [
|
|
|
|
{
|
|
|
|
title: 'Add Series',
|
|
|
|
icon : 'icon-plus',
|
|
|
|
route: 'series/add'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title : 'RSS Sync',
|
|
|
|
icon : 'icon-rss',
|
|
|
|
command : 'rsssync',
|
|
|
|
successMessage: 'RSS Sync Completed',
|
|
|
|
errorMessage : 'RSS Sync Failed!'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title : 'Update Library',
|
|
|
|
icon : 'icon-refresh',
|
|
|
|
command : 'refreshseries',
|
|
|
|
successMessage: 'Library was updated!',
|
|
|
|
errorMessage : 'Library update failed!'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2013-06-08 10:59:02 +02:00
|
|
|
_showTable: function () {
|
|
|
|
var view = new Backgrid.Grid(
|
2013-06-09 22:51:32 +02:00
|
|
|
{
|
|
|
|
row : NzbDrone.Series.Index.Table.Row,
|
|
|
|
columns : this.columns,
|
|
|
|
collection: this.seriesCollection,
|
|
|
|
className : 'table table-hover'
|
|
|
|
});
|
2013-04-23 02:35:04 +02:00
|
|
|
|
2013-06-08 10:59:02 +02:00
|
|
|
this._fetchCollection(view);
|
2013-04-23 02:35:04 +02:00
|
|
|
},
|
|
|
|
|
2013-06-08 10:59:02 +02:00
|
|
|
_showList: function () {
|
|
|
|
var view = new NzbDrone.Series.Index.List.CollectionView();
|
|
|
|
this._fetchCollection(view);
|
2013-04-23 02:35:04 +02:00
|
|
|
},
|
|
|
|
|
2013-06-08 10:59:02 +02:00
|
|
|
_showPosters: function () {
|
|
|
|
var view = new NzbDrone.Series.Index.Posters.CollectionView();
|
|
|
|
this._fetchCollection(view);
|
2013-04-24 05:11:45 +02:00
|
|
|
},
|
|
|
|
|
2013-06-08 10:59:02 +02:00
|
|
|
_showEmpty: function () {
|
2013-04-24 02:30:25 +02:00
|
|
|
this.series.show(new NzbDrone.Series.Index.EmptyView());
|
|
|
|
},
|
|
|
|
|
2013-06-08 10:59:02 +02:00
|
|
|
_fetchCollection: function (view) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
if (this.seriesCollection.models.length === 0) {
|
|
|
|
this.series.show(new NzbDrone.Shared.LoadingView());
|
|
|
|
|
|
|
|
this.seriesCollection.fetch()
|
|
|
|
.done(function () {
|
|
|
|
if (self.seriesCollection.models.length === 0) {
|
|
|
|
self._showEmpty();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
view.collection = self.seriesCollection;
|
|
|
|
self.series.show(view);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
view.collection = this.seriesCollection;
|
|
|
|
this.series.show(view);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-04-23 02:35:04 +02:00
|
|
|
initialize: function () {
|
|
|
|
this.seriesCollection = new NzbDrone.Series.SeriesCollection();
|
|
|
|
},
|
|
|
|
|
|
|
|
onShow: function () {
|
2013-04-24 03:55:29 +02:00
|
|
|
|
2013-06-08 09:57:43 +02:00
|
|
|
//TODO: Move this outside of the function - 'this' is not available for the call back though (use string like events?)
|
2013-04-26 06:45:45 +02:00
|
|
|
var viewButtons = {
|
|
|
|
type : 'radio',
|
2013-06-09 22:51:32 +02:00
|
|
|
storeState : true,
|
|
|
|
menuKey : 'seriesViewMode',
|
|
|
|
defaultAction: 'listView',
|
|
|
|
items : [
|
2013-04-26 06:45:45 +02:00
|
|
|
{
|
|
|
|
key : 'tableView',
|
|
|
|
title : '',
|
|
|
|
icon : 'icon-table',
|
2013-06-08 10:59:02 +02:00
|
|
|
callback: this._showTable
|
2013-04-26 06:45:45 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key : 'listView',
|
|
|
|
title : '',
|
|
|
|
icon : 'icon-list',
|
2013-06-08 10:59:02 +02:00
|
|
|
callback: this._showList
|
2013-04-26 06:45:45 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key : 'posterView',
|
|
|
|
title : '',
|
|
|
|
icon : 'icon-picture',
|
2013-06-08 10:59:02 +02:00
|
|
|
callback: this._showPosters
|
2013-04-26 06:45:45 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
2013-05-11 22:51:32 +02:00
|
|
|
this.toolbar.show(new NzbDrone.Shared.Toolbar.ToolbarLayout({
|
|
|
|
right : [ viewButtons],
|
2013-06-08 09:57:43 +02:00
|
|
|
left : [ this.leftSideButtons],
|
2013-05-11 22:51:32 +02:00
|
|
|
context: this
|
|
|
|
}));
|
2013-04-23 02:35:04 +02:00
|
|
|
}
|
2013-06-08 09:57:43 +02:00
|
|
|
});
|
|
|
|
});
|