bigbuffet-rw/app/soapbox/features/ui/components/zoomable-image.tsx

149 lines
4 KiB
TypeScript
Raw Normal View History

import React from 'react';
2020-03-27 13:59:38 -07:00
const MIN_SCALE = 1;
const MAX_SCALE = 4;
2022-10-12 13:22:50 -07:00
type Point = { x: number, y: number };
const getMidpoint = (p1: React.Touch, p2: React.Touch): Point => ({
2020-03-27 13:59:38 -07:00
x: (p1.clientX + p2.clientX) / 2,
y: (p1.clientY + p2.clientY) / 2,
});
2022-10-12 13:22:50 -07:00
const getDistance = (p1: React.Touch, p2: React.Touch): number =>
2020-03-27 13:59:38 -07:00
Math.sqrt(Math.pow(p1.clientX - p2.clientX, 2) + Math.pow(p1.clientY - p2.clientY, 2));
2022-10-12 13:22:50 -07:00
const clamp = (min: number, max: number, value: number): number => Math.min(max, Math.max(min, value));
2020-03-27 13:59:38 -07:00
2022-10-12 13:22:50 -07:00
interface IZoomableImage {
alt?: string,
src: string,
onClick?: React.MouseEventHandler,
}
2020-03-27 13:59:38 -07:00
class ZoomableImage extends React.PureComponent<IZoomableImage> {
2020-03-27 13:59:38 -07:00
static defaultProps = {
alt: '',
width: null,
height: null,
};
state = {
scale: MIN_SCALE,
2023-01-05 09:55:08 -08:00
};
2020-03-27 13:59:38 -07:00
2022-10-12 13:22:50 -07:00
container: HTMLDivElement | null = null;
image: HTMLImageElement | null = null;
2020-03-27 13:59:38 -07:00
lastDistance = 0;
componentDidMount() {
this.container?.addEventListener('touchstart', this.handleTouchStart);
2020-03-27 13:59:38 -07:00
// on Chrome 56+, touch event listeners will default to passive
// https://www.chromestatus.com/features/5093566007214080
this.container?.addEventListener('touchmove', this.handleTouchMove, { passive: false });
2020-03-27 13:59:38 -07:00
}
componentWillUnmount() {
this.container?.removeEventListener('touchstart', this.handleTouchStart);
this.container?.removeEventListener('touchend', this.handleTouchMove);
2020-03-27 13:59:38 -07:00
}
2022-10-12 13:22:50 -07:00
handleTouchStart = (e: TouchEvent) => {
2020-03-27 13:59:38 -07:00
if (e.touches.length !== 2) return;
2022-10-12 13:22:50 -07:00
const [p1, p2] = Array.from(e.touches);
2020-03-27 13:59:38 -07:00
2022-10-12 13:22:50 -07:00
this.lastDistance = getDistance(p1, p2);
2023-01-05 09:55:08 -08:00
};
2020-03-27 13:59:38 -07:00
2022-10-12 13:22:50 -07:00
handleTouchMove = (e: TouchEvent) => {
if (!this.container) return;
2020-03-27 13:59:38 -07:00
const { scrollTop, scrollHeight, clientHeight } = this.container;
if (e.touches.length === 1 && scrollTop !== scrollHeight - clientHeight) {
// prevent propagating event to MediaModal
e.stopPropagation();
return;
}
if (e.touches.length !== 2) return;
e.preventDefault();
e.stopPropagation();
2022-10-12 13:22:50 -07:00
const [p1, p2] = Array.from(e.touches);
const distance = getDistance(p1, p2);
const midpoint = getMidpoint(p1, p2);
2020-03-27 13:59:38 -07:00
const scale = clamp(MIN_SCALE, MAX_SCALE, this.state.scale * distance / this.lastDistance);
this.zoom(scale, midpoint);
this.lastDistance = distance;
2023-01-05 09:55:08 -08:00
};
2020-03-27 13:59:38 -07:00
2022-10-12 13:22:50 -07:00
zoom(nextScale: number, midpoint: Point) {
if (!this.container) return;
2020-03-27 13:59:38 -07:00
const { scale } = this.state;
const { scrollLeft, scrollTop } = this.container;
// math memo:
// x = (scrollLeft + midpoint.x) / scrollWidth
// x' = (nextScrollLeft + midpoint.x) / nextScrollWidth
// scrollWidth = clientWidth * scale
// scrollWidth' = clientWidth * nextScale
// Solve x = x' for nextScrollLeft
const nextScrollLeft = (scrollLeft + midpoint.x) * nextScale / scale - midpoint.x;
const nextScrollTop = (scrollTop + midpoint.y) * nextScale / scale - midpoint.y;
this.setState({ scale: nextScale }, () => {
2022-10-12 13:22:50 -07:00
if (!this.container) return;
2020-03-27 13:59:38 -07:00
this.container.scrollLeft = nextScrollLeft;
this.container.scrollTop = nextScrollTop;
});
}
2022-10-12 13:22:50 -07:00
handleClick: React.MouseEventHandler = e => {
2020-03-27 13:59:38 -07:00
// don't propagate event to MediaModal
e.stopPropagation();
const handler = this.props.onClick;
2022-10-12 13:22:50 -07:00
if (handler) handler(e);
2023-01-05 09:55:08 -08:00
};
2020-03-27 13:59:38 -07:00
2022-10-12 13:22:50 -07:00
setContainerRef = (c: HTMLDivElement) => {
2020-03-27 13:59:38 -07:00
this.container = c;
2023-01-05 09:55:08 -08:00
};
2020-03-27 13:59:38 -07:00
2022-10-12 13:22:50 -07:00
setImageRef = (c: HTMLImageElement) => {
2020-03-27 13:59:38 -07:00
this.image = c;
2023-01-05 09:55:08 -08:00
};
2020-03-27 13:59:38 -07:00
render() {
2020-03-27 13:59:38 -07:00
const { alt, src } = this.props;
const { scale } = this.state;
const overflow = scale === 1 ? 'hidden' : 'scroll';
return (
<div
className='zoomable-image'
ref={this.setContainerRef}
style={{ overflow }}
>
<img
role='presentation'
ref={this.setImageRef}
alt={alt}
title={alt}
src={src}
style={{
transform: `scale(${scale})`,
transformOrigin: '0 0',
}}
onClick={this.handleClick}
/>
</div>
);
}
}
export default ZoomableImage;