2013-05-15 03:17:24 +02:00
|
|
|
"use strict";
|
|
|
|
|
2013-06-15 01:18:37 +02:00
|
|
|
define(['app','backgrid' ], function () {
|
2013-06-09 22:51:32 +02:00
|
|
|
NzbDrone.Cells.EpisodeStatusCell = Backgrid.Cell.extend({
|
2013-05-15 03:17:24 +02:00
|
|
|
|
2013-05-20 23:42:20 +02:00
|
|
|
className: 'episode-status-cell',
|
|
|
|
|
2013-05-15 03:17:24 +02:00
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
2013-05-20 23:05:48 +02:00
|
|
|
|
|
|
|
if (this.model) {
|
|
|
|
|
|
|
|
var icon;
|
|
|
|
|
|
|
|
if (this.model.get('episodeFile')) {
|
|
|
|
icon = 'icon-ok';
|
|
|
|
|
|
|
|
}
|
2013-05-20 23:06:01 +02:00
|
|
|
else {
|
|
|
|
if (this.model.get('hasAired')) {
|
|
|
|
icon = 'icon-warning-sign';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
icon = 'icon-time';
|
|
|
|
}
|
|
|
|
}
|
2013-05-20 23:05:48 +02:00
|
|
|
|
|
|
|
this.$el.html('<i class="{0}"/>'.format(icon));
|
|
|
|
}
|
|
|
|
|
2013-05-15 03:17:24 +02:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|