Radarr/UI/Missing/MissingLayout.js

80 lines
2.7 KiB
JavaScript
Raw Normal View History

"use strict";
define([
'app',
'Missing/Collection',
'Series/Index/Table/AirDateCell',
'Series/Index/Table/SeriesStatusCell',
2013-06-08 07:57:43 +00:00
'Shared/Toolbar/ToolbarLayout',
'Shared/LoadingView'
],
function () {
NzbDrone.Missing.MissingLayout = Backbone.Marionette.Layout.extend({
template: 'Missing/MissingLayoutTemplate',
regions: {
missing: '#x-missing',
2013-05-02 05:50:34 +00:00
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' })
}
],
2013-06-08 07:57:43 +00:00
_showTable: function () {
this.missing.show(new Backgrid.Grid(
{
row : NzbDrone.Missing.Row,
columns : this.columns,
collection: this.missingCollection,
2013-05-01 07:34:05 +00:00
className : 'table table-hover'
}));
2013-05-02 05:50:34 +00:00
this.pager.show(new Backgrid.NzbDronePaginator({
columns: this.columns,
2013-05-02 05:50:34 +00:00
collection: this.missingCollection
}));
},
onShow: function () {
2013-06-08 07:57:43 +00:00
var self = this;
2013-06-08 07:57:43 +00:00
this.missing.show(new NzbDrone.Shared.LoadingView());
this.missingCollection = new NzbDrone.Missing.Collection();
this.missingCollection.fetch()
.done(function () {
self._showTable();
});
}
});
});