mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-15 21:05:48 -04:00
84 lines
2.4 KiB
JavaScript
84 lines
2.4 KiB
JavaScript
var Marionette = require('marionette');
|
|
var Backgrid = require('backgrid');
|
|
var HistoryCollection = require('../../Activity/History/HistoryCollection');
|
|
var EventTypeCell = require('../../Cells/EventTypeCell');
|
|
var QualityCell = require('../../Cells/QualityCell');
|
|
var RelativeDateCell = require('../../Cells/RelativeDateCell');
|
|
var EpisodeHistoryActionsCell = require('./EpisodeHistoryActionsCell');
|
|
var EpisodeHistoryDetailsCell = require('./EpisodeHistoryDetailsCell');
|
|
var NoHistoryView = require('./NoHistoryView');
|
|
var LoadingView = require('../../Shared/LoadingView');
|
|
|
|
module.exports = Marionette.Layout.extend({
|
|
template : 'Episode/History/EpisodeHistoryLayoutTemplate',
|
|
|
|
regions : {
|
|
historyTable : '.history-table'
|
|
},
|
|
|
|
columns : [
|
|
{
|
|
name : 'eventType',
|
|
label : '',
|
|
cell : EventTypeCell,
|
|
cellValue : 'this'
|
|
},
|
|
{
|
|
name : 'sourceTitle',
|
|
label : 'Source Title',
|
|
cell : 'string'
|
|
},
|
|
{
|
|
name : 'quality',
|
|
label : 'Quality',
|
|
cell : QualityCell
|
|
},
|
|
{
|
|
name : 'date',
|
|
label : 'Date',
|
|
cell : RelativeDateCell
|
|
},
|
|
{
|
|
name : 'this',
|
|
label : '',
|
|
cell : EpisodeHistoryDetailsCell,
|
|
sortable : false
|
|
},
|
|
{
|
|
name : 'this',
|
|
label : '',
|
|
cell : EpisodeHistoryActionsCell,
|
|
sortable : false
|
|
}
|
|
],
|
|
|
|
initialize : function(options) {
|
|
this.model = options.model;
|
|
this.series = options.series;
|
|
|
|
this.collection = new HistoryCollection({
|
|
episodeId : this.model.id,
|
|
tableName : 'episodeHistory'
|
|
});
|
|
this.collection.fetch();
|
|
this.listenTo(this.collection, 'sync', this._showTable);
|
|
},
|
|
|
|
onRender : function() {
|
|
this.historyTable.show(new LoadingView());
|
|
},
|
|
|
|
_showTable : function() {
|
|
if (this.collection.any()) {
|
|
this.historyTable.show(new Backgrid.Grid({
|
|
collection : this.collection,
|
|
columns : this.columns,
|
|
className : 'table table-hover table-condensed'
|
|
}));
|
|
}
|
|
|
|
else {
|
|
this.historyTable.show(new NoHistoryView());
|
|
}
|
|
}
|
|
}); |