mirror of https://github.com/lidarr/Lidarr
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'moment',
|
|
'Series/SeriesModel'
|
|
], function (Backbone, Moment, SeriesModel) {
|
|
return Backbone.Model.extend({
|
|
|
|
initialize: function () {
|
|
if (this.has('series')) {
|
|
var start = Moment(this.get('airDate'));
|
|
var runtime = this.get('series').get('runtime');
|
|
|
|
this.set('end', start.add('minutes', runtime));
|
|
}
|
|
},
|
|
|
|
parse: function (model) {
|
|
model.series = new SeriesModel(model.series);
|
|
|
|
return model;
|
|
},
|
|
|
|
toJSON: function () {
|
|
var json = _.clone(this.attributes);
|
|
|
|
if (this.has('series')) {
|
|
json.series = this.get('series').toJSON();
|
|
}
|
|
return json;
|
|
},
|
|
|
|
defaults: {
|
|
seasonNumber: 0,
|
|
status : 0
|
|
}
|
|
});
|
|
});
|