feat(AI): 优化AIRuntime任务取消机制并增强安全保护 - 在AI推理流中添加Task.checkCancellation()检查,使消费者取消时能快速退出 - 为异步流添加onTermination回调以取消内部Task,与LLMSession一致 - 实现SwiftData store的completeUnlessOpen文件保护,提升数据安全性 - 在store备份过程中同样应用加密保护 feat(home): 优化主页交互体验并统一详情查看功能 - 在主页"最近记录"中点击任意条目可打开只读详情sheet - 将时间线详情解析逻辑统一收敛到TimelineDetail.resolve方法 - 修复血压条目的精确反查逻辑,避免时间窗匹配错误 feat(archive): 新增提醒任务汇总卡并完善档案库功能 - 在档案库页面新增提醒任务汇总卡,显示总数和启用状态 - 添加按更新时间倒序合并的提醒标题预览功能 - 实现RemindersListView导航路由,统一管理提醒任务 - 优化导出列表显示,优先使用中文标签展示 feat(me): 优化个人中心界面并改进语言设置体验 - 将个人中心标题改为内容文字渲染,解决导航栏背景问题 - 为语言选择器添加个性化图标,使用本族语代表字区分 - 修复语言设置视图的图标显示逻辑 feat(timeline): 新增记录详情页删除功能并优化图表显示 - 在时间线详情页添加永久删除按钮和确认弹窗 - 实现完整的删除逻辑,包括SwiftData硬删和Vault原图unlink - 修复系列图表的数值范围计算,处理同值数据的对称留白 - 优化血压图表合并逻辑,只保留有数据点的线条 refactor(calendar): 修复DST切换导致的月份天数计算错误 - 使用calendar.range(of:.day,in:.month)替代日期间隔计算 - 避免在夏令时切换月份出现天数偏差问题 fix(ui): 修复多个UI组件的交互响应区域问题 - 为纯描边按钮和胶囊添加contentShape以扩大点击区域 - 修复提醒行展开按钮尺寸,保证不同提醒类型的垂直对齐 ```
191 lines
6.8 KiB
Swift
191 lines
6.8 KiB
Swift
import SwiftUI
|
|
import SwiftData
|
|
|
|
/// 单条「导出身体档案」详情。只读 Markdown + 复制 / 分享 / 删除。
|
|
struct HealthExportDetailView: View {
|
|
@Environment(\.modelContext) private var ctx
|
|
@Environment(\.dismiss) private var dismiss
|
|
|
|
let export: HealthExport
|
|
|
|
@State private var copiedFlash: Bool = false
|
|
@State private var showDeleteConfirm = false
|
|
|
|
var body: some View {
|
|
VStack(spacing: 0) {
|
|
header
|
|
ScrollView {
|
|
VStack(alignment: .leading, spacing: 16) {
|
|
metaBar
|
|
promptBlock
|
|
MarkdownView(text: export.content)
|
|
.padding(16)
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
.background(
|
|
RoundedRectangle(cornerRadius: Tj.Radius.md, style: .continuous)
|
|
.fill(Tj.Palette.paper)
|
|
)
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: Tj.Radius.md, style: .continuous)
|
|
.strokeBorder(Tj.Palette.lineSoft, lineWidth: 1)
|
|
)
|
|
}
|
|
.padding(.horizontal, 20)
|
|
.padding(.vertical, 16)
|
|
}
|
|
actionRow
|
|
}
|
|
.background(Tj.Palette.sand.ignoresSafeArea())
|
|
.alert("永久删除这份导出?", isPresented: $showDeleteConfirm) {
|
|
Button("删除", role: .destructive) {
|
|
ctx.delete(export)
|
|
try? ctx.save()
|
|
dismiss()
|
|
}
|
|
Button("取消", role: .cancel) {}
|
|
} message: {
|
|
Text("删除后无法恢复。源记录(指标、症状等)不受影响。")
|
|
}
|
|
}
|
|
|
|
private var header: some View {
|
|
HStack(alignment: .center, spacing: 12) {
|
|
Button { dismiss() } label: {
|
|
Image(systemName: "xmark")
|
|
.font(.system(size: 16, weight: .semibold))
|
|
.foregroundStyle(Tj.Palette.text)
|
|
.frame(width: 32, height: 32)
|
|
.background(Circle().fill(Tj.Palette.sand2))
|
|
}
|
|
VStack(alignment: .leading, spacing: 2) {
|
|
Text("身体档案 · 历史导出")
|
|
.font(.tjH2())
|
|
.foregroundStyle(Tj.Palette.text)
|
|
Text(Self.absoluteDate(export.createdAt))
|
|
.font(.system(size: 11))
|
|
.foregroundStyle(Tj.Palette.text3)
|
|
}
|
|
Spacer()
|
|
TjLockChip()
|
|
}
|
|
.padding(.horizontal, 20)
|
|
.padding(.vertical, 14)
|
|
.background(Tj.Palette.sand)
|
|
.overlay(alignment: .bottom) {
|
|
Rectangle().fill(Tj.Palette.lineSoft).frame(height: 1)
|
|
}
|
|
}
|
|
|
|
private var metaBar: some View {
|
|
HStack(spacing: 10) {
|
|
TjBadge(text: export.modelTag, style: .neutral)
|
|
if export.decodeRate > 0 {
|
|
Text(String(format: "%.1f tok/s", export.decodeRate))
|
|
.font(.system(size: 11, design: .monospaced))
|
|
.foregroundStyle(Tj.Palette.leaf)
|
|
}
|
|
Spacer()
|
|
if let from = export.inferredTimeFromDate, let to = export.inferredTimeToDate {
|
|
Text("\(Self.shortDate(from)) — \(Self.shortDate(to))")
|
|
.font(.system(size: 11, design: .monospaced))
|
|
.foregroundStyle(Tj.Palette.text3)
|
|
}
|
|
}
|
|
}
|
|
|
|
private var promptBlock: some View {
|
|
HStack(alignment: .top, spacing: 8) {
|
|
Image(systemName: "quote.opening")
|
|
.font(.system(size: 12))
|
|
.foregroundStyle(Tj.Palette.text3)
|
|
Text(export.prompt)
|
|
.font(.system(size: 13))
|
|
.foregroundStyle(Tj.Palette.text2)
|
|
}
|
|
.padding(12)
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
.background(
|
|
RoundedRectangle(cornerRadius: Tj.Radius.sm, style: .continuous)
|
|
.fill(Tj.Palette.sand2)
|
|
)
|
|
}
|
|
|
|
private var actionRow: some View {
|
|
HStack(spacing: 10) {
|
|
Button { copy() } label: {
|
|
Label(copiedFlash ? "已复制" : "复制", systemImage: copiedFlash ? "checkmark" : "doc.on.doc")
|
|
}
|
|
.buttonStyle(TjGhostButton(height: 44, fontSize: 13, horizontalPadding: 14))
|
|
|
|
ShareLink(item: export.content) {
|
|
Label("分享", systemImage: "square.and.arrow.up")
|
|
.font(.system(size: 13, weight: .semibold))
|
|
.tracking(1)
|
|
.foregroundStyle(Tj.Palette.ink)
|
|
.padding(.horizontal, 14)
|
|
.frame(height: 44)
|
|
.background(Capsule().strokeBorder(Tj.Palette.ink, lineWidth: 1))
|
|
.contentShape(Capsule()) // 纯描边胶囊:内边距区也可点
|
|
}
|
|
|
|
Spacer()
|
|
|
|
Button(role: .destructive) {
|
|
showDeleteConfirm = true
|
|
} label: {
|
|
Image(systemName: "trash")
|
|
.font(.system(size: 15, weight: .medium))
|
|
.foregroundStyle(Tj.Palette.brick)
|
|
.frame(width: 44, height: 44)
|
|
.background(Circle().strokeBorder(Tj.Palette.brick.opacity(0.4), lineWidth: 1))
|
|
}
|
|
}
|
|
.padding(.horizontal, 20)
|
|
.padding(.vertical, 12)
|
|
.background(Tj.Palette.paper)
|
|
.overlay(alignment: .top) {
|
|
Rectangle().fill(Tj.Palette.lineSoft).frame(height: 1)
|
|
}
|
|
}
|
|
|
|
private func copy() {
|
|
UIPasteboard.general.string = export.content
|
|
copiedFlash = true
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 1.4) {
|
|
copiedFlash = false
|
|
}
|
|
}
|
|
|
|
private static func absoluteDate(_ d: Date) -> String {
|
|
d.formatted(.dateTime.year().month().day().hour().minute())
|
|
}
|
|
|
|
private static func shortDate(_ d: Date) -> String {
|
|
let f = DateFormatter()
|
|
f.locale = Locale(identifier: "en_US_POSIX")
|
|
f.dateFormat = "MM-dd"
|
|
return f.string(from: d)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
let exp = HealthExport(
|
|
prompt: "我感冒3天了,把最近一个月的健康情况给医生看",
|
|
content: """
|
|
# 就诊摘要 — 感冒就诊
|
|
|
|
## 主诉
|
|
患者男,38 岁,感冒 3 天未愈。
|
|
|
|
## 患者背景
|
|
- 高血压 2 年
|
|
- 在服药:缬沙坦 80mg qd
|
|
""",
|
|
inferredTimeFromDate: Calendar.current.date(byAdding: .day, value: -30, to: .now),
|
|
inferredTimeToDate: .now,
|
|
inferredIntent: "cold_consult",
|
|
decodeRate: 24.3
|
|
)
|
|
return HealthExportDetailView(export: exp)
|
|
}
|