Lidarr/UI/Series/Index/SeriesIndexLayout.js

268 lines
9.0 KiB
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
define(
[
'marionette',
'Series/Index/Posters/CollectionView',
'Series/Index/List/CollectionView',
'Series/Index/EmptyView',
'Series/SeriesCollection',
'Cells/RelativeDateCell',
'Cells/SeriesTitleCell',
'Cells/TemplatedCell',
2013-07-18 00:39:41 +00:00
'Cells/QualityProfileCell',
'Cells/EpisodeProgressCell',
'Shared/Grid/DateHeaderCell',
'Series/Index/Table/SeriesStatusCell',
'Series/Index/Table/Row',
2013-07-29 01:12:34 +00:00
'Series/Index/FooterView',
'Series/Index/FooterModel',
'Shared/Toolbar/ToolbarLayout'
2013-07-18 00:39:41 +00:00
], function (Marionette,
PosterCollectionView,
ListCollectionView,
EmptyView,
SeriesCollection,
RelativeDateCell,
2013-07-18 00:39:41 +00:00
SeriesTitleCell,
TemplatedCell,
QualityProfileCell,
EpisodeProgressCell,
DateHeaderCell,
2013-07-18 00:39:41 +00:00
SeriesStatusCell,
SeriesIndexRow,
2013-07-29 01:12:34 +00:00
FooterView,
FooterModel,
ToolbarLayout) {
return Marionette.Layout.extend({
2013-04-23 00:35:04 +00:00
template: 'Series/Index/SeriesIndexLayoutTemplate',
regions: {
seriesRegion: '#x-series',
2013-07-27 17:48:45 +00:00
toolbar : '#x-toolbar',
2013-07-29 01:12:34 +00:00
footer : '#x-series-footer'
2013-04-23 00:35:04 +00:00
},
columns:
[
{
name : 'statusWeight',
label : '',
cell : SeriesStatusCell
},
{
2013-07-18 02:09:34 +00:00
name : 'title',
label : 'Title',
cell : SeriesTitleCell,
cellValue: 'this'
},
{
name : 'seasonCount',
label: 'Seasons',
cell : 'integer'
},
2013-06-08 07:57:43 +00:00
{
2013-07-18 00:39:41 +00:00
name : 'qualityProfileId',
label: 'Quality',
2013-07-18 00:39:41 +00:00
cell : QualityProfileCell
2013-06-08 07:57:43 +00:00
},
{
name : 'network',
label: 'Network',
cell : 'string'
2013-06-08 07:57:43 +00:00
},
{
name : 'nextAiring',
label : 'Next Airing',
cell : RelativeDateCell,
headerCell: DateHeaderCell
},
{
name : 'percentOfEpisodes',
label : 'Episodes',
cell : EpisodeProgressCell,
className: 'episode-progress-cell'
},
{
name : 'this',
label : '',
sortable: false,
template: 'Series/Index/Table/ControlsColumnTemplate',
cell : TemplatedCell
2013-06-08 07:57:43 +00:00
}
],
leftSideButtons: {
type : 'default',
storeState: false,
items :
[
{
title: 'Add Series',
icon : 'icon-plus',
2013-06-26 01:00:56 +00:00
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!'
}
]
2013-06-08 07:57:43 +00:00
},
_showTable: function () {
this.currentView = new Backgrid.Grid({
row : SeriesIndexRow,
collection: SeriesCollection,
columns : this.columns,
className : 'table table-hover'
});
2013-04-23 00:35:04 +00:00
this._renderView();
this._fetchCollection();
2013-04-23 00:35:04 +00:00
},
_showList: function () {
this.currentView = new ListCollectionView();
this._fetchCollection();
2013-04-23 00:35:04 +00:00
},
_showPosters: function () {
this.currentView = new PosterCollectionView();
this._fetchCollection();
2013-04-24 03:11:45 +00:00
},
initialize: function () {
this.seriesCollection = SeriesCollection;
this.listenTo(SeriesCollection, 'sync', this._renderView);
this.listenTo(SeriesCollection, 'remove', this._renderView);
2013-04-24 00:30:25 +00:00
},
_renderView: function () {
if (SeriesCollection.length === 0) {
this.seriesRegion.show(new EmptyView());
this.toolbar.close();
}
2013-06-28 23:36:25 +00:00
else {
this.currentView.collection = SeriesCollection;
this.seriesRegion.show(this.currentView);
this._showToolbar();
2013-07-29 01:12:34 +00:00
this._showFooter();
}
},
2013-04-23 00:35:04 +00:00
onShow: function () {
2013-06-28 23:36:25 +00:00
this._showToolbar();
this._renderView();
this._fetchCollection();
},
_fetchCollection: function () {
SeriesCollection.fetch();
},
_showToolbar: function () {
if (this.toolbar.currentView) {
return;
}
var viewButtons = {
type : 'radio',
storeState : true,
menuKey : 'seriesViewMode',
defaultAction: 'listView',
items :
[
{
2013-07-04 00:57:23 +00:00
key : 'posterView',
title : '',
tooltip : 'Posters',
2013-07-04 00:57:23 +00:00
icon : 'icon-th-large',
callback: this._showPosters
},
{
key : 'listView',
title : '',
tooltip : 'Overview List',
2013-07-04 00:57:23 +00:00
icon : 'icon-th-list',
callback: this._showList
},
{
2013-07-04 00:57:23 +00:00
key : 'tableView',
title : '',
tooltip : 'Table',
2013-07-04 00:57:23 +00:00
icon : 'icon-table',
callback: this._showTable
}
]
};
2013-06-19 01:02:23 +00:00
this.toolbar.show(new ToolbarLayout({
right :
[
viewButtons
],
left :
[
this.leftSideButtons
],
2013-05-11 20:51:32 +00:00
context: this
}));
2013-07-29 01:12:34 +00:00
},
_showFooter: function () {
var footerModel = new FooterModel();
2013-07-29 01:32:52 +00:00
var series = SeriesCollection.models.length;
var episodes = 0;
var episodeFiles = 0;
var ended = 0;
var continuing = 0;
var monitored = 0;
2013-07-29 01:12:34 +00:00
2013-07-29 01:32:52 +00:00
_.each(SeriesCollection.models, function (model){
episodes += model.get('episodeCount');
episodeFiles += model.get('episodeFileCount');
if (model.get('status').toLowerCase() === 'ended') {
ended++;
}
else {
continuing++;
}
if (model.get('monitored')) {
monitored++;
}
});
2013-07-29 01:12:34 +00:00
footerModel.set({
2013-07-29 01:32:52 +00:00
series: series,
ended: ended,
continuing: continuing,
monitored: monitored,
unmonitored: series - monitored,
episodes: episodes,
episodeFiles: episodeFiles
2013-07-29 01:12:34 +00:00
});
this.footer.show(new FooterView({ model: footerModel }));
2013-04-23 00:35:04 +00:00
}
2013-06-08 07:57:43 +00:00
});
});