2f7b266e6b
* MP-1674: replaced the logo and added dekstop only nav * MP-1677: borrowCapacity implemented into the SubAccount Nav * MP-1677: adjusted the SubAccount navigation * M1677: fixed the button and SearchInput component * MP-1674: fixed the NavLink component * MP-1674: fixed the SubAccount navigation * tidy: cleaning up the trading view * MP-1674: added withdraw and funding functions * MP-1674: worked on the AccountStats * MP-1671: modal work * MP-1647: improvised CreditAccount expander * tidy: fixed the page structure * MP-1758: finished the SearchInput layout * MP-1759: updated the semicircle graphs * MP-1759: SemiCircle to Gauge * fix: implemented animated numbers * tidy: refactor * MP-1759: added Tooltip to the Gauge * fix: replace animate={true} with animate * fix: fixed the Gauge timing * fix: updated the BorrowCapacity styles * fix: renamed SubAccount to Account * fix: Text should not be a button, Button should be * tidy: format * fix: Text no clicky * fix: replaced all the Text appearances with onClick
76 lines
1.6 KiB
TypeScript
76 lines
1.6 KiB
TypeScript
import classNames from 'classnames'
|
|
import React, { useEffect, useRef } from 'react'
|
|
import { animated, useSpring } from 'react-spring'
|
|
|
|
import { formatValue } from 'utils/formatters'
|
|
|
|
interface Props {
|
|
amount: number
|
|
animate?: boolean
|
|
className?: string
|
|
minDecimals?: number
|
|
maxDecimals?: number
|
|
thousandSeparator?: boolean
|
|
prefix?: boolean | string
|
|
suffix?: boolean | string
|
|
rounded?: boolean
|
|
abbreviated?: boolean
|
|
}
|
|
|
|
const FormattedNumber = ({
|
|
amount,
|
|
animate = false,
|
|
className,
|
|
minDecimals = 2,
|
|
maxDecimals = 2,
|
|
thousandSeparator = true,
|
|
prefix = false,
|
|
suffix = false,
|
|
rounded = false,
|
|
abbreviated = false,
|
|
}: Props) => {
|
|
const prevAmountRef = useRef<number>(0)
|
|
|
|
useEffect(() => {
|
|
if (prevAmountRef.current !== amount) prevAmountRef.current = amount
|
|
}, [amount])
|
|
|
|
const springAmount = useSpring({
|
|
number: amount,
|
|
from: { number: prevAmountRef.current },
|
|
config: { duration: 1000 },
|
|
})
|
|
|
|
return (prevAmountRef.current === amount && amount === 0) || !animate ? (
|
|
<span className={classNames('number', className)}>
|
|
{formatValue(
|
|
amount,
|
|
minDecimals,
|
|
maxDecimals,
|
|
thousandSeparator,
|
|
prefix,
|
|
suffix,
|
|
rounded,
|
|
abbreviated,
|
|
)}
|
|
</span>
|
|
) : (
|
|
<animated.span className={classNames('number', className)}>
|
|
{springAmount.number.to((num) =>
|
|
formatValue(
|
|
num,
|
|
minDecimals,
|
|
maxDecimals,
|
|
thousandSeparator,
|
|
prefix,
|
|
suffix,
|
|
rounded,
|
|
abbreviated,
|
|
),
|
|
)}
|
|
</animated.span>
|
|
)
|
|
}
|
|
|
|
export default React.memo(FormattedNumber)
|