mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 10:17:47 +00:00
207d9c256d
Relative dates for next airing on posters and list (series) History time shows real time on tooltip
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'backgrid',
|
|
'moment'
|
|
], function (Backgrid, Moment) {
|
|
return Backgrid.Cell.extend({
|
|
|
|
className: 'episode-status-cell',
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
|
|
if (this.model) {
|
|
|
|
var icon;
|
|
var tooltip;
|
|
|
|
var hasAired = Moment(this.model.get('airDate')).isBefore(Moment());
|
|
var hasFile = this.model.get('hasFile');
|
|
|
|
if (hasFile) {
|
|
icon = 'icon-ok';
|
|
tooltip = 'Episode downloaded';
|
|
}
|
|
else {
|
|
if (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;
|
|
}
|
|
});
|
|
});
|