560efb9554
- AppFeature: SageTheme tokens, AppModel (@MainActor @Observable store), RootView (DEVONthink NavigationSplitView), Dashboard/Documents(MD-first+pending fallback+?token= download)/Search/Ask/Memos/Digest pages
- AI seam: AIService actor + AIResult, AppAIComposition (MockAIProvider x4 tiers), AICompletionView (numbered citations + always-visible routing badge), backend picker with visible explicit-unavailable error
- MarkdownView: block-aware renderer (GFM table separator-row skip, AttributedString inline-only)
- DSApp: thin @main, injects FixtureDSClient + mock AIRouter (zero backend / zero LLM)
swift build (full app) + swift test (19) green under Swift 6 strict concurrency. Sources/AI untouched (isolation vs freeze 17f8830 = clean).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
39 lines
1.8 KiB
Swift
39 lines
1.8 KiB
Swift
import SwiftUI
|
|
|
|
/// Corpus-health overview (not a dumped table). Stat hero + domain distribution bars; tapping a
|
|
/// domain jumps to Documents (cross-page nav proof).
|
|
struct DashboardView: View {
|
|
@Environment(AppModel.self) private var model
|
|
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack(alignment: .leading, spacing: 18) {
|
|
if let s = model.stats {
|
|
LazyVGrid(columns: [GridItem(.adaptive(minimum: 150), spacing: 12)], spacing: 12) {
|
|
StatCard(title: "전체", value: s.total, color: Sage.brand)
|
|
StatCard(title: "문서", value: s.documents, color: Sage.brand)
|
|
StatCard(title: "검토 대기", value: s.reviewPending, color: Sage.amber)
|
|
StatCard(title: "파이프라인 실패", value: s.pipelineFailed, color: Sage.danger)
|
|
}
|
|
|
|
VStack(alignment: .leading, spacing: 10) {
|
|
Text("도메인 분포").font(.headline).foregroundStyle(Sage.ink)
|
|
ForEach(s.byDomain.sorted { $0.value > $1.value }, id: \.key) { key, value in
|
|
DomainBar(name: key, count: value, max: s.byDomain.values.max() ?? 1)
|
|
.contentShape(Rectangle())
|
|
.onTapGesture { model.section = .documents }
|
|
}
|
|
}
|
|
.padding(16)
|
|
.background(Sage.card, in: RoundedRectangle(cornerRadius: 14))
|
|
.overlay(RoundedRectangle(cornerRadius: 14).stroke(Sage.line))
|
|
} else {
|
|
ProgressView().frame(maxWidth: .infinity, minHeight: 200)
|
|
}
|
|
}
|
|
.padding(20)
|
|
}
|
|
.background(Sage.surface)
|
|
}
|
|
}
|