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.
80 lines
2.7 KiB
80 lines
2.7 KiB
"use strict";
|
|
define([
|
|
'app',
|
|
'Missing/Collection',
|
|
'Series/Index/Table/AirDateCell',
|
|
'Series/Index/Table/SeriesStatusCell',
|
|
'Shared/Toolbar/ToolbarLayout',
|
|
'Shared/LoadingView'
|
|
],
|
|
function () {
|
|
NzbDrone.Missing.MissingLayout = Backbone.Marionette.Layout.extend({
|
|
template: 'Missing/MissingLayoutTemplate',
|
|
|
|
regions: {
|
|
missing: '#x-missing',
|
|
toolbar: '#x-toolbar',
|
|
pager : '#x-pager'
|
|
},
|
|
|
|
columns: [
|
|
{
|
|
name : 'series.Title',
|
|
label : 'Series Title',
|
|
sortable : false,
|
|
cell : Backgrid.TemplateBackedCell.extend({ template: 'Missing/SeriesTitleTemplate' })
|
|
},
|
|
{
|
|
name : 'episode',
|
|
label : 'Episode',
|
|
sortable : false,
|
|
cell : Backgrid.TemplateBackedCell.extend({ template: 'Missing/EpisodeColumnTemplate' })
|
|
},
|
|
{
|
|
name : 'title',
|
|
label : 'Episode Title',
|
|
sortable : false,
|
|
cell : 'string'
|
|
},
|
|
{
|
|
name : 'airDate',
|
|
label : 'Air Date',
|
|
cell : 'airDate'
|
|
},
|
|
{
|
|
name : 'edit',
|
|
label : '',
|
|
sortable : false,
|
|
cell : Backgrid.TemplateBackedCell.extend({ template: 'Missing/ControlsColumnTemplate' })
|
|
}
|
|
],
|
|
|
|
_showTable: function () {
|
|
this.missing.show(new Backgrid.Grid(
|
|
{
|
|
row : NzbDrone.Missing.Row,
|
|
columns : this.columns,
|
|
collection: this.missingCollection,
|
|
className : 'table table-hover'
|
|
}));
|
|
|
|
this.pager.show(new Backgrid.NzbDronePaginator({
|
|
columns: this.columns,
|
|
collection: this.missingCollection
|
|
}));
|
|
},
|
|
|
|
onShow: function () {
|
|
var self = this;
|
|
|
|
this.missing.show(new NzbDrone.Shared.LoadingView());
|
|
|
|
this.missingCollection = new NzbDrone.Missing.Collection();
|
|
this.missingCollection.fetch()
|
|
.done(function () {
|
|
self._showTable();
|
|
});
|
|
}
|
|
});
|
|
});
|