195 lines
5.7 KiB
JavaScript
195 lines
5.7 KiB
JavaScript
import React, { useRef, useEffect, useState, useContext } from "react";
|
|
import { Box } from "theme-ui";
|
|
import { useGesture } from "react-use-gesture";
|
|
import ReactResizeDetector from "react-resize-detector";
|
|
import useImage from "use-image";
|
|
import { Stage, Layer, Image } from "react-konva";
|
|
|
|
import usePreventOverscroll from "../../helpers/usePreventOverscroll";
|
|
import useDataSource from "../../helpers/useDataSource";
|
|
|
|
import { mapSources as defaultMapSources } from "../../maps";
|
|
|
|
import { MapInteractionProvider } from "../../contexts/MapInteractionContext";
|
|
import MapStageContext from "../../contexts/MapStageContext";
|
|
import AuthContext from "../../contexts/AuthContext";
|
|
|
|
const wheelZoomSpeed = 0.001;
|
|
const touchZoomSpeed = 0.01;
|
|
const minZoom = 0.1;
|
|
const maxZoom = 5;
|
|
|
|
function MapInteraction({ map, children, controls, selectedToolId }) {
|
|
const mapSource = useDataSource(map, defaultMapSources);
|
|
const [mapSourceImage] = useImage(mapSource);
|
|
|
|
const [stageWidth, setStageWidth] = useState(1);
|
|
const [stageHeight, setStageHeight] = useState(1);
|
|
const [stageScale, setStageScale] = useState(1);
|
|
const [stageTranslate, setStageTranslate] = useState({ x: 0, y: 0 });
|
|
// "none" | "first" | "dragging" | "last"
|
|
const [stageDragState, setStageDragState] = useState("none");
|
|
const [preventMapInteraction, setPreventMapInteraction] = useState(false);
|
|
const [mapDragPosition, setMapDragPosition] = useState({ x: 0, y: 0 });
|
|
|
|
const stageWidthRef = useRef(stageWidth);
|
|
const stageHeightRef = useRef(stageHeight);
|
|
const stageScaleRef = useRef(stageScale);
|
|
const stageTranslateRef = useRef(stageTranslate);
|
|
|
|
useEffect(() => {
|
|
if (map) {
|
|
const mapHeight = stageWidthRef.current * (map.height / map.width);
|
|
setStageTranslate({ x: 0, y: -(mapHeight - stageHeightRef.current) / 2 });
|
|
}
|
|
}, [map]);
|
|
|
|
// Convert a client space XY to be normalized to the map image
|
|
function getMapDragPosition(xy) {
|
|
const [x, y] = xy;
|
|
const container = containerRef.current;
|
|
const mapImage = mapImageRef.current;
|
|
if (container && mapImage) {
|
|
const containerRect = container.getBoundingClientRect();
|
|
const mapRect = mapImage.getClientRect();
|
|
|
|
const offsetX = x - containerRect.left - mapRect.x;
|
|
const offsetY = y - containerRect.top - mapRect.y;
|
|
|
|
const normalizedX = offsetX / mapRect.width;
|
|
const normalizedY = offsetY / mapRect.height;
|
|
|
|
return { x: normalizedX, y: normalizedY };
|
|
}
|
|
}
|
|
|
|
const bind = useGesture({
|
|
onWheel: ({ delta }) => {
|
|
const newScale = Math.min(
|
|
Math.max(stageScale + delta[1] * wheelZoomSpeed, minZoom),
|
|
maxZoom
|
|
);
|
|
setStageScale(newScale);
|
|
stageScaleRef.current = newScale;
|
|
},
|
|
onPinch: ({ offset }) => {
|
|
const [d] = offset;
|
|
const newScale = Math.min(
|
|
Math.max(1 + d * touchZoomSpeed, minZoom),
|
|
maxZoom
|
|
);
|
|
setStageScale(newScale);
|
|
stageScaleRef.current = newScale;
|
|
},
|
|
onDrag: ({ delta, xy, first, last }) => {
|
|
if (preventMapInteraction) {
|
|
return;
|
|
}
|
|
setMapDragPosition(getMapDragPosition(xy));
|
|
setStageDragState(first ? "first" : last ? "last" : "dragging");
|
|
const [dx, dy] = delta;
|
|
if (selectedToolId === "pan") {
|
|
const newTranslate = {
|
|
x: stageTranslate.x + dx / stageScale,
|
|
y: stageTranslate.y + dy / stageScale,
|
|
};
|
|
setStageTranslate(newTranslate);
|
|
stageTranslateRef.current = newTranslate;
|
|
}
|
|
},
|
|
onDragEnd: () => {
|
|
setStageDragState("none");
|
|
},
|
|
});
|
|
|
|
function handleResize(width, height) {
|
|
setStageWidth(width);
|
|
setStageHeight(height);
|
|
stageWidthRef.current = width;
|
|
stageHeightRef.current = height;
|
|
}
|
|
|
|
function getCursorForTool(tool) {
|
|
switch (tool) {
|
|
case "pan":
|
|
return "move";
|
|
case "fog":
|
|
case "brush":
|
|
case "shape":
|
|
return "crosshair";
|
|
default:
|
|
return "default";
|
|
}
|
|
}
|
|
|
|
const containerRef = useRef();
|
|
usePreventOverscroll(containerRef);
|
|
|
|
const mapWidth = stageWidth;
|
|
const mapHeight = map ? stageWidth * (map.height / map.width) : stageHeight;
|
|
|
|
const mapStageRef = useContext(MapStageContext);
|
|
const mapImageRef = useRef();
|
|
|
|
const auth = useContext(AuthContext);
|
|
|
|
const mapInteraction = {
|
|
stageTranslate,
|
|
stageScale,
|
|
stageWidth,
|
|
stageHeight,
|
|
stageDragState,
|
|
setPreventMapInteraction,
|
|
mapWidth,
|
|
mapHeight,
|
|
mapDragPosition,
|
|
};
|
|
|
|
return (
|
|
<Box
|
|
sx={{
|
|
flexGrow: 1,
|
|
position: "relative",
|
|
cursor: getCursorForTool(selectedToolId),
|
|
touchAction: "none",
|
|
}}
|
|
ref={containerRef}
|
|
{...bind()}
|
|
className="map"
|
|
>
|
|
<ReactResizeDetector handleWidth handleHeight onResize={handleResize}>
|
|
<Stage
|
|
width={stageWidth}
|
|
height={stageHeight}
|
|
scale={{ x: stageScale, y: stageScale }}
|
|
x={stageWidth / 2}
|
|
y={stageHeight / 2}
|
|
offset={{ x: stageWidth / 2, y: stageHeight / 2 }}
|
|
ref={mapStageRef}
|
|
>
|
|
<Layer x={stageTranslate.x} y={stageTranslate.y}>
|
|
<Image
|
|
image={mapSourceImage}
|
|
width={mapWidth}
|
|
height={mapHeight}
|
|
id="mapImage"
|
|
ref={mapImageRef}
|
|
/>
|
|
{/* Forward auth context to konva elements */}
|
|
<AuthContext.Provider value={auth}>
|
|
<MapInteractionProvider value={mapInteraction}>
|
|
{children}
|
|
</MapInteractionProvider>
|
|
</AuthContext.Provider>
|
|
</Layer>
|
|
</Stage>
|
|
</ReactResizeDetector>
|
|
<MapInteractionProvider value={mapInteraction}>
|
|
{controls}
|
|
</MapInteractionProvider>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default MapInteraction;
|