Spaces:
Running
Running
File size: 7,629 Bytes
440f380 9ca4757 3ee46e7 e8db196 d6c9678 6240ef0 440f380 e8db196 6240ef0 e8db196 440f380 e8db196 c88d3e9 33a1b4a c88d3e9 e8db196 33a1b4a e8db196 33a1b4a c88d3e9 33a1b4a e8db196 33a1b4a e8db196 33a1b4a e8db196 33a1b4a e8db196 c88d3e9 e8db196 440f380 9ca4757 440f380 e8db196 440f380 6240ef0 440f380 d6c9678 440f380 9ca4757 440f380 d6c9678 440f380 d6c9678 6240ef0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | import React, { forwardRef, useCallback, useEffect, useImperativeHandle, useMemo, useRef, useState } from 'react'
import { apiUrl, getAuthToken } from '../api'
import LeafletMapFrame from './LeafletMapFrame'
function hashHtml(value) {
let hash = 0
const step = Math.max(1, Math.floor(value.length / 64))
for (let i = 0; i < value.length; i += step) {
hash = ((hash << 5) - hash) + value.charCodeAt(i)
hash |= 0
}
return `${value.length}-${Math.abs(hash)}`
}
const MapFrame = forwardRef(function MapFrame({ html, payload = null, sessionId = '' }, ref) {
const shellRef = useRef(null)
const iframeRef = useRef(null)
const leafletRef = useRef(null)
const timersRef = useRef([])
const [isFullscreen, setIsFullscreen] = useState(false)
const frameKey = useMemo(() => hashHtml(html || ''), [html])
const clearTimers = useCallback(() => {
timersRef.current.forEach((id) => window.clearTimeout(id))
timersRef.current = []
}, [])
const recenterFromLayers = useCallback(() => {
const iframe = iframeRef.current
if (!iframe) return
try {
const win = iframe.contentWindow
const doc = iframe.contentDocument || win?.document
if (!win || !doc || !win.L) return
const maps = Object.values(win).filter(
(item) => item
&& typeof item.fitBounds === 'function'
&& typeof item.eachLayer === 'function'
&& typeof item.invalidateSize === 'function',
)
const map = maps[0]
if (!map) return
map.invalidateSize(true)
const dataBounds = win.L.latLngBounds([])
const visitLayerTree = (layer, visited, fn) => {
if (!layer || !layer._leaflet_id || visited.has(layer._leaflet_id)) return
visited.add(layer._leaflet_id)
fn(layer)
if (typeof layer.eachLayer === 'function') {
layer.eachLayer((child) => {
visitLayerTree(child, visited, fn)
})
}
}
const isBairroLayer = (layer) => {
try {
const nome = String(layer?.options?.name || layer?.layerName || '').toLowerCase()
if (nome.includes('bairro')) return true
const featureName = String(layer?.feature?.properties?.NOME || layer?.feature?.properties?.BAIRRO || '').toLowerCase()
return featureName.length > 0
} catch {
return false
}
}
const shouldIgnoreForBounds = (layer) => {
try {
return Boolean(layer?.options?.mesaIgnoreBounds)
} catch {
return false
}
}
const visited = new Set()
map.eachLayer((layer) => {
visitLayerTree(layer, visited, (item) => {
try {
if (item instanceof win.L.TileLayer) return
if (isBairroLayer(item)) return
if (shouldIgnoreForBounds(item)) return
if (item instanceof win.L.CircleMarker || item instanceof win.L.Marker) {
const latlng = item.getLatLng()
if (latlng && Number.isFinite(latlng.lat) && Number.isFinite(latlng.lng)) {
dataBounds.extend(latlng)
}
return
}
const isContainerLayer = typeof item.eachLayer === 'function'
if (!isContainerLayer && typeof item.getBounds === 'function') {
const itemBounds = item.getBounds()
if (itemBounds && typeof itemBounds.isValid === 'function' && itemBounds.isValid()) {
dataBounds.extend(itemBounds)
}
}
} catch {
// no-op
}
})
})
if (dataBounds.isValid()) {
const size = map.getSize ? map.getSize() : null
const basePadding = size
? Math.max(34, Math.min(84, Math.round(Math.min(size.x, size.y) * 0.085)))
: 48
map.fitBounds(dataBounds, { padding: [basePadding, basePadding], maxZoom: 18, animate: false })
}
} catch {
// no-op
}
}, [])
const scheduleRecenter = useCallback(() => {
clearTimers()
;[40, 180, 520, 1100].forEach((delay) => {
const timerId = window.setTimeout(() => {
recenterFromLayers()
}, delay)
timersRef.current.push(timerId)
})
}, [clearTimers, recenterFromLayers])
const refreshMapSize = useCallback(() => {
if (leafletRef.current?.fitToPayloadBounds) {
window.setTimeout(() => {
leafletRef.current?.fitToPayloadBounds?.(48)
}, 120)
return
}
scheduleRecenter()
}, [scheduleRecenter])
const compartilharContextoComIframe = useCallback(() => {
const frameWindow = iframeRef.current?.contentWindow
if (!frameWindow) return
try {
frameWindow.__MESA_MAP_CONTEXT__ = {
apiBase: apiUrl(''),
authToken: getAuthToken(),
}
} catch {
// O iframe ainda pode usar o endpoint relativo na versão publicada.
}
}, [])
const toggleFullscreen = useCallback(async (event) => {
event.preventDefault()
event.stopPropagation()
const shell = shellRef.current
if (!shell) return
try {
if (document.fullscreenElement === shell) {
await document.exitFullscreen()
} else if (typeof shell.requestFullscreen === 'function') {
await shell.requestFullscreen()
}
} catch {
// Navegadores podem bloquear fullscreen fora de interação direta.
}
}, [])
useEffect(() => {
return () => {
clearTimers()
}
}, [clearTimers])
useEffect(() => {
function onFullscreenChange() {
const active = document.fullscreenElement === shellRef.current
setIsFullscreen(active)
refreshMapSize()
}
document.addEventListener('fullscreenchange', onFullscreenChange)
return () => document.removeEventListener('fullscreenchange', onFullscreenChange)
}, [refreshMapSize])
useImperativeHandle(ref, () => ({
fitToPayloadBounds(padding = 48) {
if (leafletRef.current?.fitToPayloadBounds) {
return leafletRef.current.fitToPayloadBounds(padding)
}
return false
},
async downloadSelectionPng(selectionRect, fileName = 'mapa-recorte.png') {
if (leafletRef.current?.downloadSelectionPng) {
return leafletRef.current.downloadSelectionPng(selectionRect, fileName)
}
throw new Error('A exportacao em PNG esta disponivel apenas para mapas interativos.')
},
async downloadVisiblePng(fileName = 'mapa.png') {
if (leafletRef.current?.downloadVisiblePng) {
return leafletRef.current.downloadVisiblePng(fileName)
}
throw new Error('A exportacao em PNG esta disponivel apenas para mapas interativos.')
},
}), [])
if (!(payload && payload.type === 'mesa_leaflet_payload') && !html) {
return <div className="empty-box">Mapa indisponivel.</div>
}
const mapContent = payload && payload.type === 'mesa_leaflet_payload'
? (
<LeafletMapFrame
ref={leafletRef}
payload={payload}
sessionId={sessionId}
onToggleFullscreen={toggleFullscreen}
/>
)
: (
<iframe
key={frameKey}
ref={iframeRef}
title="mapa"
className="map-frame"
srcDoc={html}
sandbox="allow-scripts allow-same-origin allow-popups"
allow="fullscreen"
allowFullScreen
onLoad={() => {
compartilharContextoComIframe()
scheduleRecenter()
}}
/>
)
return (
<div ref={shellRef} className={`map-frame-shell${isFullscreen ? ' is-fullscreen' : ''}`}>
{mapContent}
</div>
)
})
export default MapFrame
|