/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2020, 2021 Šimon Brandner Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React, { createRef } from 'react'; import { _t } from '../../../languageHandler'; import AccessibleTooltipButton from "./AccessibleTooltipButton"; import { Key } from "../../../Keyboard"; import FocusLock from "react-focus-lock"; import MemberAvatar from "../avatars/MemberAvatar"; import { ContextMenuTooltipButton } from "../../../accessibility/context_menu/ContextMenuTooltipButton"; import MessageContextMenu from "../context_menus/MessageContextMenu"; import { aboveLeftOf } from '../../structures/ContextMenu'; import MessageTimestamp from "../messages/MessageTimestamp"; import SettingsStore from "../../../settings/SettingsStore"; import { formatFullDate } from "../../../DateUtils"; import dis from '../../../dispatcher/dispatcher'; import { replaceableComponent } from "../../../utils/replaceableComponent"; import { RoomPermalinkCreator } from "../../../utils/permalinks/Permalinks"; import { MatrixEvent } from "matrix-js-sdk/src/models/event"; import { normalizeWheelEvent } from "../../../utils/Mouse"; import { IDialogProps } from '../dialogs/IDialogProps'; // Max scale to keep gaps around the image const MAX_SCALE = 0.95; // This is used for the buttons const ZOOM_STEP = 0.10; // This is used for mouse wheel events const ZOOM_COEFFICIENT = 0.0025; // If we have moved only this much we can zoom const ZOOM_DISTANCE = 10; interface IProps extends IDialogProps { src: string; // the source of the image being displayed name?: string; // the main title ('name') for the image link?: string; // the link (if any) applied to the name of the image width?: number; // width of the image src in pixels height?: number; // height of the image src in pixels fileSize?: number; // size of the image src in bytes // the event (if any) that the Image is displaying. Used for event-specific stuff like // redactions, senders, timestamps etc. Other descriptors are taken from the explicit // properties above, which let us use lightboxes to display images which aren't associated // with events. mxEvent: MatrixEvent; permalinkCreator: RoomPermalinkCreator; } interface IState { zoom: number; minZoom: number; maxZoom: number; rotation: number; translationX: number; translationY: number; moving: boolean; contextMenuDisplayed: boolean; } @replaceableComponent("views.elements.ImageView") export default class ImageView extends React.Component { constructor(props) { super(props); this.state = { zoom: 0, minZoom: MAX_SCALE, maxZoom: MAX_SCALE, rotation: 0, translationX: 0, translationY: 0, moving: false, contextMenuDisplayed: false, }; } // XXX: Refs to functional components private contextMenuButton = createRef(); private focusLock = createRef(); private imageWrapper = createRef(); private image = createRef(); private initX = 0; private initY = 0; private previousX = 0; private previousY = 0; componentDidMount() { // We have to use addEventListener() because the listener // needs to be passive in order to work with Chromium this.focusLock.current.addEventListener('wheel', this.onWheel, { passive: false }); // We want to recalculate zoom whenever the window's size changes window.addEventListener("resize", this.recalculateZoom); // After the image loads for the first time we want to calculate the zoom this.image.current.addEventListener("load", this.recalculateZoom); } componentWillUnmount() { this.focusLock.current.removeEventListener('wheel', this.onWheel); window.removeEventListener("resize", this.recalculateZoom); this.image.current.removeEventListener("load", this.recalculateZoom); } private recalculateZoom = () => { this.setZoomAndRotation(); }; private setZoomAndRotation = (inputRotation?: number) => { const image = this.image.current; const imageWrapper = this.imageWrapper.current; const rotation = inputRotation ?? this.state.rotation; const imageIsNotFlipped = rotation % 180 === 0; // If the image is rotated take it into account const width = imageIsNotFlipped ? image.naturalWidth : image.naturalHeight; const height = imageIsNotFlipped ? image.naturalHeight : image.naturalWidth; const zoomX = imageWrapper.clientWidth / width; const zoomY = imageWrapper.clientHeight / height; // If the image is smaller in both dimensions set its the zoom to 1 to // display it in its original size if (zoomX >= 1 && zoomY >= 1) { this.setState({ zoom: 1, minZoom: 1, maxZoom: 1, rotation: rotation, }); return; } // We set minZoom to the min of the zoomX and zoomY to avoid overflow in // any direction. We also multiply by MAX_SCALE to get a gap around the // image by default const minZoom = Math.min(zoomX, zoomY) * MAX_SCALE; // If zoom is smaller than minZoom don't go below that value const zoom = (this.state.zoom <= this.state.minZoom) ? minZoom : this.state.zoom; this.setState({ minZoom: minZoom, maxZoom: 1, rotation: rotation, zoom: zoom, }); }; private zoom(delta: number) { const newZoom = this.state.zoom + delta; if (newZoom <= this.state.minZoom) { this.setState({ zoom: this.state.minZoom, translationX: 0, translationY: 0, }); return; } if (newZoom >= this.state.maxZoom) { this.setState({ zoom: this.state.maxZoom }); return; } this.setState({ zoom: newZoom, }); } private onWheel = (ev: WheelEvent) => { ev.stopPropagation(); ev.preventDefault(); const { deltaY } = normalizeWheelEvent(ev); this.zoom(-(deltaY * ZOOM_COEFFICIENT)); }; private onZoomInClick = () => { this.zoom(ZOOM_STEP); }; private onZoomOutClick = () => { this.zoom(-ZOOM_STEP); }; private onKeyDown = (ev: KeyboardEvent) => { if (ev.key === Key.ESCAPE) { ev.stopPropagation(); ev.preventDefault(); this.props.onFinished(); } }; private onRotateCounterClockwiseClick = () => { const cur = this.state.rotation; this.setZoomAndRotation(cur - 90); }; private onRotateClockwiseClick = () => { const cur = this.state.rotation; this.setZoomAndRotation(cur + 90); }; private onDownloadClick = () => { const a = document.createElement("a"); a.href = this.props.src; a.download = this.props.name; a.target = "_blank"; a.rel = "noreferrer noopener"; a.click(); }; private onOpenContextMenu = () => { this.setState({ contextMenuDisplayed: true, }); }; private onCloseContextMenu = () => { this.setState({ contextMenuDisplayed: false, }); }; private onPermalinkClicked = (ev: React.MouseEvent) => { // This allows the permalink to be opened in a new tab/window or copied as // matrix.to, but also for it to enable routing within Element when clicked. ev.preventDefault(); dis.dispatch({ action: 'view_room', event_id: this.props.mxEvent.getId(), highlighted: true, room_id: this.props.mxEvent.getRoomId(), }); this.props.onFinished(); }; private onStartMoving = (ev: React.MouseEvent) => { ev.stopPropagation(); ev.preventDefault(); // Don't do anything if we pressed any // other button than the left one if (ev.button !== 0) return; // Zoom in if we are completely zoomed out if (this.state.zoom === this.state.minZoom) { this.setState({ zoom: this.state.maxZoom }); return; } this.setState({ moving: true }); this.previousX = this.state.translationX; this.previousY = this.state.translationY; this.initX = ev.pageX - this.state.translationX; this.initY = ev.pageY - this.state.translationY; }; private onMoving = (ev: React.MouseEvent) => { ev.stopPropagation(); ev.preventDefault(); if (!this.state.moving) return; this.setState({ translationX: ev.pageX - this.initX, translationY: ev.pageY - this.initY, }); }; private onEndMoving = () => { // Zoom out if we haven't moved much if ( this.state.moving === true && Math.abs(this.state.translationX - this.previousX) < ZOOM_DISTANCE && Math.abs(this.state.translationY - this.previousY) < ZOOM_DISTANCE ) { this.setState({ zoom: this.state.minZoom, translationX: 0, translationY: 0, }); this.initX = 0; this.initY = 0; } this.setState({ moving: false }); }; private renderContextMenu() { let contextMenu = null; if (this.state.contextMenuDisplayed) { contextMenu = ( ); } return ( { contextMenu } ); } render() { const showEventMeta = !!this.props.mxEvent; const zoomingDisabled = this.state.maxZoom === this.state.minZoom; let cursor; if (this.state.moving) { cursor= "grabbing"; } else if (zoomingDisabled) { cursor = "default"; } else if (this.state.zoom === this.state.minZoom) { cursor = "zoom-in"; } else { cursor = "zoom-out"; } const rotationDegrees = this.state.rotation + "deg"; const zoom = this.state.zoom; const translatePixelsX = this.state.translationX + "px"; const translatePixelsY = this.state.translationY + "px"; // The order of the values is important! // First, we translate and only then we rotate, otherwise // we would apply the translation to an already rotated // image causing it translate in the wrong direction. const style = { cursor: cursor, transition: this.state.moving ? null : "transform 200ms ease 0s", transform: `translateX(${translatePixelsX}) translateY(${translatePixelsY}) scale(${zoom}) rotate(${rotationDegrees})`, }; let info; if (showEventMeta) { const mxEvent = this.props.mxEvent; const showTwelveHour = SettingsStore.getValue("showTwelveHourTimestamps"); let permalink = "#"; if (this.props.permalinkCreator) { permalink = this.props.permalinkCreator.forEvent(this.props.mxEvent.getId()); } const senderName = mxEvent.sender ? mxEvent.sender.name : mxEvent.getSender(); const sender = (
{ senderName }
); const messageTimestamp = ( ); const avatar = ( ); info = (
{ avatar }
{ sender } { messageTimestamp }
); } else { // If there is no event - we're viewing an avatar, we set // an empty div here, since the panel uses space-between // and we want the same placement of elements info = (
); } let contextMenuButton; if (this.props.mxEvent) { contextMenuButton = ( ); } let zoomOutButton; let zoomInButton; if (!zoomingDisabled) { zoomOutButton = ( ); zoomInButton = ( ); } return (
{ info }
{ zoomOutButton } { zoomInButton } { contextMenuButton } { this.renderContextMenu() }
{this.props.name}
); } }