Lidarr/UI/Series/EpisodeModel.js

55 lines
1.7 KiB
JavaScript
Raw Normal View History

"use strict";
2013-03-03 22:42:26 +00:00
define(['app'], function () {
NzbDrone.Series.EpisodeModel = Backbone.Model.extend({
2013-03-02 19:13:23 +00:00
mutators: {
2013-05-01 00:25:33 +00:00
bestDateString : function () {
return bestDateString(this.get('airDate'));
},
paddedEpisodeNumber: function () {
2013-05-10 22:33:04 +00:00
return this.get('episodeNumber').pad(2);
2013-05-01 01:54:15 +00:00
},
day : function () {
return Date.create(this.get('airDate')).format('{dd}');
},
month : function () {
return Date.create(this.get('airDate')).format('{MON}');
},
startTime : function () {
var start = Date.create(this.get('airDate'));
if (start.format('{mm}') === '00') {
return start.format('{h}{tt}');
}
return start.format('{h}.{mm}{tt}');
},
statusLevel : function () {
var status = this.get('status');
var currentTime = Date.create();
var start = Date.create(this.get('start'));
var end = Date.create(this.get('end'));
if (currentTime.isBetween(start, end)) {
return 'warning';
}
if (start.isBefore(currentTime) || status === 'Missing') {
return 'danger';
}
if (status === 'Ready') {
return 'success';
}
return 'primary';
2013-05-01 00:25:33 +00:00
}
2013-03-02 19:13:23 +00:00
},
defaults: {
2013-05-01 01:54:15 +00:00
seasonNumber: 0,
status: 0
2013-03-02 19:13:23 +00:00
}
});
});