More precise format byte with GB

This commit is contained in:
Chocobozzz 2022-06-23 10:45:28 +02:00
parent 20886f4bf9
commit 408fd5e424
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 6 additions and 8 deletions

View File

@ -4,17 +4,15 @@ function toTitleCase (str: string) {
return str.charAt(0).toUpperCase() + str.slice(1) return str.charAt(0).toUpperCase() + str.slice(1)
} }
// https://github.com/danrevah/ngx-pipes/blob/master/src/pipes/math/bytes.ts const dictionaryBytes = [
// Don't import all Angular stuff, just copy the code with shame { max: 1024, type: 'B', decimals: 0 },
const dictionaryBytes: Array<{max: number, type: string}> = [ { max: 1048576, type: 'KB', decimals: 0 },
{ max: 1024, type: 'B' }, { max: 1073741824, type: 'MB', decimals: 0 },
{ max: 1048576, type: 'KB' }, { max: 1.0995116e12, type: 'GB', decimals: 1 }
{ max: 1073741824, type: 'MB' },
{ max: 1.0995116e12, type: 'GB' }
] ]
function bytes (value: number) { function bytes (value: number) {
const format = dictionaryBytes.find(d => value < d.max) || dictionaryBytes[dictionaryBytes.length - 1] const format = dictionaryBytes.find(d => value < d.max) || dictionaryBytes[dictionaryBytes.length - 1]
const calc = Math.floor(value / (format.max / 1024)).toString() const calc = (value / (format.max / 1024)).toFixed(format.decimals)
return [ calc, format.type ] return [ calc, format.type ]
} }