-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite AvatarOverlay component with React hooks (#24543)
- Loading branch information
1 parent
cf3fa1e
commit 9f8d346
Showing
3 changed files
with
53 additions
and
55 deletions.
There are no files selected for viewing
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
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,51 @@ | ||
import React from 'react'; | ||
import type { Account } from '../../types/resources'; | ||
import { useHovering } from '../../hooks/useHovering'; | ||
import { autoPlayGif } from '../initial_state'; | ||
|
||
type Props = { | ||
account: Account; | ||
friend: Account; | ||
size?: number; | ||
baseSize?: number; | ||
overlaySize?: number; | ||
}; | ||
|
||
export const AvatarOverlay: React.FC<Props> = ({ | ||
account, | ||
friend, | ||
size = 46, | ||
baseSize = 36, | ||
overlaySize = 24, | ||
}) => { | ||
const { hovering, handleMouseEnter, handleMouseLeave } = useHovering(autoPlayGif); | ||
const accountSrc = hovering ? account?.get('avatar') : account?.get('avatar_static'); | ||
const friendSrc = hovering ? friend?.get('avatar') : friend?.get('avatar_static'); | ||
|
||
return ( | ||
<div | ||
className='account__avatar-overlay' style={{ width: size, height: size }} | ||
onMouseEnter={handleMouseEnter} | ||
onMouseLeave={handleMouseLeave} | ||
> | ||
<div className='account__avatar-overlay-base'> | ||
<div | ||
className='account__avatar' | ||
style={{ width: `${baseSize}px`, height: `${baseSize}px` }} | ||
> | ||
{accountSrc && <img src={accountSrc} alt={account?.get('acct')} />} | ||
</div> | ||
</div> | ||
<div className='account__avatar-overlay-overlay'> | ||
<div | ||
className='account__avatar' | ||
style={{ width: `${overlaySize}px`, height: `${overlaySize}px` }} | ||
> | ||
{friendSrc && <img src={friendSrc} alt={friend?.get('acct')} />} | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default AvatarOverlay; |