Lidarr/UI/Series/Index/SeriesIndexLayout.js

163 lines
5.8 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/ToolbarLayout',
2013-06-08 07:57:43 +00:00
'Config',
'Shared/LoadingView'
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
},
columns: [
{
name : 'status',
label : '',
cell : 'seriesStatus'
},
{
name : 'title',
label : 'Title',
cell : Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/SeriesTitleTemplate' })
},
{
name : 'seasonCount',
label : 'Seasons',
cell : 'integer'
},
{
name : 'quality',
label : 'Quality',
cell : 'integer'
},
{
name : 'network',
label : 'Network',
cell : 'string'
},
{
name : 'nextAiring',
label : 'Next Airing',
cell : 'airDate'
},
{
name : 'episodes',
label : 'Episodes',
sortable : false,
cell : Backgrid.TemplateBackedCell.extend({ template: 'Series/EpisodeProgressTemplate' })
},
{
name : 'edit',
label : '',
sortable : false,
cell : Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/ControlsColumnTemplate' })
}
],
2013-04-23 00:35:04 +00:00
2013-06-08 07:57:43 +00: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!'
}
]
},
showTable: function () {
2013-04-23 00:35:04 +00:00
this.series.show(new Backgrid.Grid(
{
row : NzbDrone.Series.Index.Table.Row,
columns : this.columns,
2013-04-25 04:27:49 +00:00
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.seriesCollection = new NzbDrone.Series.SeriesCollection();
this.seriesCollection.fetch();
},
onShow: function () {
2013-06-08 07:57:43 +00:00
//This gets cleared immediately because of the viewButton callback
this.series.show(new NzbDrone.Shared.LoadingView());
//TODO: Move this outside of the function - 'this' is not available for the call back though (use string like events?)
var viewButtons = {
type : 'radio',
2013-06-08 07:57:43 +00:00
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
}
]
};
2013-05-11 20:51:32 +00:00
this.toolbar.show(new NzbDrone.Shared.Toolbar.ToolbarLayout({
right : [ viewButtons],
2013-06-08 07:57:43 +00:00
left : [ this.leftSideButtons],
2013-05-11 20:51:32 +00:00
context: this
}));
2013-04-23 00:35:04 +00:00
}
2013-06-08 07:57:43 +00:00
});
});