fix: define and initialize setSelectedArea to avoid ReferenceError
- Imported useSetRecoilState from Recoil - Defined and initialized setSelectedArea using useSetRecoilState with selectedAreaState - Ensured setSelectedArea is used to reset the selected area after moving the map This resolves the ReferenceError: setSelectedArea is not defined.
This commit is contained in:
@@ -1,4 +1,3 @@
|
|||||||
//components/DataSheet.js
|
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import { useRecoilState, useRecoilValue, useSetRecoilState } from "recoil";
|
import { useRecoilState, useRecoilValue, useSetRecoilState } from "recoil";
|
||||||
import { gisStationsStaticDistrictState } from "../store/atoms/gisStationState";
|
import { gisStationsStaticDistrictState } from "../store/atoms/gisStationState";
|
||||||
@@ -10,7 +9,6 @@ import { poiLayerVisibleState } from "../store/atoms/poiLayerVisible";
|
|||||||
|
|
||||||
function DataSheet() {
|
function DataSheet() {
|
||||||
const [poiVisible, setPoiVisible] = useRecoilState(poiLayerVisibleState);
|
const [poiVisible, setPoiVisible] = useRecoilState(poiLayerVisibleState);
|
||||||
|
|
||||||
const setSelectedArea = useSetRecoilState(selectedAreaState);
|
const setSelectedArea = useSetRecoilState(selectedAreaState);
|
||||||
const [mapLayersVisibility, setMapLayersVisibility] =
|
const [mapLayersVisibility, setMapLayersVisibility] =
|
||||||
useRecoilState(mapLayersState);
|
useRecoilState(mapLayersState);
|
||||||
@@ -20,92 +18,71 @@ function DataSheet() {
|
|||||||
gisStationsStaticDistrictState
|
gisStationsStaticDistrictState
|
||||||
);
|
);
|
||||||
const GisSystemStatic = useRecoilValue(gisSystemStaticState);
|
const GisSystemStatic = useRecoilValue(gisSystemStaticState);
|
||||||
// In deiner Dropdown onChange Funktion
|
const setZoomTrigger = useSetRecoilState(zoomTriggerState);
|
||||||
|
|
||||||
const handleAreaChange = (event) => {
|
const handleAreaChange = (event) => {
|
||||||
const selectedIndex = event.target.options.selectedIndex;
|
const selectedIndex = event.target.options.selectedIndex;
|
||||||
const areaName = event.target.options[selectedIndex].text;
|
const areaName = event.target.options[selectedIndex].text;
|
||||||
//useState selectedStation setzen
|
|
||||||
|
|
||||||
setSelectedArea(areaName);
|
setSelectedArea(areaName);
|
||||||
console.log("Area selected oder areaName in DataSheet.js:", areaName); // Nur zur Bestätigung in der Konsole
|
console.log("Area selected oder areaName in DataSheet.js:", areaName);
|
||||||
//console.log("event.target:", event.target);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
// Identify allowed system IDs
|
|
||||||
const allowedSystems = new Set(
|
const allowedSystems = new Set(
|
||||||
GisSystemStatic.filter((system) => system.Allow === 1).map(
|
GisSystemStatic.filter((system) => system.Allow === 1).map(
|
||||||
(system) => system.IdSystem
|
(system) => system.IdSystem
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
//console.log("allowedSystems:", allowedSystems);
|
|
||||||
|
|
||||||
// Filter unique areas that belong to allowed systems
|
|
||||||
const seenNames = new Set();
|
const seenNames = new Set();
|
||||||
const filteredAreas = GisStationsStaticDistrict.filter((item) => {
|
const filteredAreas = GisStationsStaticDistrict.filter((item) => {
|
||||||
const isUnique =
|
const isUnique =
|
||||||
!seenNames.has(item.Area_Name) && allowedSystems.has(item.System);
|
!seenNames.has(item.Area_Name) && allowedSystems.has(item.System);
|
||||||
if (isUnique) {
|
if (isUnique) {
|
||||||
seenNames.add(item.Area_Name);
|
seenNames.add(item.Area_Name);
|
||||||
//console.log("Unique area:", item.Area_Name); //Dropdown menu
|
|
||||||
}
|
}
|
||||||
return isUnique;
|
return isUnique;
|
||||||
});
|
});
|
||||||
//console.log("GisStationsStaticDistrict:", GisStationsStaticDistrict);
|
|
||||||
|
|
||||||
// Set the station listings
|
|
||||||
setStationListing(
|
setStationListing(
|
||||||
filteredAreas.map((area, index) => ({
|
filteredAreas.map((area, index) => ({
|
||||||
id: index + 1,
|
id: index + 1,
|
||||||
name: area.Area_Name,
|
name: area.Area_Name,
|
||||||
}))
|
}))
|
||||||
);
|
);
|
||||||
|
|
||||||
// Prepare system listings as before
|
|
||||||
const seenSystemNames = new Set();
|
const seenSystemNames = new Set();
|
||||||
const filteredSystems = GisSystemStatic.filter((item) => {
|
const filteredSystems = GisSystemStatic.filter((item) => {
|
||||||
// Entferne alle Leerzeichen und Bindestriche aus dem Namen
|
|
||||||
const formattedName = item.Name.replace(/[\s\-]+/g, "");
|
const formattedName = item.Name.replace(/[\s\-]+/g, "");
|
||||||
// Entferne alle Leerzeichen aus dem Namen, behalte Bindestriche
|
|
||||||
//const formattedName = item.Name.replace(/\s+/g, "");
|
|
||||||
const isUnique = !seenSystemNames.has(formattedName) && item.Allow === 1;
|
const isUnique = !seenSystemNames.has(formattedName) && item.Allow === 1;
|
||||||
if (isUnique) {
|
if (isUnique) {
|
||||||
seenSystemNames.add(formattedName); // Füge den formatierten Namen hinzu
|
seenSystemNames.add(formattedName);
|
||||||
//console.log("Unique system in DataSheet:", formattedName); // Zeige den formatierten Namen in der Konsole
|
|
||||||
}
|
}
|
||||||
return isUnique;
|
return isUnique;
|
||||||
});
|
});
|
||||||
//console.log("filteredSystems:", filteredSystems); // Logge die gefilterten Systeme
|
|
||||||
|
|
||||||
setSystemListing(
|
setSystemListing(
|
||||||
filteredSystems.map((system, index) => ({
|
filteredSystems.map((system, index) => ({
|
||||||
id: index + 1,
|
id: index + 1,
|
||||||
name: system.Name.replace(/[\s\-]+/g, ""), // Auch hier Leerzeichen und Bindestriche entfernen
|
name: system.Name.replace(/[\s\-]+/g, ""),
|
||||||
}))
|
}))
|
||||||
);
|
);
|
||||||
}, [GisStationsStaticDistrict, GisSystemStatic]);
|
}, [GisStationsStaticDistrict, GisSystemStatic]);
|
||||||
//---------------------------------------------------------
|
|
||||||
const handleCheckboxChange = (name, event) => {
|
const handleCheckboxChange = (name, event) => {
|
||||||
const { checked } = event.target;
|
const { checked } = event.target;
|
||||||
console.log(`Checkbox ${name} checked state:`, checked); // Log the checked state of the checkbox
|
console.log(`Checkbox ${name} checked state:`, checked);
|
||||||
|
|
||||||
setMapLayersVisibility((prev) => {
|
setMapLayersVisibility((prev) => {
|
||||||
const newState = {
|
const newState = {
|
||||||
...prev,
|
...prev,
|
||||||
[name]: checked,
|
[name]: checked,
|
||||||
};
|
};
|
||||||
console.log(`New mapLayersVisibility state:`, newState); // Log the new state after update
|
console.log(`New mapLayersVisibility state:`, newState);
|
||||||
return newState;
|
return newState;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
//---------------------------------------------------------
|
|
||||||
const setZoomTrigger = useSetRecoilState(zoomTriggerState);
|
|
||||||
|
|
||||||
const handleIconClick = () => {
|
const handleIconClick = () => {
|
||||||
setSelectedArea("Station wählen"); // Setzt die Dropdown-Auswahl zurück auf "Station wählen"
|
setSelectedArea("Station wählen");
|
||||||
setZoomTrigger((current) => current + 1); // Trigger durch Inkrementierung
|
setZoomTrigger((current) => current + 1);
|
||||||
};
|
};
|
||||||
//---------------------------------------------------------
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
@@ -115,9 +92,9 @@ function DataSheet() {
|
|||||||
<div className="flex flex-col gap-4 p-4">
|
<div className="flex flex-col gap-4 p-4">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<select
|
<select
|
||||||
onChange={handleAreaChange} // Verwenden der neuen handleAreaChange Funktion
|
onChange={handleAreaChange}
|
||||||
id="stationListing"
|
id="stationListing"
|
||||||
className="border-solid-1 p-2 rounded ml-1 font-semibold"
|
className="border-solid-1 p-2 rounded ml-1 font-semibold"
|
||||||
>
|
>
|
||||||
<option value="Station wählen">Station wählen</option>
|
<option value="Station wählen">Station wählen</option>
|
||||||
{stationListing.map((station) => (
|
{stationListing.map((station) => (
|
||||||
|
|||||||
@@ -698,6 +698,7 @@ const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => {
|
|||||||
//------------------------------------------
|
//------------------------------------------
|
||||||
//------------------------------------------ */
|
//------------------------------------------ */
|
||||||
const selectedArea = useRecoilValue(selectedAreaState);
|
const selectedArea = useRecoilValue(selectedAreaState);
|
||||||
|
const setSelectedArea = useSetRecoilState(selectedAreaState);
|
||||||
|
|
||||||
// Combine all markers into a single array
|
// Combine all markers into a single array
|
||||||
const allMarkers = [
|
const allMarkers = [
|
||||||
@@ -2038,15 +2039,26 @@ const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => {
|
|||||||
//------------------------------------------ */
|
//------------------------------------------ */
|
||||||
|
|
||||||
// Effect to handle navigation to selected area
|
// Effect to handle navigation to selected area
|
||||||
useEffect(() => {
|
/* useEffect(() => {
|
||||||
if (selectedArea && map) {
|
if (selectedArea && map) {
|
||||||
const marker = findMyMarker(selectedArea);
|
const marker = findMyMarker(selectedArea);
|
||||||
if (marker) {
|
if (marker) {
|
||||||
map.flyTo(marker.getLatLng(), 14); // Adjust zoom level as needed
|
map.flyTo(marker.getLatLng(), 14); // Adjust zoom level as needed
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [selectedArea, map, allMarkers]); // Include allMarkers in the dependencies
|
}, [selectedArea, map, allMarkers]); // Include allMarkers in the dependencies */
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (selectedArea && map) {
|
||||||
|
const marker = findMyMarker(selectedArea);
|
||||||
|
if (marker) {
|
||||||
|
map.flyTo(marker.getLatLng(), 14);
|
||||||
|
map.once("moveend", () => {
|
||||||
|
setSelectedArea("Station wählen");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, [selectedArea, map]);
|
||||||
//------------------------------------------
|
//------------------------------------------
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user