forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Glitch] Update
Avatar
, AvatarComposite
, and AvatarOverlay
comp…
…onents Various ports including 8dfe517, d1de7fb and 9f8d346. Co-Authored-By: Eugen Rochko <[email protected]> Co-Authored-By: fusagiko / takayamaki <[email protected]>
- Loading branch information
1 parent
c0e5629
commit 711184f
Showing
8 changed files
with
93 additions
and
94 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 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
39 changes: 0 additions & 39 deletions
39
app/javascript/flavours/glitch/components/avatar_overlay.jsx
This file was deleted.
Oops, something went wrong.
56 changes: 56 additions & 0 deletions
56
app/javascript/flavours/glitch/components/avatar_overlay.tsx
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,56 @@ | ||
import { useHovering } from '../hooks/useHovering'; | ||
import { autoPlayGif } from '../initial_state'; | ||
import type { Account } from '../types/resources'; | ||
|
||
interface Props { | ||
account: Account | undefined; // FIXME: remove `undefined` once we know for sure its always there | ||
friend: Account | undefined; // FIXME: remove `undefined` once we know for sure its always there | ||
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` }} | ||
data-avatar-of={`@${account.get('acct')}`} | ||
> | ||
{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` }} | ||
data-avatar-of={`@${friend.get('acct')}`} | ||
> | ||
{friendSrc && <img src={friendSrc} alt={friend?.get('acct')} />} | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; |
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 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 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 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