1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Shared/FormatHelpers.js
Mark McDowall 207d9c256d sugar kills (removed sugar.js)
Relative dates for next airing on posters and list (series)
History time shows real time on tooltip
2013-07-16 23:23:44 -07:00

39 lines
1.0 KiB
JavaScript

'use strict';
define(
[
'moment',
'filesize'
], function (Moment, Filesize) {
return {
Bytes: function (sourceSize) {
var size = Number(sourceSize);
return Filesize(size, 1, false);
},
DateHelper: function (sourceDate) {
if (!sourceDate) {
return '';
}
var date = Moment(sourceDate);
if (date.isAfter(Moment().add('days', 6))) {
return date.fromNow(true);
}
//TODO: It would be nice to not have to hack this...
var calendarDate = date.calendar();
return calendarDate.substring(0, calendarDate.indexOf(' at '));
},
pad: function(n, width, z) {
z = z || '0';
n = n + '';
return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
}
}
});