mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Series.EpisodeModel = Backbone.Model.extend({
|
|
|
|
mutators: {
|
|
bestDateString : function () {
|
|
return bestDateString(this.get('airDate'));
|
|
},
|
|
paddedEpisodeNumber: function () {
|
|
return this.get('episodeNumber');
|
|
},
|
|
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';
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
seasonNumber: 0,
|
|
status: 0
|
|
}
|
|
});
|
|
});
|