ee71260429
* MP-1660: base components * fix: removed lodash.isequal
112 lines
2.8 KiB
TypeScript
112 lines
2.8 KiB
TypeScript
export const formatWalletAddress = (address: string, substrLength = 6): string => {
|
|
if (address.length <= 10) {
|
|
return address
|
|
}
|
|
|
|
return `${address.slice(0, substrLength)}...${address.slice(
|
|
address.length - substrLength,
|
|
address.length,
|
|
)}`
|
|
}
|
|
|
|
export const formatCurrency = (value: string | number) => {
|
|
return Number(value).toLocaleString('en-US', {
|
|
style: 'currency',
|
|
currency: 'USD',
|
|
})
|
|
}
|
|
|
|
export const formatValue = (
|
|
amount: number | string,
|
|
minDecimals = 2,
|
|
maxDecimals = 2,
|
|
thousandSeparator = true,
|
|
prefix: boolean | string = false,
|
|
suffix: boolean | string = false,
|
|
rounded = false,
|
|
abbreviated = false,
|
|
): string => {
|
|
let numberOfZeroDecimals: number | null = null
|
|
if (typeof amount === 'string') {
|
|
const decimals = amount.split('.')[1] ?? null
|
|
if (decimals && Number(decimals) === 0) {
|
|
numberOfZeroDecimals = decimals.length
|
|
}
|
|
}
|
|
let convertedAmount: number | string = +amount || 0
|
|
|
|
const amountSuffix = abbreviated
|
|
? convertedAmount >= 1_000_000_000
|
|
? 'B'
|
|
: convertedAmount >= 1_000_000
|
|
? 'M'
|
|
: convertedAmount >= 1_000
|
|
? 'K'
|
|
: false
|
|
: ''
|
|
|
|
const amountPrefix = prefix
|
|
|
|
if (amountSuffix === 'B') {
|
|
convertedAmount = Number(amount) / 1_000_000_000
|
|
}
|
|
if (amountSuffix === 'M') {
|
|
convertedAmount = Number(amount) / 1_000_000
|
|
}
|
|
if (amountSuffix === 'K') {
|
|
convertedAmount = Number(amount) / 1_000
|
|
}
|
|
|
|
if (rounded) {
|
|
convertedAmount = convertedAmount.toFixed(maxDecimals)
|
|
} else {
|
|
const amountFractions = String(convertedAmount).split('.')
|
|
if (maxDecimals > 0) {
|
|
if (typeof amountFractions[1] !== 'undefined') {
|
|
if (amountFractions[1].length >= maxDecimals) {
|
|
convertedAmount = `${amountFractions[0]}.${amountFractions[1].substr(0, maxDecimals)}`
|
|
}
|
|
if (amountFractions[1].length < minDecimals) {
|
|
convertedAmount = `${amountFractions[0]}.${amountFractions[1].padEnd(minDecimals, '0')}`
|
|
}
|
|
}
|
|
} else {
|
|
convertedAmount = amountFractions[0]
|
|
}
|
|
}
|
|
|
|
if (thousandSeparator) {
|
|
convertedAmount = Number(convertedAmount).toLocaleString('en', {
|
|
useGrouping: true,
|
|
minimumFractionDigits: minDecimals,
|
|
maximumFractionDigits: maxDecimals,
|
|
})
|
|
}
|
|
|
|
let returnValue = ''
|
|
if (amountPrefix) {
|
|
returnValue += amountPrefix
|
|
}
|
|
|
|
returnValue += convertedAmount
|
|
|
|
// Used to allow for numbers like 1.0 or 3.00 (otherwise impossible with string to number conversion)
|
|
if (numberOfZeroDecimals) {
|
|
if (numberOfZeroDecimals < maxDecimals) {
|
|
returnValue = Number(returnValue).toFixed(numberOfZeroDecimals)
|
|
} else {
|
|
returnValue = Number(returnValue).toFixed(maxDecimals)
|
|
}
|
|
}
|
|
|
|
if (amountSuffix) {
|
|
returnValue += amountSuffix
|
|
}
|
|
|
|
if (suffix) {
|
|
returnValue += suffix
|
|
}
|
|
|
|
return returnValue
|
|
}
|