Function formatRangeOrPercentage

  • Formats a detail string with optional range, percentage, prefix, and suffix. This function allows customization in formatting a detail string based on the specified options, including support for range, percentage, or additional prefix/suffix customization.

    • If formatAsRangeOrAmount is set to RangeOrAmountEnum.Range, it formats as a range using minPercent and maxPercent.
    • If formatAsRangeOrAmount is set to RangeOrAmountEnum.Amount, it formats as a single percentage value.
    • If formatAsRangeOrAmount is set to RangeOrAmountEnum.None, only details is returned.
    • Optional parentheses are added around the range or percentage if percentagePrefix or percentageSuffix is specified.

    Formatting Examples:

    1. Range with Prefix and Suffix

      • Input: { details: "Usage", formatAsRangeOrAmount: RangeOrAmountEnum.Range, percentagePrefix: PercentagePrefixEnum.UpTo, minPercent: 10, maxPercent: 20, percentageSuffix: "% or higher" }
      • Output: (up to 10 - 20% or higher) Usage
    2. Single Percentage Amount

      • Input: { details: "Rate", formatAsRangeOrAmount: RangeOrAmountEnum.Amount, percent: 50 }
      • Output: (50%) Rate
    3. No Range or Amount Formatting (Details Only)

      • Input: { details: "Performance", formatAsRangeOrAmount: RangeOrAmountEnum.None }
      • Output: Performance
    4. Range without Prefix or Suffix

      • Input: { details: "Range Detail", formatAsRangeOrAmount: RangeOrAmountEnum.Range, minPercent: 15, maxPercent: 25 }
      • Output: (15 - 25%) Range Detail
    5. Amount with Prefix Only

      • Input: { details: "Limit", formatAsRangeOrAmount: RangeOrAmountEnum.Amount, percent: 75, percentagePrefix: PercentagePrefixEnum.About }
      • Output: (about 75%) Limit

    Parameters

    • options: FormatDetailOptions

      Options to control the detail formatting.

    Returns string

    A formatted string based on the specified range, percentage, prefix, suffix, and details.

Generated using TypeDoc