import { getBlurHashAverageColor } from 'fast-blurhash'; import { useCallback, useLayoutEffect, useMemo, useRef, useState, } from 'preact/hooks'; import QuickPinchZoom, { make3dTransformValue } from 'react-quick-pinch-zoom'; import Icon from './icon'; import Link from './link'; import { formatDuration } from './status'; const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); // https://stackoverflow.com/a/23522755 /* Media type === unknown = unsupported or unrecognized file type image = Static image gifv = Looping, soundless animation video = Video clip audio = Audio track */ function Media({ media, to, showOriginal, autoAnimate, onClick = () => {} }) { const { blurhash, description, meta, previewRemoteUrl, previewUrl, remoteUrl, url, type, } = media; const { original = {}, small, focus } = meta || {}; const width = showOriginal ? original?.width : small?.width; const height = showOriginal ? original?.height : small?.height; const mediaURL = showOriginal ? url : previewUrl || url; const remoteMediaURL = showOriginal ? remoteUrl : previewRemoteUrl || remoteUrl; const orientation = width >= height ? 'landscape' : 'portrait'; const rgbAverageColor = blurhash ? getBlurHashAverageColor(blurhash) : null; const videoRef = useRef(); let focalBackgroundPosition; if (focus) { // Convert focal point to CSS background position // Formula from jquery-focuspoint // x = -1, y = 1 => 0% 0% // x = 0, y = 0 => 50% 50% // x = 1, y = -1 => 100% 100% const x = ((focus.x + 1) / 2) * 100; const y = ((1 - focus.y) / 2) * 100; focalBackgroundPosition = `${x.toFixed(0)}% ${y.toFixed(0)}%`; } const mediaRef = useRef(); const onUpdate = useCallback(({ x, y, scale }) => { const { current: media } = mediaRef; if (media) { const value = make3dTransformValue({ x, y, scale }); if (scale === 1) { media.style.removeProperty('transform'); } else { media.style.setProperty('transform', value); } media.closest('.media-zoom').style.touchAction = scale <= 1.01 ? 'pan-x' : ''; } }, []); const [pinchZoomEnabled, setPinchZoomEnabled] = useState(false); const quickPinchZoomProps = { enabled: pinchZoomEnabled, draggableUnZoomed: false, inertiaFriction: 0.9, containerProps: { className: 'media-zoom', style: { overflow: 'visible', // width: 'inherit', // height: 'inherit', // justifyContent: 'inherit', // alignItems: 'inherit', // display: 'inherit', }, }, onUpdate, }; const Parent = useMemo( () => (to ? (props) => : 'div'), [to], ); const isImage = type === 'image' || (type === 'unknown' && previewUrl); const parentRef = useRef(); const [imageSmallerThanParent, setImageSmallerThanParent] = useState(false); useLayoutEffect(() => { if (!isImage) return; if (!showOriginal) return; if (!parentRef.current) return; const { offsetWidth, offsetHeight } = parentRef.current; const smaller = width < offsetWidth && height < offsetHeight; if (smaller) setImageSmallerThanParent(smaller); }, [width, height]); const maxAspectHeight = window.innerHeight * (orientation === 'portrait' ? 0.45 : 0.33); const maxHeight = orientation === 'portrait' ? 0 : 160; const mediaStyles = { '--width': `${width}px`, '--height': `${height}px`, // Calculate '--aspectWidth' based on aspect ratio calculated from '--width' and '--height', max height has to be 160px '--aspectWidth': `${ (width / height) * Math.max(maxHeight, maxAspectHeight) }px`, aspectRatio: `${width} / ${height}`, }; if (isImage) { // Note: type: unknown might not have width/height quickPinchZoomProps.containerProps.style.display = 'inherit'; useLayoutEffect(() => { if (!isSafari) return; if (!showOriginal) return; (async () => { try { await fetch(mediaURL, { mode: 'no-cors' }); mediaRef.current.src = mediaURL; } catch (e) { // Ignore } })(); }, [mediaURL]); return ( {showOriginal ? ( {description} { e.target.closest('.media-image').style.backgroundImage = ''; e.target.closest('.media-zoom').style.display = ''; setPinchZoomEnabled(true); }} onError={(e) => { const { src } = e.target; if (src === mediaURL) { e.target.src = remoteMediaURL; } }} /> ) : ( {description} { e.target.closest('.media-image').style.backgroundImage = ''; e.target.dataset.loaded = true; }} onError={(e) => { const { src } = e.target; if (src === mediaURL) { e.target.src = remoteMediaURL; } }} /> )} ); } else if (type === 'gifv' || type === 'video') { const shortDuration = original.duration < 31; const isGIF = type === 'gifv' && shortDuration; // If GIF is too long, treat it as a video const loopable = original.duration < 61; const formattedDuration = formatDuration(original.duration); const hoverAnimate = !showOriginal && !autoAnimate && isGIF; const autoGIFAnimate = !showOriginal && autoAnimate && isGIF; const videoHTML = ` `; return ( { if (hoverAnimate) { try { videoRef.current.pause(); } catch (e) {} } onClick(e); }} onMouseEnter={() => { if (hoverAnimate) { try { videoRef.current.play(); } catch (e) {} } }} onMouseLeave={() => { if (hoverAnimate) { try { videoRef.current.pause(); } catch (e) {} } }} > {showOriginal || autoGIFAnimate ? ( isGIF && showOriginal ? (
) : (
) ) : isGIF ? (