fix(geoportal): layer toggle + enrichment update + refresh button
1. Layer toggle fix: removed isStyleLoaded() check that silently blocked visibility changes when OpenFreeMap style has pending sprite/font loads 2. Enrichment: "Actualizeaza" button always visible (re-fetch from eTerra) replaces "Enrichment" button when data already exists 3. Panel updates with returned enrichment data immediately Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -158,16 +158,16 @@ export function FeatureInfoPanel({ feature, onClose }: FeatureInfoPanelProps) {
|
|||||||
|
|
||||||
{/* Action buttons */}
|
{/* Action buttons */}
|
||||||
<div className="flex gap-1.5 pt-2 border-t mt-2">
|
<div className="flex gap-1.5 pt-2 border-t mt-2">
|
||||||
{!hasRealEnrichment && (
|
<Button
|
||||||
<Button
|
variant="outline" size="sm" className="h-7 text-xs gap-1 flex-1"
|
||||||
variant="outline" size="sm" className="h-7 text-xs gap-1 flex-1"
|
onClick={handleEnrich} disabled={enriching}
|
||||||
onClick={handleEnrich} disabled={enriching}
|
title={hasRealEnrichment
|
||||||
title="Obtine date detaliate de la eTerra (proprietari, CF, categorie). Se salveaza permanent."
|
? "Actualizeaza datele de la eTerra (re-fetch proprietari, CF, categorie)"
|
||||||
>
|
: "Obtine date detaliate de la eTerra (proprietari, CF, categorie). Se salveaza permanent."}
|
||||||
{enriching ? <Loader2 className="h-3 w-3 animate-spin" /> : <Sparkles className="h-3 w-3" />}
|
>
|
||||||
{enriching ? "Se incarca..." : "Enrichment"}
|
{enriching ? <Loader2 className="h-3 w-3 animate-spin" /> : <Sparkles className="h-3 w-3" />}
|
||||||
</Button>
|
{enriching ? "Se incarca..." : hasRealEnrichment ? "Actualizeaza" : "Enrichment"}
|
||||||
)}
|
</Button>
|
||||||
|
|
||||||
{cfStatus?.available && cfStatus.downloadUrl ? (
|
{cfStatus?.available && cfStatus.downloadUrl ? (
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -303,7 +303,7 @@ export const MapViewer = forwardRef<MapViewerHandle, MapViewerProps>(
|
|||||||
/* ---- Apply layer visibility ---- */
|
/* ---- Apply layer visibility ---- */
|
||||||
const applyLayerVisibility = useCallback((vis: LayerVisibility) => {
|
const applyLayerVisibility = useCallback((vis: LayerVisibility) => {
|
||||||
const map = mapRef.current;
|
const map = mapRef.current;
|
||||||
if (!map || !map.isStyleLoaded()) return;
|
if (!map) return;
|
||||||
const mapping: Record<string, string[]> = {
|
const mapping: Record<string, string[]> = {
|
||||||
uats: [
|
uats: [
|
||||||
LAYER_IDS.uatsZ0Line,
|
LAYER_IDS.uatsZ0Line,
|
||||||
|
|||||||
Reference in New Issue
Block a user