mirror of https://github.com/Sonarr/Sonarr
36 lines
957 B
JavaScript
36 lines
957 B
JavaScript
|
"use strict";
|
||
|
|
||
|
define(['app'], function () {
|
||
|
NzbDrone.Shared.FormatHelpers.FileSizeHelper = function (sourceSize) {
|
||
|
var size = Number(sourceSize);
|
||
|
this.$el.html(size.bytes(1));
|
||
|
return this;
|
||
|
};
|
||
|
|
||
|
NzbDrone.Shared.FormatHelpers.DateHelper = function (sourceDate) {
|
||
|
if (!sourceDate) {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
var date = Date.create(sourceDate);
|
||
|
|
||
|
if (date.isYesterday()) {
|
||
|
return 'Yesterday';
|
||
|
}
|
||
|
if (date.isToday()) {
|
||
|
return 'Today';
|
||
|
}
|
||
|
if (date.isTomorrow()) {
|
||
|
return 'Tomorrow';
|
||
|
}
|
||
|
if (date.isAfter(Date.create('tomorrow')) && date.isBefore(Date.create().addDays(7))) {
|
||
|
return date.format('{Weekday}');
|
||
|
}
|
||
|
|
||
|
if (date.isAfter(Date.create().addDays(6))) {
|
||
|
return date.relative().replace(' from now', '');
|
||
|
}
|
||
|
|
||
|
return date.format('{MM}/{dd}/{yyyy}');
|
||
|
};
|
||
|
});
|