1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-12 22:12:38 +01:00
Radarr/UI/Shared/FormatHelpers.js

39 lines
974 B
JavaScript
Raw Normal View History

2013-06-22 08:24:24 +02:00
'use strict';
2013-06-07 04:39:12 +02:00
define(
[
'sugar'
], {
2013-06-25 06:43:16 +02:00
Bytes: function (sourceSize) {
var size = Number(sourceSize);
return size.bytes(1);
},
2013-06-07 04:39:12 +02:00
DateHelper: function (sourceDate) {
if (!sourceDate) {
return '';
}
2013-06-07 04:39:12 +02:00
var date = Date.create(sourceDate);
2013-06-07 04:39:12 +02:00
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}');
}
2013-06-07 04:39:12 +02:00
if (date.isAfter(Date.create().addDays(6))) {
return date.relative().replace(' from now', '');
}
2013-06-21 03:43:58 +02:00
return date.format('{MM}/{dd}/{yyyy}');
}
});