2013-05-15 01:17:24 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
define(['app', 'Episode/Layout'], function () {
|
2013-05-20 21:05:48 +00:00
|
|
|
NzbDrone.Series.Details.EpisodeStatusCell = Backgrid.Cell.extend({
|
2013-05-15 01:17:24 +00:00
|
|
|
|
|
|
|
events: {
|
|
|
|
'click': 'showDetails'
|
|
|
|
},
|
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
2013-05-20 21:05:48 +00:00
|
|
|
|
|
|
|
if (this.model) {
|
|
|
|
|
|
|
|
var icon;
|
|
|
|
|
|
|
|
if (this.model.get('episodeFile')) {
|
|
|
|
icon = 'icon-ok';
|
|
|
|
|
|
|
|
}
|
2013-05-20 21:06:01 +00:00
|
|
|
else {
|
|
|
|
if (this.model.get('hasAired')) {
|
|
|
|
icon = 'icon-warning-sign';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
icon = 'icon-time';
|
|
|
|
}
|
|
|
|
}
|
2013-05-20 21:05:48 +00:00
|
|
|
|
|
|
|
this.$el.html('<i class="{0}"/>'.format(icon));
|
|
|
|
}
|
|
|
|
|
2013-05-15 01:17:24 +00:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
showDetails: function () {
|
|
|
|
var view = new NzbDrone.Episode.Layout({ model: this.model });
|
|
|
|
NzbDrone.modalRegion.show(view);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|