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.
35 lines
1.0 KiB
35 lines
1.0 KiB
12 years ago
|
"use strict";
|
||
|
|
||
|
define(['app', 'Cells/NzbDroneCell'], function () {
|
||
|
NzbDrone.Cells.EpisodeNumberCell = NzbDrone.Cells.NzbDroneCell.extend({
|
||
|
|
||
|
className: "episode-number-cell",
|
||
|
|
||
|
render: function () {
|
||
|
|
||
|
var airDate = this.cellValue.get('airDate') || this.get(this.column.get("airDate"));
|
||
|
var seasonNumber = this.cellValue.get('seasonNumber') || this.model.get(this.column.get("seasonNumber"));
|
||
|
var episodes = this.cellValue.get('episodeNumber') || this.model.get(this.column.get("episodes"));
|
||
|
|
||
|
var result = 'Unknown';
|
||
|
|
||
|
if (airDate) {
|
||
|
|
||
|
result = new Date(airDate).toLocaleDateString();
|
||
|
}
|
||
|
else {
|
||
|
|
||
|
var paddedEpisodes = _.map(episodes, function (episodeNumber) {
|
||
|
return episodeNumber.pad(2);
|
||
|
});
|
||
|
|
||
|
result = 'S{0}-E{1}'.format(seasonNumber, paddedEpisodes.join());
|
||
|
}
|
||
|
|
||
|
this.$el.html(result);
|
||
|
this.delegateEvents();
|
||
|
return this;
|
||
|
}
|
||
|
});
|
||
|
});
|