Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
36 lines
730 B
TypeScript
36 lines
730 B
TypeScript
import { useCallback, useState } from "react";
|
|
|
|
import classNames from "classnames";
|
|
|
|
import { Blurhash } from "./blurhash";
|
|
|
|
interface Props {
|
|
src: string,
|
|
srcSet?: string,
|
|
blurhash?: string,
|
|
className?: string,
|
|
}
|
|
|
|
export const ServerHeroImage: React.FC<Props> = ({
|
|
src,
|
|
srcSet,
|
|
blurhash,
|
|
className,
|
|
}) => {
|
|
const [loaded, setLoaded] = useState(false);
|
|
|
|
const handleLoad = useCallback(() => {
|
|
setLoaded(true);
|
|
}, [setLoaded]);
|
|
|
|
return (
|
|
<div
|
|
className={classNames("image", { loaded }, className)}
|
|
role='presentation'
|
|
>
|
|
{blurhash && <Blurhash hash={blurhash} className='image__preview' />}
|
|
<img src={src} srcSet={srcSet} alt='' onLoad={handleLoad} />
|
|
</div>
|
|
);
|
|
};
|