v0.1.0 — Phase β-0 Setup

Repo-Skelett für cards-native, native SwiftUI-Universal-App
für Cardecky (mana e.V.). Web-Parität zu cardecky.mana.how.

- project.yml mit Bundle ev.mana.cards, ManaSwiftCore-Dep via path
- AppConfig: auth.mana.how + cardecky-api.mana.how, Keychain ev.mana.cards
- CardsTheme: forest-Werte aus mana/packages/themes/.../forest.css
- LoginView (Email/PW gegen mana-auth via ManaCore.AuthClient)
- DashboardView als β-1-Placeholder mit cardecky-api-Reachability-Probe
- Log unter Subsystem ev.mana.cards
- 3 AppConfig-Tests
- iOS-Simulator-Build grün

Phasen-Plan: mana/docs/playbooks/CARDS_NATIVE_GREENFIELD.md

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-05-12 19:29:45 +02:00
commit 28b20cd934
21 changed files with 896 additions and 0 deletions

View file

@ -0,0 +1,22 @@
import ManaCore
import SwiftUI
@main
struct CardsNativeApp: App {
@State private var auth: AuthClient
init() {
let auth = AuthClient(config: AppConfig.manaAppConfig)
auth.bootstrap()
_auth = State(initialValue: auth)
Log.app.info("Cards starting — auth status: \(String(describing: auth.status), privacy: .public)")
}
var body: some Scene {
WindowGroup {
RootView()
.environment(auth)
.tint(CardsTheme.primary)
}
}
}

View file

@ -0,0 +1,18 @@
import ManaCore
import SwiftUI
/// Top-Level-Switch: Login vs Dashboard.
/// Ab Phase β-1 wird Dashboard durch eine echte Tab-Bar (Decks / Study /
/// Stats / Account) ersetzt.
struct RootView: View {
@Environment(AuthClient.self) private var auth
var body: some View {
switch auth.status {
case .signedIn:
DashboardView()
case .unknown, .signedOut, .signingIn, .error:
LoginView()
}
}
}