Lidarr/UI/Series/SeriesModel.js

88 lines
2.5 KiB
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'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
},
2013-04-04 04:38:51 +00:00
poster : function () {
var poster = _.find(this.get('images'), function (image) {
return image.coverType === 'poster';
});
if (poster) {
return poster.url;
}
return undefined;
2013-04-04 04:38:51 +00:00
},
2013-04-23 02:07:21 +00:00
fanArt : function () {
var poster = _.find(this.get('images'), function (image) {
2013-06-14 00:39:53 +00:00
return image.coverType === 'fanart';
});
if (poster) {
return poster.url;
}
return undefined;
2013-04-23 02:07:21 +00:00
},
2013-03-31 21:45:16 +00:00
traktUrl : function () {
2013-06-22 06:24:24 +00:00
return 'http://trakt.tv/show/' + this.get('titleSlug');
},
2013-06-08 22:23:17 +00:00
imdbUrl : function () {
2013-06-22 06:24:24 +00:00
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
return NzbDrone.Series.SeriesModel;
});