Datatables wired up on series grid

This commit is contained in:
Mark McDowall
2013-02-13 00:32:17 -06:00
committed by kay.one
parent 2a72063c19
commit 1671fd1776
24 changed files with 12335 additions and 45 deletions
@@ -1,3 +1,38 @@
NzbDrone.Series.SeriesModel = Backbone.Model.extend({
url: NzbDrone.Constants.ApiRoot + '/series'
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}');
},
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
}
});