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.
Radarr/src/UI/Cells/SeriesStatusCell.js

32 lines
961 B

10 years ago
var NzbDroneCell = require('./NzbDroneCell');
10 years ago
module.exports = NzbDroneCell.extend({
className : 'series-status-cell',
render : function() {
10 years ago
this.$el.empty();
var monitored = this.model.get('monitored');
var status = this.model.get('status');
if (status === 'ended') {
this.$el.html('<i class="icon-sonarr-series-ended grid-icon" title="Ended"></i>');
10 years ago
this._setStatusWeight(3);
}
else if (!monitored) {
this.$el.html('<i class="icon-sonarr-series-unmonitored grid-icon" title="Not Monitored"></i>');
10 years ago
this._setStatusWeight(2);
}
10 years ago
else {
this.$el.html('<i class="icon-sonarr-series-continuing grid-icon" title="Continuing"></i>');
10 years ago
this._setStatusWeight(1);
}
10 years ago
return this;
},
_setStatusWeight : function(weight) {
this.model.set('statusWeight', weight, { silent : true });
10 years ago
}
});