Files
kangkang/康康/Features/Timeline/DateSection.swift
link2026 22cf4bcefe fix(concurrency): make DateSection nonisolated to silence #expect warnings
5 个 Swift Testing macro 展开的 warning:DateSection 的 Equatable 协议被默认
推到 MainActor,但 #expect 在 nonisolated context 比较 — Swift 6 严格模式会报错。
2026-05-25 23:39:52 +08:00

75 lines
2.4 KiB
Swift

import Foundation
nonisolated enum DateSection: Hashable {
case today
case yesterday
case thisWeek
case thisMonth
case year(Int)
var label: String {
switch self {
case .today: return "今天"
case .yesterday: return "昨天"
case .thisWeek: return "本周"
case .thisMonth: return "本月"
case .year(let y): return "\(y)"
}
}
var sortIndex: Int {
switch self {
case .today: return 0
case .yesterday: return 1
case .thisWeek: return 2
case .thisMonth: return 3
case .year(let y): return 10_000 - y
}
}
}
enum TimelineGrouping {
static func section(for date: Date,
now: Date = .now,
calendar: Calendar = .current) -> DateSection {
if calendar.isDateInToday(date) { return .today }
if calendar.isDateInYesterday(date) { return .yesterday }
if calendar.isDate(date, equalTo: now, toGranularity: .weekOfYear) {
return .thisWeek
}
if calendar.isDate(date, equalTo: now, toGranularity: .month) {
return .thisMonth
}
let year = calendar.component(.year, from: date)
return .year(year)
}
static func group(_ entries: [TimelineEntry],
now: Date = .now,
calendar: Calendar = .current)
-> [(section: DateSection, items: [TimelineEntry])] {
var buckets: [DateSection: [TimelineEntry]] = [:]
for entry in entries {
let key = section(for: entry.date, now: now, calendar: calendar)
buckets[key, default: []].append(entry)
}
return buckets
.map { ($0.key, $0.value.sorted { $0.date > $1.date }) }
.sorted { $0.0.sortIndex < $1.0.sortIndex }
}
}
func formatDuration(_ interval: TimeInterval) -> String {
let totalMinutes = Int(max(0, interval) / 60)
let days = totalMinutes / (60 * 24)
let hours = (totalMinutes % (60 * 24)) / 60
let minutes = totalMinutes % 60
if days > 0 && hours > 0 { return "\(days)\(hours) 小时" }
if days > 0 { return "\(days)" }
if hours > 0 && minutes > 0 { return "\(hours) 小时 \(minutes)" }
if hours > 0 { return "\(hours) 小时" }
if minutes > 0 { return "\(minutes) 分钟" }
return "刚刚"
}