Skip to content

Commit 03cd359

Browse files
committedJan 2, 2025·
fix to @ui/util/formatAndAbbreviateAsCurrency
1 parent f507073 commit 03cd359

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed
 

‎pkg/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hanzo/ui",
3-
"version": "4.4.0",
3+
"version": "4.4.1",
44
"description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org/",

‎pkg/ui/util/format-and-abbreviate-as-currency.ts

+19-13
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ interface FormatThreshold {
55
use: QuantityAbbrSymbol
66
}
77

8+
const usdFormatter = Intl.NumberFormat('en-US', {
9+
style: 'currency',
10+
currency: 'USD',
11+
minimumFractionDigits: 2,
12+
})
13+
14+
const formatAsUSCurrency = (n: number) => {
15+
let result = usdFormatter.format(n)
16+
return result.endsWith('.00') ? result.slice(0, -3) : result
17+
}
18+
819
const formatAndAbbreviateAsCurrency = (
920
n: number | null,
1021
thresholds: FormatThreshold[] = [{
@@ -31,12 +42,7 @@ const formatAndAbbreviateAsCurrency = (
3142
}
3243
}
3344

34-
const usdFormatter = Intl.NumberFormat('en-US', {
35-
style: 'currency',
36-
currency: 'USD',
37-
minimumFractionDigits: 0
38-
})
39-
const formatted = usdFormatter.format(n)
45+
const formatted = formatAsUSCurrency(n)
4046

4147
if (n < thresholds[0].from) {
4248
return {
@@ -49,9 +55,9 @@ const formatAndAbbreviateAsCurrency = (
4955
// Get operative FormatThreshold pair...
5056
let threshold: FormatThreshold
5157
for (
52-
let i = 0, threshold = thresholds[0];
53-
i < thresholds.length, n >= thresholds[i].from;
54-
i++
58+
let i = 0;
59+
i < thresholds.length && n >= thresholds[i].from;
60+
threshold = thresholds[i], i++
5561
) {}
5662

5763
// Build up units array to all units
@@ -67,18 +73,18 @@ const formatAndAbbreviateAsCurrency = (
6773

6874
const abbreviator = new Abbr(units)
6975

70-
// Use thresholdFrom as a guide to how many chars are available
76+
// Use threshold.from as a guide to how many chars are available:
7177
// first digit + comma = 2
7278
// Possible trailing cents: '.xx'.length = 3
7379
// 3 - 2 = 1
74-
const charsAvail = usdFormatter.format(threshold!.from).length + 1
80+
const charsAvail = formatAsUSCurrency(threshold!.from).length + 1
7581
const abbr = abbreviator.abbreviate(n, charsAvail) // arbitrary, but good approx
7682
const numStr = abbr.slice(0, -1)
7783
const abbreviation = abbr.slice(-1)
7884
const numerical = parseFloat(numStr)
7985

8086
const integral = Math.floor(numerical)
81-
const integralString = usdFormatter.format(integral)
87+
const integralString = formatAsUSCurrency(integral)
8288
const commas = integralString.split(',').length - 1
8389

8490
// minus abbr, dec point, dollar sign, and roundingAdds / tilda,
@@ -89,7 +95,7 @@ const formatAndAbbreviateAsCurrency = (
8995
// remove trailing zeros, if any
9096
const roundedNumerical = parseFloat(roundedString)
9197
const roundedIntegral = Math.trunc(roundedNumerical)
92-
const roundedIntegralString = usdFormatter.format(roundedIntegral)
98+
const roundedIntegralString = formatAsUSCurrency(roundedIntegral)
9399

94100
let decimalPortion = roundedNumerical - roundedIntegral
95101
let result

0 commit comments

Comments
 (0)
Please sign in to comment.