替换 Xcode 默认模板: - 删除 ContentView/Item/__App - 新增 App/TijiApp(SwiftData ModelContainer)、RootView(3 Tab + RecordSheet) - DesignSystem:Tokens(色板/字体/圆角)+ Components(卡片/按钮/Chip) - Models:Indicator / Report / DiaryEntry @Model 初版 - Features:Home / Quick(A1-A3)/ Archive(B1-B5)/ Record / Trends / Me 静态 UI W2 AI 基座工作将在此基线上叠加。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
60 lines
1.6 KiB
Swift
60 lines
1.6 KiB
Swift
import SwiftUI
|
|
|
|
enum RecentItemStatus {
|
|
case high, archive, diary
|
|
|
|
var dotColor: Color {
|
|
switch self {
|
|
case .high: return Tj.Palette.brick
|
|
case .archive: return Tj.Palette.ink2
|
|
case .diary: return Tj.Palette.leaf
|
|
}
|
|
}
|
|
|
|
var valueColor: Color {
|
|
switch self {
|
|
case .high: return Tj.Palette.brick
|
|
default: return Tj.Palette.text2
|
|
}
|
|
}
|
|
}
|
|
|
|
struct RecentItemRow: View {
|
|
let date: String
|
|
let type: String
|
|
let name: String
|
|
let value: String?
|
|
let status: RecentItemStatus
|
|
|
|
var body: some View {
|
|
HStack(spacing: 12) {
|
|
RoundedRectangle(cornerRadius: 3, style: .continuous)
|
|
.fill(status.dotColor)
|
|
.frame(width: 6, height: 40)
|
|
|
|
VStack(alignment: .leading, spacing: 2) {
|
|
Text("\(date) · \(type)")
|
|
.font(.system(size: 11))
|
|
.tracking(0.3)
|
|
.foregroundStyle(Tj.Palette.text3)
|
|
.lineLimit(1)
|
|
Text(name)
|
|
.font(.system(size: 14, weight: .medium))
|
|
.foregroundStyle(Tj.Palette.text)
|
|
.lineLimit(1)
|
|
.truncationMode(.tail)
|
|
}
|
|
Spacer(minLength: 8)
|
|
if let value {
|
|
Text(value)
|
|
.font(.system(size: 12, weight: .semibold, design: .monospaced))
|
|
.foregroundStyle(status.valueColor)
|
|
.lineLimit(1)
|
|
.fixedSize()
|
|
}
|
|
}
|
|
.padding(12)
|
|
.tjCard(bordered: true)
|
|
}
|
|
}
|