open-nomad/ui/app/helpers/format-bytes.js

25 lines
538 B
JavaScript
Raw Normal View History

import Helper from '@ember/component/helper';
2017-10-17 01:45:07 +00:00
const UNITS = ['Bytes', 'KiB', 'MiB'];
/**
* Bytes Formatter
*
* Usage: {{format-bytes bytes}}
*
* Outputs the bytes reduced to the largest supported unit size for which
* bytes is larger than one.
*/
export function formatBytes([bytes]) {
2017-10-20 00:14:55 +00:00
bytes || (bytes = 0);
2017-10-17 01:45:07 +00:00
let unitIndex = 0;
while (bytes >= 1024 && unitIndex < UNITS.length - 1) {
2017-10-17 01:45:07 +00:00
bytes /= 1024;
unitIndex++;
}
return `${Math.floor(bytes)} ${UNITS[unitIndex]}`;
2017-10-17 01:45:07 +00:00
}
export default Helper.helper(formatBytes);