import React, { useState, useContext, useEffect } from "react"; import MapControls from "./MapControls"; import MapInteraction from "./MapInteraction"; import MapToken from "./MapToken"; import MapDrawing from "./MapDrawing"; import MapFog from "./MapFog"; import TokenDataContext from "../../contexts/TokenDataContext"; import TokenMenu from "../token/TokenMenu"; import TokenDragOverlay from "../token/TokenDragOverlay"; import LoadingOverlay from "../LoadingOverlay"; import { omit } from "../../helpers/shared"; function Map({ map, mapState, onMapTokenStateChange, onMapTokenStateRemove, onMapChange, onMapStateChange, onMapDraw, onMapDrawUndo, onMapDrawRedo, onFogDraw, onFogDrawUndo, onFogDrawRedo, allowMapDrawing, allowFogDrawing, disabledTokens, loading, }) { const { tokensById } = useContext(TokenDataContext); const gridX = map && map.gridX; const gridY = map && map.gridY; const gridSizeNormalized = { x: gridX ? 1 / gridX : 0, y: gridY ? 1 / gridY : 0, }; const tokenSizePercent = gridSizeNormalized.x; const [selectedToolId, setSelectedToolId] = useState("pan"); const [toolSettings, setToolSettings] = useState({ fog: { type: "add", useEdgeSnapping: true, useGridSnapping: false }, brush: { color: "darkGray", type: "stroke", useBlending: false, }, shape: { color: "red", type: "rectangle", useBlending: true, }, }); function handleToolSettingChange(tool, change) { setToolSettings((prevSettings) => ({ ...prevSettings, [tool]: { ...prevSettings[tool], ...change, }, })); } function handleToolAction(action) { if (action === "eraseAll") { onMapDraw({ type: "remove", shapeIds: mapShapes.map((s) => s.id), timestamp: Date.now(), }); } if (action === "mapUndo") { onMapDrawUndo(); } if (action === "mapRedo") { onMapDrawRedo(); } if (action === "fogUndo") { onFogDrawUndo(); } if (action === "fogRedo") { onFogDrawRedo(); } } const [mapShapes, setMapShapes] = useState([]); function handleMapShapeAdd(shape) { onMapDraw({ type: "add", shapes: [shape] }); } function handleMapShapeRemove(shapeId) { onMapDraw({ type: "remove", shapeIds: [shapeId] }); } const [fogShapes, setFogShapes] = useState([]); function handleFogShapeAdd(shape) { onFogDraw({ type: "add", shapes: [shape] }); } function handleFogShapeRemove(shapeId) { onFogDraw({ type: "remove", shapeIds: [shapeId] }); } function handleFogShapeEdit(shape) { onFogDraw({ type: "edit", shapes: [shape] }); } // Replay the draw actions and convert them to shapes for the map drawing useEffect(() => { if (!mapState) { return; } function actionsToShapes(actions, actionIndex) { let shapesById = {}; for (let i = 0; i <= actionIndex; i++) { const action = actions[i]; if (action.type === "add" || action.type === "edit") { for (let shape of action.shapes) { shapesById[shape.id] = shape; } } if (action.type === "remove") { shapesById = omit(shapesById, action.shapeIds); } } return Object.values(shapesById); } setMapShapes( actionsToShapes(mapState.mapDrawActions, mapState.mapDrawActionIndex) ); setFogShapes( actionsToShapes(mapState.fogDrawActions, mapState.fogDrawActionIndex) ); }, [mapState]); const disabledControls = []; if (!allowMapDrawing) { disabledControls.push("brush"); disabledControls.push("shape"); disabledControls.push("erase"); } if (!map) { disabledControls.push("pan"); } if (mapShapes.length === 0) { disabledControls.push("erase"); } if (!allowFogDrawing) { disabledControls.push("fog"); } const disabledSettings = { fog: [], brush: [], shape: [], erase: [] }; if (!mapState || mapState.mapDrawActionIndex < 0) { disabledSettings.brush.push("undo"); disabledSettings.shape.push("undo"); disabledSettings.erase.push("undo"); } if ( !mapState || mapState.mapDrawActionIndex === mapState.mapDrawActions.length - 1 ) { disabledSettings.brush.push("redo"); disabledSettings.shape.push("redo"); disabledSettings.erase.push("redo"); } if (fogShapes.length === 0) { disabledSettings.fog.push("undo"); } if ( !mapState || mapState.fogDrawActionIndex === mapState.fogDrawActions.length - 1 ) { disabledSettings.fog.push("redo"); } const mapControls = ( ); const [isTokenMenuOpen, setIsTokenMenuOpen] = useState(false); const [tokenMenuOptions, setTokenMenuOptions] = useState({}); const [draggingTokenOptions, setDraggingTokenOptions] = useState(); function handleTokenMenuOpen(tokenStateId, tokenImage) { setTokenMenuOptions({ tokenStateId, tokenImage }); setIsTokenMenuOpen(true); } const mapTokens = mapState && Object.values(mapState.tokens) .sort( (a, b) => tokensById[b.tokenId].isVehicle - tokensById[a.tokenId].isVehicle ) // Sort so vehicles render below other tokens .map((tokenState) => ( setDraggingTokenOptions({ tokenState, tokenImage: e.target }) } onTokenDragEnd={() => setDraggingTokenOptions(null)} draggable={ (selectedToolId === "pan" || selectedToolId === "erase") && !(tokenState.id in disabledTokens) } mapState={mapState} /> )); const tokenMenu = ( setIsTokenMenuOpen(false)} onTokenChange={onMapTokenStateChange} tokenState={mapState && mapState.tokens[tokenMenuOptions.tokenStateId]} tokenImage={tokenMenuOptions.tokenImage} /> ); const tokenDragOverlay = draggingTokenOptions && ( { onMapTokenStateRemove(state); setDraggingTokenOptions(null); }} onTokenStateChange={onMapTokenStateChange} tokenState={draggingTokenOptions && draggingTokenOptions.tokenState} tokenImage={draggingTokenOptions && draggingTokenOptions.tokenImage} token={tokensById[draggingTokenOptions.tokenState.tokenId]} mapState={mapState} /> ); const mapDrawing = ( ); const mapFog = ( ); return ( {mapControls} {tokenMenu} {tokenDragOverlay} {loading && } } selectedToolId={selectedToolId} > {mapDrawing} {mapTokens} {mapFog} ); } export default Map;