Show file sizes in listings

This commit is contained in:
2017-11-13 00:11:23 +01:00
parent db9dadbaa7
commit 674aff63cf
4 changed files with 27 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
import { helper } from '@ember/component/helper';
export default helper(function(fileSizeInBytes/*, options*/) {
if (fileSizeInBytes < 1024) {
return `${fileSizeInBytes} bytes`;
}
var i = -1;
var byteUnits = ['KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
do {
fileSizeInBytes = fileSizeInBytes / 1024;
i++;
} while (fileSizeInBytes > 1024);
return String(Math.max(fileSizeInBytes, 0.1).toFixed(1) + ' ' +byteUnits[i]);
});