owncast/web/components/ui/CrossfadeImage/CrossfadeImage.tsx
Michael David Kuckuk 25119561fb
Give chat a min-height that other elements yield to on mobile clients (#2676)
* Add className prop to some components

* Give mobile chatbox height priority over other elements

* Optimize for mobile landscape mode

* Make thumbnail background black

* Fix overflow issues on narrow screens

* Adjust layout for offline mode on mobile

* Fix main content width on Desktop

* Fix offline layout for desktop
2023-02-08 18:50:58 -08:00

78 lines
1.7 KiB
TypeScript

import React, { FC, useMemo, useState } from 'react';
type ObjectFit = React.CSSProperties['objectFit'];
export type CrossfadeImageProps = {
src: string;
width: string;
height: string;
objectFit?: ObjectFit;
duration?: string;
className?: string;
};
const imgStyle: React.CSSProperties = {
position: 'absolute',
width: `100%`,
height: `100%`,
};
export const CrossfadeImage: FC<CrossfadeImageProps> = ({
src = '',
width,
height,
objectFit = 'fill',
duration = '1s',
className,
}) => {
const spanStyle: React.CSSProperties = useMemo(
() => ({
display: 'inline-block',
position: 'relative',
width,
height,
}),
[width, height],
);
const imgStyles = useMemo(
() => [
{ ...imgStyle, objectFit, opacity: 0, transition: `opacity ${duration}` },
{ ...imgStyle, objectFit, opacity: 1, transition: `opacity ${duration}` },
{ ...imgStyle, objectFit, opacity: 0 },
],
[objectFit, duration],
);
const [key, setKey] = useState(0);
const [srcs, setSrcs] = useState(['', '']);
const nextSrc = src !== srcs[1] ? src : '';
const onLoadImg = () => {
setKey((key + 1) % 3);
setSrcs([srcs[1], nextSrc]);
};
return (
<span style={spanStyle} className={className}>
{[...srcs, nextSrc].map(
(singleSrc, index) =>
singleSrc !== '' && (
<img
key={singleSrc}
src={singleSrc}
alt=""
style={imgStyles[index]}
onLoad={index === 2 ? onLoadImg : undefined}
/>
),
)}
</span>
);
};
export default CrossfadeImage;
CrossfadeImage.defaultProps = {
objectFit: 'fill',
duration: '3s',
};