Sonarr/src/UI/Activity/Queue/QueueLayout.js

117 lines
3.8 KiB
JavaScript
Raw Normal View History

'use strict';
define(
[
'marionette',
'backgrid',
'Activity/Queue/QueueCollection',
'Cells/SeriesTitleCell',
'Cells/EpisodeNumberCell',
'Cells/EpisodeTitleCell',
'Cells/QualityCell',
'Activity/Queue/QueueStatusCell',
'Activity/Queue/QueueActionsCell',
'Activity/Queue/TimeleftCell',
2014-12-04 06:26:50 +00:00
'Activity/Queue/ProgressCell',
2015-01-31 08:24:09 +00:00
'Release/ProtocolCell',
2014-02-23 22:45:37 +00:00
'Shared/Grid/Pager'
], function (Marionette,
Backgrid,
QueueCollection,
SeriesTitleCell,
EpisodeNumberCell,
EpisodeTitleCell,
QualityCell,
2013-10-03 21:06:52 +00:00
QueueStatusCell,
QueueActionsCell,
2014-02-23 22:45:37 +00:00
TimeleftCell,
2014-12-04 06:26:50 +00:00
ProgressCell,
2015-01-31 08:24:09 +00:00
ProtocolCell,
2014-02-23 22:45:37 +00:00
GridPager) {
return Marionette.Layout.extend({
template: 'Activity/Queue/QueueLayoutTemplate',
regions: {
2014-02-23 22:45:37 +00:00
table: '#x-queue',
pager: '#x-queue-pager'
},
columns:
[
2013-10-03 21:06:52 +00:00
{
name : 'status',
label : '',
cell : QueueStatusCell,
cellValue : 'this'
2013-10-03 21:06:52 +00:00
},
{
name : 'series',
label : 'Series',
cell : SeriesTitleCell,
sortable : false
},
{
name : 'episode',
label : 'Episode',
cell : EpisodeNumberCell,
sortable : false
},
{
name : 'episode',
label : 'Episode Title',
cell : EpisodeTitleCell,
sortable : false
},
{
name : 'quality',
label : 'Quality',
cell : QualityCell,
sortable : false
},
2015-01-31 08:24:09 +00:00
{
name : 'protocol',
label : 'Protocol',
cell : ProtocolCell
},
{
name : 'timeleft',
label : 'Timeleft',
cell : TimeleftCell,
cellValue : 'this'
2014-12-04 06:26:50 +00:00
},
{
name : 'episode',
label : 'Progress',
cell : ProgressCell,
cellValue : 'this'
},
{
name : 'status',
label : '',
cell : QueueActionsCell,
cellValue : 'this'
}
],
initialize: function () {
this.listenTo(QueueCollection, 'sync', this._showTable);
},
onShow: function () {
this._showTable();
},
_showTable: function () {
this.table.show(new Backgrid.Grid({
columns : this.columns,
collection: QueueCollection,
className : 'table table-hover'
}));
2014-02-23 22:45:37 +00:00
this.pager.show(new GridPager({
columns : this.columns,
collection: QueueCollection
}));
}
});
});