mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-19 19:05:34 +03:00
300 lines
8.3 KiB
JavaScript
300 lines
8.3 KiB
JavaScript
import { getBlurHashAverageColor } from 'fast-blurhash';
|
|
import { useCallback, 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';
|
|
|
|
/*
|
|
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) => <Link to={to} {...props} /> : 'div'),
|
|
[to],
|
|
);
|
|
|
|
if (type === 'image' || (type === 'unknown' && previewUrl && url)) {
|
|
// Note: type: unknown might not have width/height
|
|
quickPinchZoomProps.containerProps.style.display = 'inherit';
|
|
return (
|
|
<Parent
|
|
class={`media media-image`}
|
|
onClick={onClick}
|
|
style={
|
|
showOriginal && {
|
|
backgroundImage: `url(${previewUrl})`,
|
|
}
|
|
}
|
|
>
|
|
{showOriginal ? (
|
|
<QuickPinchZoom {...quickPinchZoomProps}>
|
|
<img
|
|
ref={mediaRef}
|
|
src={mediaURL}
|
|
alt={description}
|
|
width={width}
|
|
height={height}
|
|
data-orientation={orientation}
|
|
loading="eager"
|
|
decoding="async"
|
|
onLoad={(e) => {
|
|
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;
|
|
}
|
|
}}
|
|
/>
|
|
</QuickPinchZoom>
|
|
) : (
|
|
<img
|
|
src={mediaURL}
|
|
alt={description}
|
|
width={width}
|
|
height={height}
|
|
data-orientation={orientation}
|
|
loading="lazy"
|
|
style={{
|
|
backgroundColor:
|
|
rgbAverageColor && `rgb(${rgbAverageColor.join(',')})`,
|
|
backgroundPosition: focalBackgroundPosition || 'center',
|
|
}}
|
|
onLoad={(e) => {
|
|
e.target.closest('.media-image').style.backgroundImage = '';
|
|
}}
|
|
onError={(e) => {
|
|
const { src } = e.target;
|
|
if (src === mediaURL) {
|
|
e.target.src = remoteMediaURL;
|
|
}
|
|
}}
|
|
/>
|
|
)}
|
|
</Parent>
|
|
);
|
|
} 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 = `
|
|
<video
|
|
src="${url}"
|
|
poster="${previewUrl}"
|
|
width="${width}"
|
|
height="${height}"
|
|
data-orientation="${orientation}"
|
|
preload="auto"
|
|
autoplay
|
|
muted="${isGIF}"
|
|
${isGIF ? '' : 'controls'}
|
|
playsinline
|
|
loop="${loopable}"
|
|
${isGIF ? 'ondblclick="this.paused ? this.play() : this.pause()"' : ''}
|
|
></video>
|
|
`;
|
|
|
|
return (
|
|
<Parent
|
|
class={`media media-${isGIF ? 'gif' : 'video'} ${
|
|
autoGIFAnimate ? 'media-contain' : ''
|
|
}`}
|
|
data-formatted-duration={formattedDuration}
|
|
data-label={isGIF && !showOriginal && !autoGIFAnimate ? 'GIF' : ''}
|
|
// style={{
|
|
// backgroundColor:
|
|
// rgbAverageColor && `rgb(${rgbAverageColor.join(',')})`,
|
|
// }}
|
|
onClick={(e) => {
|
|
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 ? (
|
|
<QuickPinchZoom {...quickPinchZoomProps} enabled>
|
|
<div
|
|
ref={mediaRef}
|
|
dangerouslySetInnerHTML={{
|
|
__html: videoHTML,
|
|
}}
|
|
/>
|
|
</QuickPinchZoom>
|
|
) : (
|
|
<div
|
|
class="video-container"
|
|
dangerouslySetInnerHTML={{
|
|
__html: videoHTML,
|
|
}}
|
|
/>
|
|
)
|
|
) : isGIF ? (
|
|
<video
|
|
ref={videoRef}
|
|
src={url}
|
|
poster={previewUrl}
|
|
width={width}
|
|
height={height}
|
|
data-orientation={orientation}
|
|
preload="auto"
|
|
// controls
|
|
playsinline
|
|
loop
|
|
muted
|
|
/>
|
|
) : (
|
|
<>
|
|
<img
|
|
src={previewUrl}
|
|
alt={description}
|
|
width={width}
|
|
height={height}
|
|
data-orientation={orientation}
|
|
loading="lazy"
|
|
/>
|
|
<div class="media-play">
|
|
<Icon icon="play" size="xxl" />
|
|
</div>
|
|
</>
|
|
)}
|
|
</Parent>
|
|
);
|
|
} else if (type === 'audio') {
|
|
const formattedDuration = formatDuration(original.duration);
|
|
return (
|
|
<Parent
|
|
class="media media-audio"
|
|
data-formatted-duration={formattedDuration}
|
|
onClick={onClick}
|
|
>
|
|
{showOriginal ? (
|
|
<audio src={remoteUrl || url} preload="none" controls autoplay />
|
|
) : previewUrl ? (
|
|
<img
|
|
src={previewUrl}
|
|
alt={description}
|
|
width={width}
|
|
height={height}
|
|
data-orientation={orientation}
|
|
loading="lazy"
|
|
/>
|
|
) : null}
|
|
{!showOriginal && (
|
|
<div class="media-play">
|
|
<Icon icon="play" size="xxl" />
|
|
</div>
|
|
)}
|
|
</Parent>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Media;
|