File

src/pipes/thousands/thousands.pipe.ts

Description

A custom Angular pipe for formatting numbers with thousand suffixes (e.g., K, M, G).

Example :
// In your component template:
// Assuming 'value' is a number.
{{ value | thousandSuff:'round':2 }}

Metadata

Methods

transform
transform(input: any, round?: any, toFixedArgs?: number)

Transforms a number into a formatted string with thousand suffixes (e.g., K, M, G).

Parameters :
Name Type Optional Description
input any No
  • The number to format.
round any Yes
  • Optional. Specify 'round' to round the number to the nearest whole number.
toFixedArgs number Yes
  • Optional. The number of decimal places to round to.
Returns : string
  • The formatted number with suffix.
import { Pipe, PipeTransform } from '@angular/core'

/**
 * A custom Angular pipe for formatting numbers with thousand suffixes (e.g., K, M, G).
 *
 * @example
 * // In your component template:
 * // Assuming 'value' is a number.
 * {{ value | thousandSuff:'round':2 }}
 *
 * @param {number} input - The number to format.
 * @param {string} round - Optional. Specify 'round' to round the number to the nearest whole number.
 * @param {number} toFixedArgs - Optional. The number of decimal places to round to.
 * @returns {string} - The formatted number with suffix.
 */

@Pipe({ name: 'thousandSuff' })
export class ThousandSuffixesPipe implements PipeTransform {
  /**
   * Transforms a number into a formatted string with thousand suffixes (e.g., K, M, G).
   *
   * @param {number} input - The number to format.
   * @param {string} round - Optional. Specify 'round' to round the number to the nearest whole number.
   * @param {number} toFixedArgs - Optional. The number of decimal places to round to.
   * @returns {string} - The formatted number with suffix.
   */
  transform(input: any, round?: any, toFixedArgs?: number): string {
    const suffixes = ['k', 'M', 'G', 'T', 'P', 'E']

    // Handle special cases
    if (Number.isNaN(input) || input === null || (!input && input !== 0)) {
      return '∞'
    }

    // If input is less than 1000, return it as is (optionally rounded)
    if (input < 1000) {
      if (round) {
        return String(Math.round(input))
      }
      return String(input)
    }

    // Calculate the appropriate suffix and format the number
    const exp = Math.floor(Math.log(input) / Math.log(1000))
    return (input / Math.pow(1000, exp)).toFixed(toFixedArgs) + suffixes[exp - 1]
  }
}

results matching ""

    No results matching ""