- Verzeichnisstruktur unter /docs spiegelt nun die tatsächliche Projektstruktur wider - frontend/server-Trennung entfernt zugunsten von /docs/pages, /docs/redux, /docs/utils etc. - Erhöht Wiederauffindbarkeit, Übersichtlichkeit und Entwicklerfreundlichkeit
26 lines
496 B
Markdown
26 lines
496 B
Markdown
# 🛰️ gisStationsStaticSlice
|
||
|
||
Verwaltet statische Informationen zu GIS-Stationen – z. B. für das Dropdown im DataSheet-Bereich.
|
||
|
||
## 🔧 Pfad
|
||
`/redux/slices/webService/gisStationsStaticSlice.js`
|
||
|
||
## 📦 Initial State
|
||
|
||
```ts
|
||
{
|
||
data: null,
|
||
status: "idle",
|
||
error: null
|
||
}
|
||
```
|
||
|
||
## 🔁 Thunk: `fetchGisStationsStatic`
|
||
|
||
Lädt Daten über dynamisch erzeugte URL (`idMap` aus `window.location.search`).
|
||
|
||
## 🧪 Logging
|
||
|
||
```ts
|
||
console.log("📡 API Request URL in redux slice:", url);
|
||
``` |