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.
Readarr/UI/Cells/EpisodeStatusCell.js

43 lines
1.2 KiB

'use strict';
define(
[
'backgrid'
], function (Backgrid) {
return Backgrid.Cell.extend({
className: 'episode-status-cell',
render: function () {
this.$el.empty();
if (this.model) {
var icon;
var tooltip;
var hasAired = Date.create(this.model.get('airDate')).isBefore(Date.create());
if (hasAired) {
icon = 'icon-ok';
tooltip = 'Episode downloaded';
}
else {
if (this.model.get('hasAired')) {
icon = 'icon-warning-sign';
tooltip = 'Episode missing from disk';
}
else {
icon = 'icon-time';
tooltip = 'Episode has not aired';
}
}
this.$el.html('<i class="{0}" title="{1}"/>'.format(icon, tooltip));
}
return this;
}
});
});