31 lines
539 B
Markdown
31 lines
539 B
Markdown
<!-- /docs/redux/slices/webservice/gisStationsMeasurementsSlice.md -->
|
||
|
||
# 🧩 gisStationsMeasurementsSlice.js
|
||
|
||
Verwaltet Messwerte einzelner Stationen (z. B. Schleifenwiderstand, Isolation) aus
|
||
Webservice-Antworten.
|
||
|
||
## Zustand
|
||
|
||
```js
|
||
{
|
||
data: [],
|
||
status: "idle" | "loading" | "succeeded" | "failed",
|
||
error: string | null
|
||
}
|
||
```
|
||
|
||
## Thunk
|
||
|
||
- `fetchGisStationsMeasurementsThunk()`
|
||
|
||
## Selector
|
||
|
||
```js
|
||
selectGisStationsMeasurements = state => state.gisStationsMeasurements.data;
|
||
```
|
||
|
||
---
|
||
|
||
[Zurück zur Übersicht](../../../README.md)
|