mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
76 lines
3.2 KiB
JavaScript
76 lines
3.2 KiB
JavaScript
import useLocation from "@/hook/useLocation";
|
|
import { useEffect, useState } from "react";
|
|
import "leaflet/dist/leaflet.css";
|
|
import { MapContainer, Marker, TileLayer, Tooltip, Polyline, Polygon } from "react-leaflet";
|
|
import useAdmin from "@/hook/useAdmin";
|
|
import { GameState } from "@/util/gameState";
|
|
import { MapPan } from "./mapUtils";
|
|
|
|
const DEFAULT_ZOOM = 14;
|
|
const positionIcon = new L.Icon({
|
|
iconUrl: '/icons/location.png',
|
|
iconSize: [30, 30],
|
|
iconAnchor: [15, 15],
|
|
popupAnchor: [0, -15],
|
|
shadowSize: [30, 30],
|
|
});
|
|
|
|
export default function LiveMap() {
|
|
const location = useLocation(Infinity);
|
|
const [timeLeftNextZone, setTimeLeftNextZone] = useState(null);
|
|
const { zoneExtremities, teams, nextZoneDate, getTeam, gameState } = useAdmin();
|
|
|
|
// Remaining time before sending position
|
|
useEffect(() => {
|
|
if (nextZoneDate) {
|
|
const updateTime = () => {
|
|
setTimeLeftNextZone(Math.max(0, Math.floor((nextZoneDate - Date.now()) / 1000)));
|
|
};
|
|
|
|
updateTime();
|
|
const interval = setInterval(updateTime, 1000);
|
|
|
|
return () => clearInterval(interval);
|
|
}
|
|
}, [nextZoneDate]);
|
|
|
|
function formatTime(time) {
|
|
// time is in seconds
|
|
if (time < 0) return "00:00";
|
|
const minutes = Math.floor(time / 60);
|
|
const seconds = Math.floor(time % 60);
|
|
return String(minutes).padStart(2,"0") + ":" + String(seconds).padStart(2,"0");
|
|
}
|
|
|
|
function Arrow({pos1, pos2}) {
|
|
if (pos1 && pos2) {
|
|
return (
|
|
<Polyline positions={[pos1, pos2]} pathOptions={{ color: 'black', weight: 3 }}/>
|
|
)
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className='min-h-full w-full'>
|
|
{gameState == GameState.PLAYING && <p>{`Next zone in : ${formatTime(timeLeftNextZone)}`}</p>}
|
|
<MapContainer className='min-h-full w-full' center={location} zoom={DEFAULT_ZOOM} scrollWheelZoom={true}>
|
|
<TileLayer
|
|
attribution='© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
|
|
/>
|
|
<MapPan center={location} zoom={DEFAULT_ZOOM} />
|
|
{gameState == GameState.PLAYING && zoneExtremities.begin && <Polygon positions={zoneExtremities.begin.points} pathOptions={{ color: 'red', fillColor: 'red', fillOpacity: '0.1', weight: 3 }} />}
|
|
{gameState == GameState.PLAYING && zoneExtremities.end && <Polygon positions={zoneExtremities.end.points} pathOptions={{ color: 'green', fillColor: 'green', fillOpacity: '0.1', weight: 3 }} />}
|
|
{teams.map((team) => team.currentLocation && !team.captured &&
|
|
<Marker key={team.id} position={team.currentLocation} icon={positionIcon}>
|
|
<Tooltip permanent direction="top" offset={[0, -5]} className="custom-tooltip">{team.name}</Tooltip>
|
|
<Arrow pos1={team.currentLocation} pos2={getTeam(team.chasing).currentLocation}/>
|
|
</Marker>
|
|
)}
|
|
</MapContainer>
|
|
</div>
|
|
)
|
|
}
|