forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Glitch] Add ability to view alt text by clicking the ALT badge in we…
…b UI Port a04433f to glitch-soc Signed-off-by: Claire <[email protected]>
- Loading branch information
1 parent
9b5f073
commit 3ac8ce3
Showing
3 changed files
with
81 additions
and
10 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
app/javascript/flavours/glitch/components/alt_text_badge.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,67 @@ | ||
import { useState, useCallback, useRef } from 'react'; | ||
|
||
import { FormattedMessage } from 'react-intl'; | ||
|
||
import Overlay from 'react-overlays/Overlay'; | ||
import type { | ||
OffsetValue, | ||
UsePopperOptions, | ||
} from 'react-overlays/esm/usePopper'; | ||
|
||
const offset = [0, 4] as OffsetValue; | ||
const popperConfig = { strategy: 'fixed' } as UsePopperOptions; | ||
|
||
export const AltTextBadge: React.FC<{ | ||
description: string; | ||
}> = ({ description }) => { | ||
const anchorRef = useRef<HTMLButtonElement>(null); | ||
const [open, setOpen] = useState(false); | ||
|
||
const handleClick = useCallback(() => { | ||
setOpen((v) => !v); | ||
}, [setOpen]); | ||
|
||
const handleClose = useCallback(() => { | ||
setOpen(false); | ||
}, [setOpen]); | ||
|
||
return ( | ||
<> | ||
<button | ||
ref={anchorRef} | ||
className='media-gallery__alt__label' | ||
onClick={handleClick} | ||
> | ||
ALT | ||
</button> | ||
|
||
<Overlay | ||
rootClose | ||
onHide={handleClose} | ||
show={open} | ||
target={anchorRef.current} | ||
placement='top-end' | ||
flip | ||
offset={offset} | ||
popperConfig={popperConfig} | ||
> | ||
{({ props }) => ( | ||
<div {...props} className='hover-card-controller'> | ||
<div | ||
className='media-gallery__alt__popover dropdown-animation' | ||
role='tooltip' | ||
> | ||
<h4> | ||
<FormattedMessage | ||
id='alt_text_badge.title' | ||
defaultMessage='Alt text' | ||
/> | ||
</h4> | ||
<p>{description}</p> | ||
</div> | ||
</div> | ||
)} | ||
</Overlay> | ||
</> | ||
); | ||
}; |
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