mirror of https://github.com/lidarr/Lidarr
83 lines
2.1 KiB
JavaScript
83 lines
2.1 KiB
JavaScript
Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
|
|
className: "series-status-cell",
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
var monitored = this.model.get('monitored');
|
|
var status = this.model.get('status');
|
|
|
|
if (!monitored) {
|
|
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
|
}
|
|
else if (status === 0) {
|
|
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
|
}
|
|
|
|
else {
|
|
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
|
}
|
|
|
|
return this;
|
|
}
|
|
});
|
|
|
|
Backgrid.AirDateCell = Backgrid.Cell.extend({
|
|
className: "air-date-cell",
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
var airDate = this.model.get(this.column.get("name"));
|
|
|
|
this.$el.html(bestDateString(airDate));
|
|
|
|
return this;
|
|
}
|
|
});
|
|
|
|
Backgrid.EpisodeProgressCell = Backgrid.Cell.extend({
|
|
className: "episode-progress-cell",
|
|
template: 'Series/EpisodeProgressTemplate',
|
|
|
|
render: function () {
|
|
var data = this.model.toJSON();
|
|
var html = Marionette.Renderer.render(this.template, data);
|
|
this.$el.html(html);
|
|
|
|
return this;
|
|
}
|
|
});
|
|
|
|
Backgrid.ControlsColumnCell = Backgrid.Cell.extend({
|
|
className: "controls-cell",
|
|
template: 'Series/Index/Table/ControlsColumnTemplate',
|
|
|
|
render: function () {
|
|
var data = this.model.toJSON();
|
|
var html = Marionette.Renderer.render(this.template, data);
|
|
this.$el.html(html);
|
|
|
|
return this;
|
|
}
|
|
});
|
|
|
|
Backgrid.SeriesIndexTableRow = Backgrid.Row.extend({
|
|
events: {
|
|
'click .x-edit' : 'editSeries',
|
|
'click .x-remove': 'removeSeries'
|
|
},
|
|
|
|
editSeries: function () {
|
|
var view = new NzbDrone.Series.Edit.EditSeriesView({ model: this.model});
|
|
|
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|
view: view
|
|
});
|
|
},
|
|
|
|
removeSeries: function () {
|
|
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|
view: view
|
|
});
|
|
}
|
|
}); |