cleanup: alte GIS-Fetch-Dateien und unnötige Service-Imports entfernt – vollständige Umstellung auf zentrale Thunks abgeschlossen

This commit is contained in:
ISA
2025-05-21 10:41:59 +02:00
parent 86f1c1feb0
commit 0b7704935f
19 changed files with 110 additions and 31 deletions

View File

@@ -4,6 +4,42 @@ Alle bedeutenden Änderungen an diesem Projekt werden in dieser Datei dokumentie
---
## [1.1.126] 2025-05-21
### Cleanup
- 🧼 Veraltete GIS-API-Fetch-Dateien entfernt, da nun vollständig durch zentrale Redux-Architektur ersetzt:
- `fetchGisStationsMeasurements.js`
- `fetchGisStationsStatic.js`
- `fetchGisStationsStaticDistrict.js`
- `fetchGisStationsStatusDistrict.js`
- `fetchGisSystemStatic.js`
- Ebenso entfernt:
- `fetchLocationDevices.js` aus `/redux/api/fromDB/`
### Changed
- 🔁 Neue Ordnerstruktur eingeführt:
- `redux/thunks/webservice/` für TALAS WebServices (Port 80)
- `redux/thunks/database/` für API-Zugriffe auf eigene DB (Port 3000)
- Alle GIS-Thunks liegen jetzt in `/redux/thunks/webservice/` für klare Trennung
- Thunks übernehmen den Service-Import Slices sind vollständig entkoppelt
### Fixed
- Alle GIS-Redux-Slices importieren nun ausschließlich zentrale Thunks
- `MapComponent.js`, `DataSheet.js` und andere Komponenten nutzen nur noch:
- `gisStationsMeasurements`
- `gisStationsStaticDistrict`
- `gisStationsStatusDistrict`
- `gisSystemStatic`
### Version
- 📦 Version erhöht auf **1.1.126**
---
## [1.1.125] 2025-05-21
### Cleanup