1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Series/EpisodeModel.js

40 lines
1.0 KiB
JavaScript
Raw Normal View History

2013-06-22 09:24:24 +03:00
'use strict';
define(
[
'backbone',
'moment',
'Series/SeriesModel'
], function (Backbone, Moment, SeriesModel) {
return Backbone.Model.extend({
2013-07-17 03:41:04 +03:00
initialize: function () {
if (this.has('series')) {
2013-07-24 08:28:06 +03:00
var start = Moment(this.get('airDateUtc'));
2013-07-17 03:41:04 +03:00
var runtime = this.get('series').get('runtime');
2013-05-01 04:54:15 +03:00
this.set('end', start.add('minutes', runtime));
}
2013-05-21 00:06:01 +03:00
},
2013-03-02 22:13:23 +03:00
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;
},
2013-06-10 05:10:15 +03:00
defaults: {
seasonNumber: 0,
status : 0
}
});
2013-03-02 22:13:23 +03:00
});