Radarr/UI/Series/SeriesModel.js

73 lines
2.2 KiB
JavaScript
Raw Normal View History

"use strict";
2013-06-08 22:23:17 +00:00
define(['app', 'Quality/QualityProfileCollection'], function (app, qualityProfiles) {
NzbDrone.Series.SeriesModel = Backbone.Model.extend({
2013-02-13 06:32:17 +00:00
urlRoot: NzbDrone.Constants.ApiRoot + '/series',
mutators: {
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 () {
return "/mediacover/" + this.get('id') + "/banner.jpg";
},
2013-04-04 04:38:51 +00:00
poster : function () {
return "/mediacover/" + this.get('id') + "/poster.jpg";
2013-04-04 04:38:51 +00:00
},
2013-04-23 02:07:21 +00:00
fanArt : function () {
return "/mediacover/" + this.get('id') + "/fanart.jpg";
2013-04-23 02:07:21 +00:00
},
2013-03-31 21:45:16 +00:00
traktUrl : function () {
return "http://trakt.tv/show/" + this.get('titleSlug');
},
2013-06-08 22:23:17 +00:00
imdbUrl : function () {
return "http://imdb.com/title/" + this.get('imdbId');
},
isContinuing : function () {
return this.get('status') === 'continuing';
},
shortDate : function () {
var date = this.get('nextAiring');
if (!date) {
return '';
}
return Date.create(date).short();
},
2013-06-08 22:23:17 +00:00
route : function () {
return '/series/details/' + this.get('titleSlug');
2013-06-08 22:23:17 +00:00
//return '/series/details/' + this.get('id');
},
qualityProfile: function () {
var profile = qualityProfiles.get(this.get('qualityProfileId'));
if(profile){
return profile.toJSON();
}
return undefined;
}
},
2013-02-13 06:32:17 +00:00
defaults: {
episodeFileCount: 0,
episodeCount : 0,
2013-04-22 01:21:24 +00:00
isExisting : false,
2013-04-23 02:07:21 +00:00
status : 0
2013-02-13 06:32:17 +00:00
}
});
2013-02-13 06:32:17 +00:00
});