import { h, Component } from 'preact'; import PinchZoom, { ScaleToOpts } from './custom-els/PinchZoom'; import './custom-els/PinchZoom'; import './custom-els/TwoUp'; import * as style from './style.scss'; import { bind, shallowEqual, drawBitmapToCanvas, linkRef } from '../../lib/util'; import { ToggleIcon, AddIcon, RemoveIcon } from '../../lib/icons'; import { twoUpHandle } from './custom-els/TwoUp/styles.css'; interface Props { orientation: 'horizontal' | 'vertical'; leftImg: ImageBitmap; rightImg: ImageBitmap; imgWidth: number; imgHeight: number; leftImgContain: boolean; rightImgContain: boolean; } interface State { scale: number; editingScale: boolean; altBackground: boolean; } const scaleToOpts: ScaleToOpts = { originX: '50%', originY: '50%', relativeTo: 'container', allowChangeEvent: true, }; export default class Output extends Component { state: State = { scale: 1, editingScale: false, altBackground: false, }; canvasLeft?: HTMLCanvasElement; canvasRight?: HTMLCanvasElement; pinchZoomLeft?: PinchZoom; pinchZoomRight?: PinchZoom; scaleInput?: HTMLInputElement; retargetedEvents = new WeakSet(); componentDidMount() { if (this.canvasLeft) { drawBitmapToCanvas(this.canvasLeft, this.props.leftImg); } if (this.canvasRight) { drawBitmapToCanvas(this.canvasRight, this.props.rightImg); } } componentDidUpdate(prevProps: Props, prevState: State) { if (prevProps.leftImg !== this.props.leftImg && this.canvasLeft) { drawBitmapToCanvas(this.canvasLeft, this.props.leftImg); } if (prevProps.rightImg !== this.props.rightImg && this.canvasRight) { drawBitmapToCanvas(this.canvasRight, this.props.rightImg); } } shouldComponentUpdate(nextProps: Props, nextState: State) { return !shallowEqual(this.props, nextProps) || !shallowEqual(this.state, nextState); } @bind toggleBackground() { this.setState({ altBackground: !this.state.altBackground, }); } @bind zoomIn() { if (!this.pinchZoomLeft) throw Error('Missing pinch-zoom element'); this.pinchZoomLeft.scaleTo(this.state.scale * 1.25, scaleToOpts); } @bind zoomOut() { if (!this.pinchZoomLeft) throw Error('Missing pinch-zoom element'); this.pinchZoomLeft.scaleTo(this.state.scale / 1.25, scaleToOpts); } @bind editScale() { this.setState({ editingScale: true }, () => { if (this.scaleInput) this.scaleInput.focus(); }); } @bind cancelEditScale() { this.setState({ editingScale: false }); } @bind onScaleInputChanged(event: Event) { const target = event.target as HTMLInputElement; const percent = parseFloat(target.value); if (isNaN(percent)) return; if (!this.pinchZoomLeft) throw Error('Missing pinch-zoom element'); this.pinchZoomLeft.scaleTo(percent / 100, scaleToOpts); } @bind onPinchZoomLeftChange(event: Event) { if (!this.pinchZoomRight || !this.pinchZoomLeft) throw Error('Missing pinch-zoom element'); this.setState({ scale: this.pinchZoomLeft.scale, }); this.pinchZoomRight.setTransform({ scale: this.pinchZoomLeft.scale, x: this.pinchZoomLeft.x, y: this.pinchZoomLeft.y, }); } /** * We're using two pinch zoom elements, but we want them to stay in sync. When one moves, we * update the position of the other. However, this is tricky when it comes to multi-touch, when * one finger is on one pinch-zoom, and the other finger is on the other. To overcome this, we * redirect all relevant pointer/touch/mouse events to the first pinch zoom element. * * @param event Event to redirect */ @bind onRetargetableEvent(event: Event) { const targetEl = event.target as HTMLElement; if (!this.pinchZoomLeft) throw Error('Missing pinch-zoom element'); // If the event is on the handle of the two-up, let it through, // unless it's a wheel event, in which case always let it through. if (event.type !== 'wheel' && targetEl.closest('.' + twoUpHandle)) return; // If we've already retargeted this event, let it through. if (this.retargetedEvents.has(event)) return; // Stop the event in its tracks. event.stopImmediatePropagation(); event.preventDefault(); // Clone the event & dispatch // Some TypeScript trickery needed due to https://github.com/Microsoft/TypeScript/issues/3841 const clonedEvent = new (event.constructor as typeof Event)(event.type, event); this.retargetedEvents.add(clonedEvent); this.pinchZoomLeft.dispatchEvent(clonedEvent); } render( { orientation, leftImg, rightImg, imgWidth, imgHeight, leftImgContain, rightImgContain }: Props, { scale, editingScale, altBackground }: State, ) { return (
{editingScale ? ( ) : ( {Math.round(scale * 100)} % )}
); } }