-
-
Save msteini82/6b77f92feda1f6f8286bc1bc7e6fd21b to your computer and use it in GitHub Desktop.
Angular2 + TypeScript file size Pipe/Filter. Convert bytes into largest possible unit. e.g. 1024 => 1 KB - Using standard decimal pipe to convert number to local format.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Pipe, PipeTransform, LOCALE_ID, Inject } from '@angular/core'; | |
import {DecimalPipe} from '@angular/common'; | |
/* | |
* Convert bytes into largest possible unit. | |
* Takes an precision argument that defaults to 2. | |
* Usage: | |
* bytes | fileSize:precision | |
* Example: | |
* {{ 1024 | fileSize}} | |
* formats to: 1 KB | |
*/ | |
@Pipe({ | |
name: 'filesize' | |
}) | |
export class FilesizePipe implements PipeTransform { | |
deciPipe: DecimalPipe; | |
private units = [ | |
'Bytes', | |
'KB', | |
'MB', | |
'GB', | |
'TB', | |
'PB' | |
]; | |
constructor(@Inject(LOCALE_ID) localeId) { | |
this.deciPipe = new DecimalPipe(localeId); | |
} | |
transform(bytes: number = 0, precision: number = 2 ): string { | |
if ( isNaN( parseFloat( String(bytes) )) || ! isFinite( bytes ) ) { return '?'; } | |
let unit = 0; | |
while ( bytes >= 1024 ) { | |
bytes /= 1024; | |
unit ++; | |
} | |
if (unit === 0) { | |
precision = 0; | |
} | |
return this.deciPipe.transform(bytes, '1.1-' + precision) + ' ' + this.units[ unit ]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Error: if bytes < 1024 return none
Solution :
return bytes >= 1024 ? this.deciPipe.transform(bytes, '1.1-' + precision) + ' ' + this.units[ unit ] : bytes + ' ' + this.units[ unit ];