apps/rebreak-binder-mac/ — neue macOS-App die User durch den kompletten Self-Bind-Prozess führt: Welcome → Preflight → Supervise → Enroll → Configure (MDM-Push + Pre/Post-Check) → Sideload Lock-Profile (AirDrop). 3-Layer Smart-Resume: supervised? + Enrollment-Profil installed (cfgutil Ground-Truth)? + MDM-Ack fresh (NanoMDM-DB via ssh+psql)? Services: DeviceDetector (ideviceinfo + cfgutil), SuperviseRunner (spawnt supervise-magic CLI), MDMClient (PUT /v1/enqueue?push=1, Apple XML-Plist, identisch zum server-watcher-Format), MDMStatus (DB-Real- Check + ManagedApplicationList-Result-Read). Plus: - fix(supervise-magic): EOF nach ProcessMessage Response (ErrorCode=0) ist Success, nicht Error — vermeidet false-fail bei iPhone-Restore- Reboot - feat(mdm-profiles): rebreak-content-filter-mdm.mobileconfig als MDM-Push-Variante (ohne ConsentText, ohne globales allowAppRemoval= false — per-app via managed-state) End-to-End validiert: App-Push via Ad-Hoc-Manifest (silent), Managed- State via ManagedApplicationList-Query, NEFilter-Mode nach App-Force- Quit, Lock-Profile non-removable nach Sideload. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
31 lines
917 B
Swift
31 lines
917 B
Swift
import SwiftUI
|
|
|
|
struct StepIndicator: View {
|
|
let current: WizardStep
|
|
|
|
var body: some View {
|
|
HStack(spacing: 8) {
|
|
ForEach(WizardStep.allCases) { step in
|
|
if step != .done {
|
|
Circle()
|
|
.fill(color(for: step))
|
|
.frame(width: 12, height: 12)
|
|
if step.rawValue < WizardStep.total - 1 {
|
|
Rectangle()
|
|
.fill(Color.gray.opacity(0.3))
|
|
.frame(height: 1)
|
|
.frame(maxWidth: 30)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.padding(.vertical, 12)
|
|
}
|
|
|
|
private func color(for step: WizardStep) -> Color {
|
|
if step.rawValue < current.rawValue { return .green }
|
|
if step == current { return .accentColor }
|
|
return Color.gray.opacity(0.3)
|
|
}
|
|
}
|