Radarr/UI/Series/SeriesModel.js

49 lines
1.4 KiB
JavaScript
Raw Normal View History

2013-03-31 21:45:16 +00:00
define(['app', 'Quality/QualityProfileCollection', 'AddSeries/RootFolders/RootFolderCollection'], function (app, qualityProfileCollection, rootFolders) {
NzbDrone.Series.SeriesModel = Backbone.Model.extend({
2013-02-13 06:32:17 +00:00
urlRoot: NzbDrone.Constants.ApiRoot + '/series',
mutators: {
bestDateString: function () {
return bestDateString(this.get('nextAiring'));
},
percentOfEpisodes: function () {
var episodeCount = this.get('episodeCount');
var episodeFileCount = this.get('episodeFileCount');
2013-02-13 06:32:17 +00:00
var percent = 100;
2013-02-13 06:32:17 +00:00
if (episodeCount > 0) {
percent = episodeFileCount / episodeCount * 100;
}
return percent;
2013-03-31 21:45:16 +00:00
},
banner : function () {
var banner = _.find(this.get('images'), function (image) {
return image.coverType === 1;
});
if (banner) {
return banner.url;
}
return undefined;
},
traktUrl : function () {
return "http://trakt.tv/show/" + this.get('titleSlug');
}
},
2013-02-13 06:32:17 +00:00
defaults: {
episodeFileCount: 0,
episodeCount : 0,
2013-03-31 21:45:16 +00:00
qualityProfiles : qualityProfileCollection,
rootFolders : rootFolders
2013-02-13 06:32:17 +00:00
}
});
2013-02-13 06:32:17 +00:00
});