1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/UI/Series/SeriesModel.js

66 lines
2.1 KiB
JavaScript
Raw Normal View History

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