docs: [Zurück zur Übersicht](../README.md) in Alle in README für jeder Verzeichnis
This commit is contained in:
5
docs/redux/slices/database/README.md
Normal file
5
docs/redux/slices/database/README.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# 📄 Übersicht: docs/redux/slices/database
|
||||
|
||||
- [locationDevicesFromDBSlice](locationDevicesFromDBSlice.md)
|
||||
- [locationDevicesSlice](locationDevicesSlice.md)
|
||||
- [priorityConfigSlice](priorityConfigSlice.md)
|
||||
3
docs/redux/slices/database/area/README.md
Normal file
3
docs/redux/slices/database/area/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# 📄 Übersicht: docs/redux/slices/database/area
|
||||
|
||||
- [updateAreaSlice](updateAreaSlice.md)
|
||||
@@ -19,7 +19,8 @@ Redux-Slice zur Verwaltung des Update-Zustands beim Aktualisieren eines Bereichs
|
||||
|
||||
## Thunk
|
||||
|
||||
- `updateAreaThunk`: Führt den API-Call zum Speichern von `x`, `y` für `idLocation` & `idMaps` durch.
|
||||
- `updateAreaThunk`: Führt den API-Call zum Speichern von `x`, `y` für `idLocation` & `idMaps`
|
||||
durch.
|
||||
|
||||
---
|
||||
|
||||
@@ -37,4 +38,8 @@ In der Komponente `useAreaMarkersLayer.js` beim Ziehen und Speichern von Station
|
||||
|
||||
## Fehlerbehandlung
|
||||
|
||||
- Fehlernachricht wird in `error` gespeichert, falls `updateAreaThunk` fehlschlägt.
|
||||
- Fehlernachricht wird in `error` gespeichert, falls `updateAreaThunk` fehlschlägt.
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
3
docs/redux/slices/database/locationDevice/README.md
Normal file
3
docs/redux/slices/database/locationDevice/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# 📄 Übersicht: docs/redux/slices/database/locationDevice
|
||||
|
||||
- [locationDevicesSlice](locationDevicesSlice.md)
|
||||
@@ -33,8 +33,8 @@ Redux-Slice zur Verwaltung von Standortgeräten (Devices) aus der Tabelle `locat
|
||||
## Selektoren
|
||||
|
||||
```js
|
||||
selectLocationDevices = (state) => state.locationDevices.data;
|
||||
selectLocationDeviceStatus = (state) => state.locationDevices.status;
|
||||
selectLocationDevices = state => state.locationDevices.data;
|
||||
selectLocationDeviceStatus = state => state.locationDevices.status;
|
||||
```
|
||||
|
||||
---
|
||||
@@ -42,4 +42,8 @@ selectLocationDeviceStatus = (state) => state.locationDevices.status;
|
||||
## Besonderheiten
|
||||
|
||||
- Zustand wird bei `pending`, `fulfilled` und `rejected` aktualisiert
|
||||
- Fehlernachricht wird in `error` gespeichert
|
||||
- Fehlernachricht wird in `error` gespeichert
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -21,5 +21,9 @@ Redux-Slice für das Laden von Geräten aus der Datenbank-Tabelle `location_devi
|
||||
## Selector
|
||||
|
||||
```js
|
||||
selectLocationDevices = (state) => state.locationDevicesFromDB.devices
|
||||
```
|
||||
selectLocationDevices = state => state.locationDevicesFromDB.devices;
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../README.md)
|
||||
|
||||
@@ -17,7 +17,9 @@ Zweite Variante des Slices für Geräte (veraltet oder parallel verwendet).
|
||||
## Selector
|
||||
|
||||
```js
|
||||
selectLocationDevices = (state) => state.locationDevices.data
|
||||
selectLocationDevices = state => state.locationDevices.data;
|
||||
```
|
||||
|
||||
⚠️ Beachte: Duplikat zu `locationDevicesFromDBSlice.js`
|
||||
## ⚠️ Beachte: Duplikat zu `locationDevicesFromDBSlice.js`
|
||||
|
||||
[Zurück zur Übersicht](../../../README.md)
|
||||
|
||||
13
docs/redux/slices/database/pois/README.md
Normal file
13
docs/redux/slices/database/pois/README.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# 📄 Übersicht: docs/redux/slices/database/pois
|
||||
|
||||
- [addPoiOnPolylineSlice](addPoiOnPolylineSlice.md)
|
||||
- [addPoiSlice](addPoiSlice.md)
|
||||
- [currentPoiSlice](currentPoiSlice.md)
|
||||
- [poiIconsDataSlice](poiIconsDataSlice.md)
|
||||
- [poiLayerVisibleSlice](poiLayerVisibleSlice.md)
|
||||
- [poiMarkersSlice](poiMarkersSlice.md)
|
||||
- [poiReadFromDbTriggerSlice](poiReadFromDbTriggerSlice.md)
|
||||
- [poiTypSlice](poiTypSlice.md)
|
||||
- [poiTypesSlice](poiTypesSlice.md)
|
||||
- [readPoiMarkersStoreSlice](readPoiMarkersStoreSlice.md)
|
||||
- [selectedPoiSlice](selectedPoiSlice.md)
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 addPoiOnPolylineSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von addPoiOnPolyline.
|
||||
## Redux-Slice zur Verwaltung von addPoiOnPolyline.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 addPoiSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von addPoi.
|
||||
## Redux-Slice zur Verwaltung von addPoi.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 currentPoiSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von currentPoi.
|
||||
## Redux-Slice zur Verwaltung von currentPoi.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 poiIconsDataSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von POIIconsData.
|
||||
## Redux-Slice zur Verwaltung von POIIconsData.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 poiLayerVisibleSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von POILayerVisible.
|
||||
## Redux-Slice zur Verwaltung von POILayerVisible.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 poiMarkersSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von POIMarkers.
|
||||
## Redux-Slice zur Verwaltung von POIMarkers.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 poiReadFromDbTriggerSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von POIReadFromDbTrigger.
|
||||
## Redux-Slice zur Verwaltung von POIReadFromDbTrigger.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 poiTypSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von POITyp.
|
||||
## Redux-Slice zur Verwaltung von POITyp.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 poiTypesSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von POITypes.
|
||||
## Redux-Slice zur Verwaltung von POITypes.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 readPoiMarkersStoreSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von readPoiMarkersStore.
|
||||
## Redux-Slice zur Verwaltung von readPoiMarkersStore.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# 🧩 selectedPoiSlice.js
|
||||
|
||||
Redux-Slice zur Verwaltung von selectedPoi.
|
||||
## Redux-Slice zur Verwaltung von selectedPoi.
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
7
docs/redux/slices/database/polylines/README.md
Normal file
7
docs/redux/slices/database/polylines/README.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# 📄 Übersicht: docs/redux/slices/database/polylines
|
||||
|
||||
- [gisLinesSlice](gisLinesSlice.md)
|
||||
- [polylineContextMenuSlice](polylineContextMenuSlice.md)
|
||||
- [polylineEventsDisabledSlice](polylineEventsDisabledSlice.md)
|
||||
- [polylineLayerVisibleSlice](polylineLayerVisibleSlice.md)
|
||||
- [updatePolylineCoordinatesSlice](updatePolylineCoordinatesSlice.md)
|
||||
@@ -21,5 +21,9 @@ Verwaltet alle Linienobjekte, die aus der Datenbank (`gis_lines`) gelesen wurden
|
||||
## Selector
|
||||
|
||||
```js
|
||||
selectGisLines = (state) => state.gisLines.data
|
||||
```
|
||||
selectGisLines = state => state.gisLines.data;
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -22,4 +22,8 @@ Verwaltet den Zustand des Kontextmenüs bei Polylinien (z. B. Stützpunkt hinz
|
||||
- `openPolylineContextMenu(payload)`
|
||||
- `closePolylineContextMenu()`
|
||||
- `updateCountdown()`
|
||||
- `forceCloseContextMenu()`
|
||||
- `forceCloseContextMenu()`
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -7,10 +7,16 @@ Steuert, ob Interaktionen mit Polylinien (z. B. Ziehen, Klicks) temporär deak
|
||||
## Zustand
|
||||
|
||||
```js
|
||||
{ disabled: boolean }
|
||||
{
|
||||
disabled: boolean;
|
||||
}
|
||||
```
|
||||
|
||||
## Aktionen
|
||||
|
||||
- `setDisabled(boolean)`
|
||||
- `toggleDisabled()`
|
||||
- `toggleDisabled()`
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -7,7 +7,9 @@ Steuert die Sichtbarkeit des Polylinienlayers auf der Karte.
|
||||
## Zustand
|
||||
|
||||
```js
|
||||
{ visible: boolean }
|
||||
{
|
||||
visible: boolean;
|
||||
}
|
||||
```
|
||||
|
||||
## Aktion
|
||||
@@ -17,5 +19,9 @@ Steuert die Sichtbarkeit des Polylinienlayers auf der Karte.
|
||||
## Selector
|
||||
|
||||
```js
|
||||
selectPolylineVisible = (state) => state.polylineLayerVisible.visible
|
||||
```
|
||||
selectPolylineVisible = state => state.polylineLayerVisible.visible;
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -19,4 +19,8 @@ Redux-Slice zur Überwachung des Lade-/Fehlerstatus bei der Aktualisierung von L
|
||||
|
||||
## Aktion
|
||||
|
||||
- `resetUpdateStatus()`
|
||||
- `resetUpdateStatus()`
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../../README.md)
|
||||
|
||||
@@ -20,5 +20,9 @@ Lädt die Prioritätskonfiguration für Marker (z. B. zur farblichen Darstellu
|
||||
## Selector
|
||||
|
||||
```js
|
||||
selectPriorityConfig = (state) => state.priorityConfig.data
|
||||
```
|
||||
selectPriorityConfig = state => state.priorityConfig.data;
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
[Zurück zur Übersicht](../../../README.md)
|
||||
|
||||
Reference in New Issue
Block a user