2013-06-22 08:24:24 +02:00
|
|
|
'use strict';
|
2013-06-25 01:41:59 +02:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'backbone',
|
|
|
|
'Series/SeriesModel'
|
|
|
|
], function (Backbone, SeriesModel) {
|
|
|
|
return Backbone.Model.extend({
|
|
|
|
|
|
|
|
mutators: {
|
|
|
|
paddedEpisodeNumber: function () {
|
|
|
|
return this.get('episodeNumber').pad(2);
|
|
|
|
},
|
|
|
|
day : function () {
|
|
|
|
return Date.create(this.get('airDate')).format('{dd}');
|
|
|
|
},
|
|
|
|
month : function () {
|
2013-07-01 20:25:06 +02:00
|
|
|
return Date.create(this.get('airDate')).format('{Mon}');
|
2013-06-25 01:41:59 +02:00
|
|
|
},
|
|
|
|
startTime : function () {
|
|
|
|
var start = Date.create(this.get('airDate'));
|
2013-03-02 20:13:23 +01:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
if (start.format('{mm}') === '00') {
|
|
|
|
return start.format('{h}{tt}');
|
|
|
|
}
|
2013-05-01 03:54:15 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
return start.format('{h}.{mm}{tt}');
|
|
|
|
},
|
|
|
|
end : function () {
|
2013-05-01 03:54:15 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
if (this.has('series')) {
|
|
|
|
var start = Date.create(this.get('airDate'));
|
2013-07-08 08:39:19 +02:00
|
|
|
var runtime = this.get('series').get('runtime');
|
2013-06-05 03:04:34 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
return start.addMinutes(runtime);
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
},
|
|
|
|
statusLevel : function () {
|
2013-07-08 08:39:19 +02:00
|
|
|
var hasFile = this.get('hasFile');
|
2013-06-25 01:41:59 +02:00
|
|
|
var currentTime = Date.create();
|
2013-06-05 03:04:34 +02:00
|
|
|
var start = Date.create(this.get('airDate'));
|
2013-06-25 01:41:59 +02:00
|
|
|
var end = Date.create(this.get('end'));
|
2013-06-04 08:10:41 +02:00
|
|
|
|
2013-07-08 08:39:19 +02:00
|
|
|
console.log(this.get('end'));
|
|
|
|
|
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
if (currentTime.isBetween(start, end)) {
|
|
|
|
return 'warning';
|
|
|
|
}
|
2013-05-01 03:54:15 +02:00
|
|
|
|
2013-07-08 08:39:19 +02:00
|
|
|
if (start.isBefore(currentTime) && !hasFile) {
|
2013-06-25 01:41:59 +02:00
|
|
|
return 'danger';
|
|
|
|
}
|
2013-05-01 03:54:15 +02:00
|
|
|
|
2013-07-08 08:39:19 +02:00
|
|
|
if (hasFile) {
|
2013-06-25 01:41:59 +02:00
|
|
|
return 'success';
|
|
|
|
}
|
2013-05-01 03:54:15 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
return 'primary';
|
|
|
|
},
|
|
|
|
hasAired : function () {
|
|
|
|
return Date.create(this.get('airDate')).isBefore(Date.create());
|
|
|
|
}
|
2013-05-20 23:06:01 +02:00
|
|
|
},
|
2013-03-02 20:13:23 +01:00
|
|
|
|
2013-06-09 22:51:32 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
parse: function (model) {
|
|
|
|
model.series = new SeriesModel(model.series);
|
|
|
|
|
|
|
|
return model;
|
|
|
|
},
|
2013-06-09 22:51:32 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
toJSON: function () {
|
|
|
|
var json = _.clone(this.attributes);
|
2013-06-09 22:51:32 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
_.each(this.mutators, _.bind(function (mutator, name) {
|
|
|
|
// check if we have some getter mutations
|
|
|
|
if (_.isObject(this.mutators[name]) === true && _.isFunction(this.mutators[name].get)) {
|
|
|
|
json[name] = _.bind(this.mutators[name].get, this)();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
json[name] = _.bind(this.mutators[name], this)();
|
|
|
|
}
|
|
|
|
}, this));
|
2013-06-10 07:27:20 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
if (this.has('series')) {
|
|
|
|
json.series = this.get('series').toJSON();
|
2013-06-10 07:27:20 +02:00
|
|
|
}
|
2013-06-25 01:41:59 +02:00
|
|
|
return json;
|
|
|
|
},
|
2013-06-10 04:10:15 +02:00
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
defaults: {
|
|
|
|
seasonNumber: 0,
|
2013-06-29 02:35:21 +02:00
|
|
|
status : 0
|
2013-06-25 01:41:59 +02:00
|
|
|
}
|
|
|
|
});
|
2013-03-02 20:13:23 +01:00
|
|
|
});
|