主体:多语言支持(简体中文源 + 英/日/韩)
- 基础设施:Localizable.xcstrings(String Catalog,sourceLanguage=zh-Hans)
+ pbxproj developmentRegion/knownRegions 注册 en/ja/ko
- 全部硬编码 Locale("zh_CN") → Locale.current;中文 dateFormat → Date.FormatStyle(跟随系统)
- UI 中文字面量统一为 String(appLoc:)(显式绑定所选语言 bundle+locale,即时切换)
Text 字面量走环境 \.locale + Bundle 重定向
- 549 个 catalog key 全部 en/ja/ko 翻译完成(0 未翻译)
- App 内语言切换:我的 → 语言(LanguageManager + 即时生效,无需重启)
- 双用预设(症状/监测指标/慢病)本地化:static→computed 避免缓存
注:本提交为 WIP,一并打包了并行进行的功能模块
(HealthExport 健康导出、Security/Face ID 锁、DiaryAssist 日记 AI 辅助)
及 App 图标、CLAUDE.md、docs/scripts。
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
165 lines
5.5 KiB
Swift
165 lines
5.5 KiB
Swift
import SwiftUI
|
||
import SwiftData
|
||
|
||
struct HomeView: View {
|
||
var onTapArchive: () -> Void = {}
|
||
|
||
@Query(sort: \Indicator.capturedAt, order: .reverse)
|
||
private var indicators: [Indicator]
|
||
|
||
@Query(sort: \Report.reportDate, order: .reverse)
|
||
private var reports: [Report]
|
||
|
||
@Query(sort: \DiaryEntry.createdAt, order: .reverse)
|
||
private var diaries: [DiaryEntry]
|
||
|
||
@Query(sort: \Symptom.startedAt, order: .reverse)
|
||
private var symptoms: [Symptom]
|
||
|
||
@MainActor
|
||
private var recentEntries: [TimelineEntry] {
|
||
let all =
|
||
TimelineEntry.from(indicators: indicators) +
|
||
reports.map(TimelineEntry.from(report:)) +
|
||
diaries.map(TimelineEntry.from(diary:)) +
|
||
symptoms.map(TimelineEntry.from(symptom:))
|
||
return all.sorted { $0.date > $1.date }.prefix(6).map { $0 }
|
||
}
|
||
|
||
private var recentGrouped: [(section: DateSection, items: [TimelineEntry])] {
|
||
TimelineGrouping.group(recentEntries)
|
||
}
|
||
|
||
var body: some View {
|
||
ScrollView(showsIndicators: false) {
|
||
VStack(alignment: .leading, spacing: 0) {
|
||
greeting
|
||
.padding(.top, 4)
|
||
.padding(.bottom, 18)
|
||
|
||
OngoingSymptomsCard()
|
||
.padding(.bottom, 18)
|
||
|
||
recentSection
|
||
.padding(.bottom, 22)
|
||
|
||
archiveSection
|
||
}
|
||
.padding(.horizontal, 20)
|
||
.padding(.bottom, 20)
|
||
}
|
||
.background(Tj.Palette.sand.ignoresSafeArea())
|
||
}
|
||
|
||
private var greeting: some View {
|
||
HStack(alignment: .top) {
|
||
VStack(alignment: .leading, spacing: 4) {
|
||
Text(todayLine)
|
||
.font(.system(size: 12))
|
||
.tracking(1)
|
||
.foregroundStyle(Tj.Palette.text3)
|
||
Text(greetingWord)
|
||
.font(.tjTitle())
|
||
.foregroundStyle(Tj.Palette.text)
|
||
}
|
||
Spacer()
|
||
TjLockChip()
|
||
.padding(.top, 4)
|
||
}
|
||
}
|
||
|
||
private var todayLine: String {
|
||
let now = Date()
|
||
let day = now.formatted(.dateTime.month().day())
|
||
let weekday = now.formatted(.dateTime.weekday(.abbreviated))
|
||
return "\(day) · \(weekday)"
|
||
}
|
||
|
||
private var greetingWord: String {
|
||
switch Calendar.current.component(.hour, from: Date()) {
|
||
case 5..<12: return String(appLoc: "早安")
|
||
case 12..<18: return String(appLoc: "下午好")
|
||
default: return String(appLoc: "晚上好")
|
||
}
|
||
}
|
||
|
||
private var recentSection: some View {
|
||
VStack(alignment: .leading, spacing: 10) {
|
||
HStack(alignment: .lastTextBaseline) {
|
||
Text("最近记录").font(.tjH2()).foregroundStyle(Tj.Palette.text)
|
||
Spacer()
|
||
Button(action: onTapArchive) {
|
||
Text("全部 ›")
|
||
.font(.system(size: 12))
|
||
.foregroundStyle(Tj.Palette.text3)
|
||
}
|
||
.buttonStyle(.plain)
|
||
}
|
||
|
||
if recentEntries.isEmpty {
|
||
emptyRecent
|
||
} else {
|
||
VStack(alignment: .leading, spacing: 14) {
|
||
ForEach(recentGrouped, id: \.section) { group in
|
||
VStack(alignment: .leading, spacing: 8) {
|
||
Text(group.section.label)
|
||
.font(.system(size: 11, weight: .semibold))
|
||
.tracking(0.5)
|
||
.foregroundStyle(Tj.Palette.text3)
|
||
VStack(spacing: 10) {
|
||
ForEach(group.items) { entry in
|
||
TimelineRow(entry: entry)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
private var emptyRecent: some View {
|
||
HStack {
|
||
Text("还没有任何记录,点底部 + 号开始第一条")
|
||
.font(.system(size: 13))
|
||
.foregroundStyle(Tj.Palette.text3)
|
||
Spacer()
|
||
}
|
||
.padding(.vertical, 14)
|
||
.padding(.horizontal, 16)
|
||
.tjCard(bordered: true)
|
||
}
|
||
|
||
private var archiveSection: some View {
|
||
VStack(alignment: .leading, spacing: 10) {
|
||
Text("影像档案").font(.tjH2()).foregroundStyle(Tj.Palette.text)
|
||
|
||
Button(action: onTapArchive) {
|
||
HStack(spacing: 14) {
|
||
TjPlaceholder(label: String(appLoc: "档案 · \(reports.count)"))
|
||
.frame(width: 56, height: 56)
|
||
VStack(alignment: .leading, spacing: 2) {
|
||
Text("我的报告档案")
|
||
.font(.system(size: 14, weight: .semibold))
|
||
.foregroundStyle(Tj.Palette.text)
|
||
Text("\(reports.count) 份 · \(indicators.count) 项指标 · 端侧加密")
|
||
.font(.system(size: 11))
|
||
.foregroundStyle(Tj.Palette.text3)
|
||
}
|
||
Spacer()
|
||
Image(systemName: "chevron.right")
|
||
.font(.system(size: 14, weight: .medium))
|
||
.foregroundStyle(Tj.Palette.text3)
|
||
}
|
||
.padding(14)
|
||
.tjCard(bordered: true)
|
||
}
|
||
.buttonStyle(.plain)
|
||
}
|
||
}
|
||
}
|
||
|
||
#Preview {
|
||
HomeView()
|
||
}
|