2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-07 02:39:12 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
define(
|
|
|
|
[
|
2013-07-17 06:23:44 +00:00
|
|
|
'moment',
|
|
|
|
'filesize'
|
|
|
|
], function (Moment, Filesize) {
|
2013-06-07 02:39:12 +00:00
|
|
|
|
2013-07-17 06:23:44 +00:00
|
|
|
return {
|
2013-06-07 02:39:12 +00:00
|
|
|
|
2013-08-04 01:27:12 +00:00
|
|
|
bytes: function (sourceSize) {
|
2013-07-17 06:23:44 +00:00
|
|
|
var size = Number(sourceSize);
|
|
|
|
return Filesize(size, 1, false);
|
|
|
|
},
|
2013-06-07 02:39:12 +00:00
|
|
|
|
2013-08-04 01:27:12 +00:00
|
|
|
dateHelper: function (sourceDate) {
|
2013-07-17 06:23:44 +00:00
|
|
|
if (!sourceDate) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
var date = Moment(sourceDate);
|
|
|
|
|
2013-07-18 02:37:39 +00:00
|
|
|
var calendarDate = date.calendar();
|
|
|
|
|
|
|
|
//TODO: It would be nice to not have to hack this...
|
|
|
|
var strippedCalendarDate = calendarDate.substring(0, calendarDate.indexOf(' at '));
|
|
|
|
|
|
|
|
if (strippedCalendarDate){
|
|
|
|
return strippedCalendarDate;
|
2013-07-17 06:23:44 +00:00
|
|
|
}
|
2013-06-21 01:43:58 +00:00
|
|
|
|
2013-07-18 02:37:39 +00:00
|
|
|
if (date.isAfter(Moment())) {
|
|
|
|
return date.fromNow(true);
|
2013-07-18 00:28:33 +00:00
|
|
|
}
|
|
|
|
|
2013-07-20 01:21:13 +00:00
|
|
|
if (date.isBefore(Moment().add('years', -1))) {
|
|
|
|
return date.format('ll');
|
|
|
|
}
|
|
|
|
|
2013-07-18 02:37:39 +00:00
|
|
|
return date.fromNow();
|
2013-07-17 06:23:44 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
pad: function(n, width, z) {
|
|
|
|
z = z || '0';
|
|
|
|
n = n + '';
|
|
|
|
return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
|
2013-07-17 21:53:25 +00:00
|
|
|
},
|
|
|
|
|
2013-08-04 01:27:12 +00:00
|
|
|
number: function (input) {
|
2013-07-17 21:53:25 +00:00
|
|
|
if (!input) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return input.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
2013-07-17 06:23:44 +00:00
|
|
|
}
|
2013-06-24 23:41:59 +00:00
|
|
|
}
|
|
|
|
});
|