diff --git a/src/components/status.css b/src/components/status.css index 07dc04c9..36c878f1 100644 --- a/src/components/status.css +++ b/src/components/status.css @@ -379,7 +379,8 @@ height: 100%; object-fit: contain; } -.status .media-video { +.status .media-video, +.status .media-gif { position: relative; background-clip: padding-box; } @@ -418,10 +419,27 @@ border-radius: 4px; padding: 0 4px; } +.status .media-gif[data-label]:not(:hover):after { + font-size: 12px; + font-weight: bold; + pointer-events: none; + content: attr(data-label); + position: absolute; + bottom: 8px; + left: 8px; + color: var(--bg-faded-color); + background-color: var(--text-insignificant-color); + backdrop-filter: blur(6px) saturate(3) invert(0.2); + border-radius: 4px; + padding: 0 4px; +} .status .media-gif video { object-fit: cover; pointer-events: none; } +.status .media-contain video { + object-fit: contain !important; +} .status .media-audio { border: 0; min-height: 0; diff --git a/src/components/status.jsx b/src/components/status.jsx index 0e74cebb..0fd22dfa 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -29,6 +29,7 @@ import visibilityIconsMap from '../utils/visibility-icons-map'; import Avatar from './avatar'; import Icon from './icon'; import RelativeTime from './relative-time'; +import Video from './video'; function fetchAccount(id) { return masto.v1.accounts.fetch(id); @@ -422,6 +423,7 @@ function Status({ { e.preventDefault(); e.stopPropagation(); @@ -688,7 +690,7 @@ video = Video clip audio = Audio track */ -function Media({ media, showOriginal, onClick = () => {} }) { +function Media({ media, showOriginal, autoAnimate, onClick = () => {} }) { const { blurhash, description, meta, previewUrl, remoteUrl, url, type } = media; const { original, small, focus } = meta || {}; @@ -758,16 +760,20 @@ function Media({ media, showOriginal, onClick = () => {} }) { const isGIF = type === 'gifv' || shortDuration; const loopable = original.duration <= 60; const formattedDuration = formatDuration(original.duration); + const hoverAnimate = !showOriginal && !autoAnimate && isGIF; return (
{ - if (!showOriginal && isGIF) { + if (hoverAnimate) { try { videoRef.current.pause(); } catch (e) {} @@ -775,38 +781,32 @@ function Media({ media, showOriginal, onClick = () => {} }) { onClick(e); }} onMouseEnter={() => { - if (!showOriginal && isGIF) { + if (hoverAnimate) { try { videoRef.current.play(); } catch (e) {} } }} onMouseLeave={() => { - if (!showOriginal && isGIF) { + if (hoverAnimate) { try { videoRef.current.pause(); } catch (e) {} } }} > - {showOriginal ? ( -
- `, - }} + {showOriginal || autoAnimate ? ( +