2013-02-15 02:40:29 +00:00
|
|
|
|
define(['app', 'Quality/QualityProfileCollection'], function (app, qualityProfileCollection) {
|
2013-02-14 02:28:56 +00:00
|
|
|
|
NzbDrone.Series.SeriesModel = Backbone.Model.extend({
|
2013-02-13 06:32:17 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
mutators: {
|
|
|
|
|
bestDateString: function () {
|
|
|
|
|
var dateSource = this.get('nextAiring');
|
2013-02-13 06:32:17 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
if (!dateSource) return '';
|
2013-02-14 03:56:06 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
var date = Date.create(dateSource);
|
2013-02-14 03:56:06 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
if (date.isYesterday()) return 'Yesterday';
|
|
|
|
|
if (date.isToday()) return 'Today';
|
|
|
|
|
if (date.isTomorrow()) return 'Tomorrow';
|
|
|
|
|
if (date.isBefore(Date.create().addDays(7))) return date.format('{Weekday}');
|
2013-02-14 03:56:06 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
return date.format('{MM}/{dd}/{yyyy}');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
percentOfEpisodes: function () {
|
|
|
|
|
var episodeCount = this.get('episodeCount');
|
|
|
|
|
var episodeFileCount = this.get('episodeFileCount');
|
2013-02-13 06:32:17 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
var percent = 100;
|
2013-02-13 06:32:17 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
if (episodeCount > 0)
|
|
|
|
|
percent = episodeFileCount / episodeCount * 100;
|
|
|
|
|
|
|
|
|
|
return percent;
|
|
|
|
|
}
|
|
|
|
|
},
|
2013-02-13 06:32:17 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
defaults: {
|
|
|
|
|
episodeFileCount: 0,
|
2013-02-15 02:40:29 +00:00
|
|
|
|
episodeCount: 0,
|
|
|
|
|
qualityProfiles: qualityProfileCollection
|
2013-02-13 06:32:17 +00:00
|
|
|
|
}
|
2013-02-14 02:28:56 +00:00
|
|
|
|
});
|
2013-02-13 06:32:17 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
});
|