mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 02:52:41 +01:00
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
NzbDrone.Series.SeriesModel = Backbone.Model.extend({
|
|
url: NzbDrone.Constants.ApiRoot + '/series',
|
|
|
|
mutators: {
|
|
bestDateString: function () {
|
|
var dateSource = this.get('nextAiring');
|
|
|
|
if (!dateSource) return '';
|
|
|
|
var date = Date.create(dateSource);
|
|
|
|
if (date.isYesterday()) return 'Yesterday';
|
|
if (date.isToday()) return 'Today';
|
|
if (date.isTomorrow()) return 'Tomorrow';
|
|
if (date.isToday()) return 'Today';
|
|
if (date.isBefore(Date.create().addDays(7))) return date.format('{Weekday}');
|
|
|
|
return date.format('{MM}/{dd}/{yyyy}');
|
|
},
|
|
|
|
formatedDateString: function () {
|
|
var dateSource = this.get('nextAiring');
|
|
|
|
if (!dateSource) return '';
|
|
|
|
var date = Date.create(dateSource);
|
|
|
|
return date.format('{Weekday} {Month} {dd}, {yyyy} {12hr}:{mm} {TT}');
|
|
},
|
|
|
|
percentOfEpisodes: function () {
|
|
var episodeCount = this.get('episodeCount');
|
|
var episodeFileCount = this.get('episodeFileCount');
|
|
|
|
var percent = 100;
|
|
|
|
if (episodeCount > 0)
|
|
percent = episodeFileCount / episodeCount * 100;
|
|
|
|
return percent;
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
episodeFileCount: 0,
|
|
episodeCount: 0
|
|
}
|
|
}); |