30 lines
521 B
Markdown
30 lines
521 B
Markdown
<!-- /docs/redux/slices/webservice/gisStationsStatusDistrictSlice.md -->
|
|
|
|
# 🧩 gisStationsStatusDistrictSlice.js
|
|
|
|
Verwaltet den Status aller Stationen im aktuellen Bezirk aus Webservice-Daten.
|
|
|
|
## Zustand
|
|
|
|
```js
|
|
{
|
|
data: [],
|
|
status: "idle" | "loading" | "succeeded" | "failed",
|
|
error: string | null
|
|
}
|
|
```
|
|
|
|
## Thunk
|
|
|
|
- `fetchGisStationsStatusDistrictThunk()`
|
|
|
|
## Selector
|
|
|
|
```js
|
|
selectGisStationsStatusDistrict = state => state.gisStationsStatusDistrict.data;
|
|
```
|
|
|
|
---
|
|
|
|
[Zurück zur Übersicht](../../../README.md)
|