Lidarr/UI/Series/Index/Table/SeriesStatusCell.js

28 lines
814 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
define(['app','backgrid'], function () {
Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
2013-06-22 06:24:24 +00:00
className: 'series-status-cell',
2013-04-24 00:30:25 +00:00
render: function () {
this.$el.empty();
var monitored = this.model.get('monitored');
var status = this.model.get('status');
2013-04-24 00:30:25 +00:00
if (!monitored) {
2013-06-22 06:24:24 +00:00
this.$el.html('<i class='icon-pause grid-icon' title='Not Monitored'></i>');
}
else if (status === 'continuing') {
2013-06-22 06:24:24 +00:00
this.$el.html('<i class='icon-play grid-icon' title='Continuing'></i>');
}
else {
2013-06-22 06:24:24 +00:00
this.$el.html('<i class='icon-stop grid-icon' title='Ended'></i>');
}
2013-04-24 00:30:25 +00:00
return this;
2013-04-24 00:30:25 +00:00
}
});
2013-04-24 00:30:25 +00:00
return Backgrid.SeriesStatusCell;
2013-05-01 22:42:30 +00:00
});