Radarr/UI/Series/SeriesModel.js

61 lines
1.9 KiB
JavaScript
Raw Normal View History

"use strict";
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 () {
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');
},
isContinuing : function () {
return this.get('status') === 'continuing';
},
shortDate : function () {
var date = this.get('nextAiring');
if (!date) {
return '';
}
return Date.create(date).short();
}
},
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-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
});