2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-24 23:41:59 +00: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 18:25:06 +00:00
|
|
|
return Date.create(this.get('airDate')).format('{Mon}');
|
2013-06-24 23:41:59 +00:00
|
|
|
},
|
|
|
|
startTime : function () {
|
|
|
|
var start = Date.create(this.get('airDate'));
|
2013-03-02 19:13:23 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
if (start.format('{mm}') === '00') {
|
|
|
|
return start.format('{h}{tt}');
|
|
|
|
}
|
2013-05-01 01:54:15 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
return start.format('{h}.{mm}{tt}');
|
|
|
|
},
|
|
|
|
end : function () {
|
2013-05-01 01:54:15 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
if (this.has('series')) {
|
|
|
|
var start = Date.create(this.get('airDate'));
|
2013-07-08 06:39:19 +00:00
|
|
|
var runtime = this.get('series').get('runtime');
|
2013-06-05 01:04:34 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
return start.addMinutes(runtime);
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
},
|
|
|
|
statusLevel : function () {
|
2013-07-08 06:39:19 +00:00
|
|
|
var hasFile = this.get('hasFile');
|
2013-06-24 23:41:59 +00:00
|
|
|
var currentTime = Date.create();
|
2013-06-05 01:04:34 +00:00
|
|
|
var start = Date.create(this.get('airDate'));
|
2013-06-24 23:41:59 +00:00
|
|
|
var end = Date.create(this.get('end'));
|
2013-06-04 06:10:41 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
if (currentTime.isBetween(start, end)) {
|
|
|
|
return 'warning';
|
|
|
|
}
|
2013-05-01 01:54:15 +00:00
|
|
|
|
2013-07-08 06:39:19 +00:00
|
|
|
if (start.isBefore(currentTime) && !hasFile) {
|
2013-06-24 23:41:59 +00:00
|
|
|
return 'danger';
|
|
|
|
}
|
2013-05-01 01:54:15 +00:00
|
|
|
|
2013-07-08 06:39:19 +00:00
|
|
|
if (hasFile) {
|
2013-06-24 23:41:59 +00:00
|
|
|
return 'success';
|
|
|
|
}
|
2013-05-01 01:54:15 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
return 'primary';
|
|
|
|
},
|
|
|
|
hasAired : function () {
|
|
|
|
return Date.create(this.get('airDate')).isBefore(Date.create());
|
|
|
|
}
|
2013-05-20 21:06:01 +00:00
|
|
|
},
|
2013-03-02 19:13:23 +00:00
|
|
|
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
parse: function (model) {
|
|
|
|
model.series = new SeriesModel(model.series);
|
|
|
|
|
|
|
|
return model;
|
|
|
|
},
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
toJSON: function () {
|
|
|
|
var json = _.clone(this.attributes);
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00: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 05:27:20 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
if (this.has('series')) {
|
|
|
|
json.series = this.get('series').toJSON();
|
2013-06-10 05:27:20 +00:00
|
|
|
}
|
2013-06-24 23:41:59 +00:00
|
|
|
return json;
|
|
|
|
},
|
2013-06-10 02:10:15 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
defaults: {
|
|
|
|
seasonNumber: 0,
|
2013-06-29 00:35:21 +00:00
|
|
|
status : 0
|
2013-06-24 23:41:59 +00:00
|
|
|
}
|
|
|
|
});
|
2013-03-02 19:13:23 +00:00
|
|
|
});
|