You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
199 lines
7.0 KiB
199 lines
7.0 KiB
'use strict';
|
|
define(
|
|
[
|
|
'marionette',
|
|
'Series/Index/Posters/CollectionView',
|
|
'Series/Index/List/CollectionView',
|
|
'Series/Index/EmptyView',
|
|
'Series/SeriesCollection',
|
|
'Cells/AirDateCell',
|
|
'Cells/SeriesTitleCell',
|
|
'Cells/TemplatedCell',
|
|
'Series/Index/Table/SeriesStatusCell',
|
|
'Series/Index/Table/Row',
|
|
'Shared/Toolbar/ToolbarLayout',
|
|
'Config',
|
|
'Shared/LoadingView'
|
|
], function (Marionette, PosterCollectionView, ListCollectionView, EmptyView, SeriesCollection, AirDateCell, SeriesTitleCell, TemplatedCell, SeriesStatusCell, SeriesIndexRow,
|
|
ToolbarLayout, Config, LoadingView) {
|
|
return Marionette.Layout.extend({
|
|
template: 'Series/Index/SeriesIndexLayoutTemplate',
|
|
|
|
regions: {
|
|
series : '#x-series',
|
|
toolbar: '#x-toolbar'
|
|
},
|
|
|
|
columns:
|
|
[
|
|
{
|
|
name : 'status',
|
|
label: '',
|
|
cell : SeriesStatusCell
|
|
},
|
|
{
|
|
name : 'this',
|
|
label: 'Title',
|
|
cell : SeriesTitleCell
|
|
},
|
|
{
|
|
name : 'seasonCount',
|
|
label: 'Seasons',
|
|
cell : 'integer'
|
|
},
|
|
{
|
|
name : 'quality',
|
|
label: 'Quality',
|
|
cell : 'integer'
|
|
},
|
|
{
|
|
name : 'network',
|
|
label: 'Network',
|
|
cell : 'string'
|
|
},
|
|
{
|
|
name : 'nextAiring',
|
|
label: 'Next Airing',
|
|
cell : AirDateCell
|
|
},
|
|
{
|
|
name : 'this',
|
|
label : 'Episodes',
|
|
sortable: false,
|
|
template: 'Series/EpisodeProgressTemplate',
|
|
cell : TemplatedCell
|
|
},
|
|
{
|
|
name : 'this',
|
|
label : '',
|
|
sortable: false,
|
|
template: 'Series/Index/Table/ControlsColumnTemplate',
|
|
cell : TemplatedCell
|
|
}
|
|
],
|
|
|
|
leftSideButtons: {
|
|
type : 'default',
|
|
storeState: false,
|
|
items :
|
|
[
|
|
{
|
|
title: 'Add Series',
|
|
icon : 'icon-plus',
|
|
route: 'addseries'
|
|
},
|
|
{
|
|
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!'
|
|
}
|
|
]
|
|
},
|
|
|
|
_showTable: function () {
|
|
var view = new Backgrid.Grid({
|
|
row : SeriesIndexRow,
|
|
columns : this.columns,
|
|
collection: this.seriesCollection,
|
|
className : 'table table-hover'
|
|
});
|
|
|
|
this._fetchCollection(view);
|
|
},
|
|
|
|
_showList: function () {
|
|
var view = new ListCollectionView();
|
|
this._fetchCollection(view);
|
|
},
|
|
|
|
_showPosters: function () {
|
|
var view = new PosterCollectionView();
|
|
this._fetchCollection(view);
|
|
},
|
|
|
|
_showEmpty: function () {
|
|
this.series.show(new EmptyView());
|
|
},
|
|
|
|
_fetchCollection: function (view) {
|
|
var self = this;
|
|
|
|
if (this.seriesCollection.models.length === 0) {
|
|
this.series.show(new 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);
|
|
}
|
|
},
|
|
|
|
initialize: function () {
|
|
this.seriesCollection = new SeriesCollection();
|
|
},
|
|
|
|
onShow: function () {
|
|
|
|
//TODO: Move this outside of the function - 'this' is not available for the call back though (use string like events?)
|
|
var viewButtons = {
|
|
type : 'radio',
|
|
storeState : true,
|
|
menuKey : 'seriesViewMode',
|
|
defaultAction: 'listView',
|
|
items :
|
|
[
|
|
{
|
|
key : 'tableView',
|
|
title : '',
|
|
icon : 'icon-table',
|
|
callback: this._showTable
|
|
},
|
|
{
|
|
key : 'listView',
|
|
title : '',
|
|
icon : 'icon-list',
|
|
callback: this._showList
|
|
},
|
|
{
|
|
key : 'posterView',
|
|
title : '',
|
|
icon : 'icon-picture',
|
|
callback: this._showPosters
|
|
}
|
|
]
|
|
};
|
|
|
|
this.toolbar.show(new ToolbarLayout({
|
|
right :
|
|
[
|
|
viewButtons
|
|
],
|
|
left :
|
|
[
|
|
this.leftSideButtons
|
|
],
|
|
context: this
|
|
}));
|
|
}
|
|
});
|
|
});
|