feat: füge Wizard-Orchestrator mit Runtime, Scaffold und DraftStore (MVP) hinzu
Some checks failed
Desktop CI — Headless Tests & Build / Compose Desktop — Tests (headless) & Build (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., backend/services/ping/Dockerfile, ping-service, ping-service) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., config/docker/caddy/web-app/Dockerfile, web-app, web-app) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., config/docker/keycloak/Dockerfile, keycloak, keycloak) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., backend/infrastructure/gateway/Dockerfile, api-gateway, api-gateway) (push) Has been cancelled

Signed-off-by: StefanMoCoAt <stefan.mo.co@gmail.com>
This commit is contained in:
Stefan Mogeritsch 2026-04-21 18:30:13 +02:00
parent d66bd63cc9
commit c54ad3830d
3 changed files with 128 additions and 0 deletions

View File

@ -229,6 +229,17 @@ Journal: `docs/99_Journal/2026-04-21_Wizard-Orchestrator_Roadmap_Anchoring.md`
## 3. Aktuelle Phase ## 3. Aktuelle Phase
### Progress Checkpoint 2026-04-21 (Wizard-Orchestrator Initiative)
- Core/DSL: angelegt in `frontend/core/wizard` (Runtime, DSL), erste Tests grün.
- UI: `WizardScaffold` (MVP) + Hotkeys-Wrapper (Enter/Shift+Enter/Alt+S) vorhanden.
- Feature-Integration: Veranstaltungs-Wizard hinter Flag teilweise delegiert.
- Drafts: InMemory DraftStore (Autosave/Resume Hooks) angebunden.
- DI: Koin-Parameterübergabe für `EventWizardViewModel` vereinheitlicht.
- Flag: `WizardRuntimeEnabled = false` (Standard AUS; Dev-Verprobung manuell).
Nächste Schritte (Kurz): Tests für `needsContactPerson` (beide Zweige), VMDelegation für weitere Steps, FooterFehlerSummary, persistenter DraftStore, DevOverlay.
### PHASE 5: P2-Contexts & Integration ✅ ABGESCHLOSSEN ### PHASE 5: P2-Contexts & Integration ✅ ABGESCHLOSSEN
*Ziel: `competition-context` und `event-management-context` implementieren.* *Ziel: `competition-context` und `event-management-context` implementieren.*

View File

@ -0,0 +1,74 @@
# 🧹 [Curator] Session-Log Wizard-Orchestrator Migration (Pause)
Datum: 2026-04-21 · Kontext: Desktop-First, Offline-First · Initiative: Wizard-Orchestrator & Offline-Drafts
## Zusammenfassung
- Spike abgeschlossen: neues Modul `frontend/core/wizard` mit Runtime + Mini-DSL + UI-Scaffold (MVP) integriert.
- Erste Integration im Veranstaltungs-Flow hinter Feature-Flag; Koin-Parameterfehler behoben; Hotkeys + DraftStore (MVP) ergänzt.
- Build und Tests grün; Session wird hier sauber pausiert.
## Erreichte Ergebnisse (Inkrement Stand heute)
- Modul `:frontend:core:wizard`
- Runtime/DSL: `StepId`, `WizardContext`, `WizardState`, `Guard`, `Transition`, `StepEffects`, `WizardRuntime`.
- DSL: `flow { step { whenGuard(id) go target; otherwise go … } }`.
- Samples/Tests: Demo-Event-Flow (2+ Steps), Jvm/Common-Tests (Next/Back/Guards) 6/6 grün.
- UI
- `WizardScaffold` (Header/Breadcrumb/Footer-Slots), `WizardScaffoldWithHotkeys` (Enter/Shift+Enter/Alt+S).
- Feature-Integration (hinter Flag)
- `EventWizardScreen` nutzt Scaffold-Variante bei aktivem Flag.
- `EventWizardViewModel` teils delegiert; Guard-Pfade (Ansprechperson/Meta) im Demo-Flow vorhanden.
- DI
- Koin-Parameterübergabe fix: `parametersOf(null as Long?)` für `AppScreen.EventNeu`.
- Drafts (MVP)
- In-Memory `DraftStore` für Autosave/Resume-Hooks angebunden.
## Verifikation
- Build: erfolgreich (Desktop-Konfiguration).
- Tests: Wizard-Modul 6/6 grün (Guards, Transitionen, Back/Next).
- Manueller Smoke: Navigation „Event neu“ startet ohne Koin-Fehler.
## Offene Punkte / Nächste Schritte (Resume-Plan)
1) Tests ergänzen
- Branch-Abdeckung für neuen Guard `needsContactPerson` finalisieren (true/false beide Pfade).
- Property-Test: Resume-Logik (Draft → korrekter Step) vorbereiten.
2) Event-Flow weiter migrieren
- VM-Delegation für weitere Steps (ANSPRECHPERSON_MAPPING, META_DATA) komplettieren.
- Mapping `VeranstaltungWizardState ↔ Acc` erweitern.
3) WizardScaffold UX
- Fehler-Summary im Footer anbinden (aktuell minimal/Platzhalter).
- Dev-Overlay (aktueller Step, Guard-Entscheide) optional aktivierbar.
4) DraftStore
- Persistente Speicherung (Datei/DB) statt in-memory; `flowVersion` + Migration-Schnittstellen.
5) Doku/ADRs
- ADR-0025/0026/0027 Status auf "PROPOSED"/"IN REVIEW" prüfen und ggf. aktualisieren.
- README Wizard-DSL verlinken; DI-Parameterkonventionen ergänzen.
## Wie fortsetzen (Kurz-Anleitung)
- Feature-Flag: Standard AUS. Zum Verproben im Dev-Profil aktivieren (`WizardRuntimeEnabled = true`).
- Tests ausführen:
- Modul-weit: `./gradlew :frontend:core:wizard:jvmTest`
- Projekt-Build: `./gradlew build`
- Einstiegspunkt Desktop: `frontend/shells/meldestelle-desktop/.../main.kt``AppScreen.EventNeu` (prüft Flag & Scaffold).
## Relevante Dateien & Pfade
- Core Wizard
- `frontend/core/wizard/src/commonMain/kotlin/at/mocode/frontend/core/wizard/runtime/WizardCore.kt`
- `frontend/core/wizard/src/commonMain/kotlin/at/mocode/frontend/core/wizard/dsl/WizardDsl.kt`
- `frontend/core/wizard/src/commonMain/kotlin/at/mocode/frontend/core/wizard/ui/WizardScaffold.kt`
- `frontend/core/wizard/src/jvmMain/kotlin/at/mocode/frontend/core/wizard/ui/WizardHotkeys.kt`
- `frontend/core/wizard/src/commonMain/kotlin/at/mocode/frontend/core/wizard/samples/EventFlowSample.kt`
- Tests: `frontend/core/wizard/src/{commonTest|jvmTest}/kotlin/.../WizardRuntimeTest*.kt`
- Feature-Integration
- `frontend/features/veranstaltung-feature/src/jvmMain/kotlin/at/mocode/veranstaltung/feature/presentation/EventWizardScreen.kt`
- `frontend/features/veranstaltung-feature/src/jvmMain/kotlin/at/mocode/veranstaltung/feature/di/VeranstaltungModule.kt`
- `frontend/shells/meldestelle-desktop/src/jvmMain/kotlin/at/mocode/frontend/shell/desktop/screens/layout/components/ContentArea.kt`
- Flags & Navigation
- `frontend/core/domain/src/commonMain/kotlin/at/mocode/frontend/core/domain/config/WizardFeatureFlags.kt`
- `frontend/core/navigation/src/commonMain/kotlin/at/mocode/frontend/core/navigation/AppScreen.kt`
- Doku
- Roadmap: `docs/01_Architecture/MASTER_ROADMAP.md`
- Reference: `docs/01_Architecture/Reference/Wizard-DSL-README.md`
- ADRs: `docs/01_Architecture/adr/0025-wizard-orchestrator-de.md`, `0026-validation-policy-de.md`, `0027-draft-domain-delta-sync-de.md`
## Anmerkungen
- Strangler-Pattern bleibt aktiv (Flag AUS). Risiken: Guard-Sprawl, Draft-Versionierung. Gegenmaßnahmen in ADR-0025/0027 definiert.

View File

@ -0,0 +1,43 @@
# Wizard-Orchestrator (Core Module)
Dieses Modul enthält die Runtime, DSL und UI-Grundbausteine für die deklarative Wizard-Orchestrierung.
## Status (2026-04-21)
- Runtime & DSL (Minimal): `StepId`, `WizardContext`, `WizardState`, `Guard`, `Transition`, `StepEffects`, `WizardRuntime`.
- UI: `WizardScaffold` (MVP) + `WizardScaffoldWithHotkeys` (Enter/Shift+Enter/Alt+S auf JVM).
- Samples/Tests: Demo-Event-Flow + 6 grüne Tests (Next/Back/Guards).
- Drafts: InMemory DraftStore (Autosave/Resume Hooks) vorbereitet.
## Struktur
- `src/commonMain/kotlin/at/mocode/frontend/core/wizard/runtime` Kern-Interfaces & -State
- `src/commonMain/kotlin/at/mocode/frontend/core/wizard/dsl` Flow-DSL
- `src/commonMain/kotlin/at/mocode/frontend/core/wizard/ui` Scaffold/Composable Bausteine
- `src/commonMain/kotlin/at/mocode/frontend/core/wizard/samples` Demo-Flow/Step-IDs
- `src/{commonTest|jvmTest}/kotlin/...` Tests
## Quickstart
Build & Tests:
```bash
./gradlew :frontend:core:wizard:build
./gradlew :frontend:core:wizard:jvmTest
```
Feature-Flag aktivieren (Dev):
- Datei: `frontend/core/domain/src/commonMain/kotlin/at/mocode/frontend/core/domain/config/WizardFeatureFlags.kt`
- Eigenschaft: `WizardRuntimeEnabled = true` (Standard: false)
Startpunkt Desktop:
- `frontend/shells/meldestelle-desktop/src/jvmMain/kotlin/at/mocode/frontend/shell/desktop/main.kt`
- Screen: `AppScreen.EventNeu` (Koin-Parameter wird mit `parametersOf(null as Long?)` übergeben)
## Nächste Schritte (Kurz)
- Weitere Steps im Event-Flow migrieren (VM-Delegation, Mapping ↔ Acc erweitern)
- Fehler-Summary im Scaffold-Footer anbinden
- Persistenten DraftStore implementieren (`flowVersion`, Migrationen)
- Dev-Overlay (aktueller Step, Guard-Entscheide)
## Referenzen
- Roadmap: `docs/01_Architecture/MASTER_ROADMAP.md` (Initiative 3)
- ADR0025/0026/0027: Orchestrator, Validation-Policy, Draft-Domain
- WizardDSL README: `docs/01_Architecture/Reference/Wizard-DSL-README.md`