parent
83b8ab8fe9
commit
7b5c0a952b
@ -1,26 +1,32 @@
|
|||||||
var NzbDroneCell = require('./NzbDroneCell');
|
var NzbDroneCell = require('./NzbDroneCell');
|
||||||
|
|
||||||
module.exports = NzbDroneCell.extend({
|
module.exports = NzbDroneCell.extend({
|
||||||
className : 'series-status-cell',
|
className : 'series-status-cell',
|
||||||
render : function(){
|
|
||||||
|
render : function() {
|
||||||
this.$el.empty();
|
this.$el.empty();
|
||||||
var monitored = this.model.get('monitored');
|
var monitored = this.model.get('monitored');
|
||||||
var status = this.model.get('status');
|
var status = this.model.get('status');
|
||||||
if(status === 'ended') {
|
|
||||||
|
if (status === 'ended') {
|
||||||
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
||||||
this._setStatusWeight(3);
|
this._setStatusWeight(3);
|
||||||
}
|
}
|
||||||
else if(!monitored) {
|
|
||||||
|
else if (!monitored) {
|
||||||
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
||||||
this._setStatusWeight(2);
|
this._setStatusWeight(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
||||||
this._setStatusWeight(1);
|
this._setStatusWeight(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
_setStatusWeight : function(weight){
|
|
||||||
this.model.set('statusWeight', weight, {silent : true});
|
_setStatusWeight : function(weight) {
|
||||||
|
this.model.set('statusWeight', weight, { silent : true });
|
||||||
}
|
}
|
||||||
});
|
});
|
Loading…
Reference in new issue