This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite AnimatedNumber component with React hooks (mastodon#24559)
- Loading branch information
1 parent
85b1b45
commit ab740f4
Showing
2 changed files
with
58 additions
and
76 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import React, { useCallback, useState } from 'react'; | ||
import ShortNumber from './short_number'; | ||
import { TransitionMotion, spring } from 'react-motion'; | ||
import { reduceMotion } from '../initial_state'; | ||
|
||
const obfuscatedCount = (count: number) => { | ||
if (count < 0) { | ||
return 0; | ||
} else if (count <= 1) { | ||
return count; | ||
} else { | ||
return '1+'; | ||
} | ||
}; | ||
|
||
type Props = { | ||
value: number; | ||
obfuscate?: boolean; | ||
} | ||
export const AnimatedNumber: React.FC<Props> = ({ | ||
value, | ||
obfuscate, | ||
})=> { | ||
const [previousValue, setPreviousValue] = useState(value); | ||
const [direction, setDirection] = useState<1|-1>(1); | ||
|
||
if (previousValue !== value) { | ||
setPreviousValue(value); | ||
setDirection(value > previousValue ? 1 : -1); | ||
} | ||
|
||
const willEnter = useCallback(() => ({ y: -1 * direction }), [direction]); | ||
const willLeave = useCallback(() => ({ y: spring(1 * direction, { damping: 35, stiffness: 400 }) }), [direction]); | ||
|
||
if (reduceMotion) { | ||
return obfuscate ? <>{obfuscatedCount(value)}</> : <ShortNumber value={value} />; | ||
} | ||
|
||
const styles = [{ | ||
key: `${value}`, | ||
data: value, | ||
style: { y: spring(0, { damping: 35, stiffness: 400 }) }, | ||
}]; | ||
|
||
return ( | ||
<TransitionMotion styles={styles} willEnter={willEnter} willLeave={willLeave}> | ||
{items => ( | ||
<span className='animated-number'> | ||
{items.map(({ key, data, style }) => ( | ||
<span key={key} style={{ position: (direction * style.y) > 0 ? 'absolute' : 'static', transform: `translateY(${style.y * 100}%)` }}>{obfuscate ? obfuscatedCount(data) : <ShortNumber value={data} />}</span> | ||
))} | ||
</span> | ||
)} | ||
</TransitionMotion> | ||
); | ||
}; | ||
|
||
export default AnimatedNumber; |