Lidarr/UI/Cells/EpisodeStatusCell.js

74 lines
2.6 KiB
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
define(
[
'app',
2013-08-21 21:47:39 +00:00
'Cells/NzbDroneCell',
'moment',
'Shared/FormatHelpers'
], function (App, NzbDroneCell, Moment, FormatHelpers) {
2013-08-21 21:47:39 +00:00
return NzbDroneCell.extend({
className: 'episode-status-cell',
2013-05-20 21:42:20 +00:00
render: function () {
this.$el.empty();
2013-05-20 21:05:48 +00:00
if (this.model) {
2013-05-20 21:05:48 +00:00
var icon;
2013-07-05 20:26:50 +00:00
var tooltip;
2013-05-20 21:05:48 +00:00
2013-07-26 05:19:50 +00:00
var hasAired = Moment(this.model.get('airDateUtc')).isBefore(Moment());
2013-07-17 03:25:42 +00:00
var hasFile = this.model.get('hasFile');
2013-07-16 23:54:45 +00:00
2013-07-17 03:25:42 +00:00
if (hasFile) {
var episodeFile = App.request(App.Reqres.GetEpisodeFileById, this.model.get('episodeFileId'));
this.listenTo(episodeFile, 'change', this._refresh);
2013-08-21 06:46:23 +00:00
var quality = episodeFile.get('quality');
var size = FormatHelpers.bytes(episodeFile.get('size'));
var title = 'Episode downloaded';
if (quality.proper) {
title += ' [PROPER] - {0}'.format(size);
this.$el.html('<span class="badge badge-info" title="{0}">{1}</span>'.format(title, quality.quality.name));
}
else {
title += ' - {0}'.format(size);
this.$el.html('<span class="badge badge-inverse" title="{0}">{1}</span>'.format(title, quality.quality.name));
}
return this;
2013-05-20 21:06:01 +00:00
}
else {
if (this.model.get('downloading')) {
icon = 'icon-nd-downloading';
tooltip = 'Episode is downloading';
}
else if (!this.model.get('airDateUtc')) {
icon = 'icon-nd-tba';
tooltip = 'TBA';
}
else if (hasAired) {
icon = 'icon-nd-missing';
2013-07-05 20:26:50 +00:00
tooltip = 'Episode missing from disk';
}
else {
icon = 'icon-nd-not-aired';
2013-07-05 20:26:50 +00:00
tooltip = 'Episode has not aired';
}
2013-05-20 21:06:01 +00:00
}
2013-07-05 20:26:50 +00:00
this.$el.html('<i class="{0}" title="{1}"/>'.format(icon, tooltip));
2013-05-20 21:06:01 +00:00
}
2013-05-20 21:05:48 +00:00
return this;
2013-05-20 21:05:48 +00:00
}
});
});