- HealthWorkoutType(WorkoutConfig 필드, 워치 자동 동기화) — 폰·워치 저장 모두 반영 - 설정 → 애플 건강에 '운동 유형' 피커, 푸터·도움말 문구 유형 중립으로 갱신 - 신규 문자열 번역(en/ja), 옛 문구 stale 2건 정리 — 전 카탈로그 missing·stale 0 - 하루 다님 연계 조사 결과 CLAUDE.md 기록(종목 다짐·타임테이블=자동 집계, 운동 시간 지표=워치 실행분만 운동 링 경유 반영) - 검증: Debug·Release·워치 빌드 그린, 설정 화면 QA Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UPmp29DQHY6Ahfss5SRopT
131 lines
4.4 KiB
Swift
131 lines
4.4 KiB
Swift
//
|
||
// WorkoutSettings.swift
|
||
// Keging
|
||
//
|
||
// 세트 구성(수축·이완·횟수)과 진동 패턴 — 폰에서 설정, 워치로 동기화
|
||
//
|
||
|
||
import Foundation
|
||
import Combine
|
||
|
||
/// 진동 패턴 — 수축/이완 각각 선택. 진동 횟수·리듬으로 구분한다
|
||
nonisolated enum HapticPattern: String, CaseIterable, Identifiable, Codable {
|
||
case once, twice, thrice, heartbeat
|
||
|
||
var id: String { rawValue }
|
||
|
||
var label: String {
|
||
switch self {
|
||
case .once: String(localized: "한 번")
|
||
case .twice: String(localized: "두 번")
|
||
case .thrice: String(localized: "세 번")
|
||
case .heartbeat: String(localized: "심장 박동")
|
||
}
|
||
}
|
||
|
||
/// 각 진동이 울리는 시점(초) — 첫 진동은 0
|
||
var beatOffsets: [TimeInterval] {
|
||
switch self {
|
||
case .once: [0]
|
||
case .twice: [0, 0.45]
|
||
case .thrice: [0, 0.45, 0.9]
|
||
case .heartbeat: [0, 0.3, 1.0, 1.3]
|
||
}
|
||
}
|
||
}
|
||
|
||
/// 애플 건강에 저장할 운동 유형 — 취향 선택 (HKWorkoutActivityType 매핑은 HealthKitCalls.swift)
|
||
nonisolated enum HealthWorkoutType: String, CaseIterable, Identifiable, Codable {
|
||
case other, coreTraining
|
||
|
||
var id: String { rawValue }
|
||
|
||
var label: String {
|
||
switch self {
|
||
case .other: String(localized: "기타")
|
||
case .coreTraining: String(localized: "코어 트레이닝")
|
||
}
|
||
}
|
||
}
|
||
|
||
/// 세트 구성 — 세트 = (수축 → 이완) × 횟수
|
||
nonisolated struct WorkoutConfig: Codable, Equatable {
|
||
var contractSeconds: Int = 10
|
||
var relaxSeconds: Int = 5
|
||
var reps: Int = 20
|
||
var contractPattern: HapticPattern = .twice
|
||
var relaxPattern: HapticPattern = .once
|
||
/// 완주 시 애플 건강에 함께 기록할 운동 강도 (0 = 기록 안 함, 1~10)
|
||
var effortScore: Int = 2
|
||
/// 애플 건강에 저장할 운동 유형
|
||
var healthWorkoutType: HealthWorkoutType = .other
|
||
|
||
init(
|
||
contractSeconds: Int = 10,
|
||
relaxSeconds: Int = 5,
|
||
reps: Int = 20,
|
||
contractPattern: HapticPattern = .twice,
|
||
relaxPattern: HapticPattern = .once,
|
||
effortScore: Int = 2,
|
||
healthWorkoutType: HealthWorkoutType = .other
|
||
) {
|
||
self.contractSeconds = contractSeconds
|
||
self.relaxSeconds = relaxSeconds
|
||
self.reps = reps
|
||
self.contractPattern = contractPattern
|
||
self.relaxPattern = relaxPattern
|
||
self.effortScore = effortScore
|
||
self.healthWorkoutType = healthWorkoutType
|
||
}
|
||
|
||
// 필드 추가에도 기존 저장 JSON이 깨지지 않게 전 필드 decodeIfPresent
|
||
init(from decoder: Decoder) throws {
|
||
let container = try decoder.container(keyedBy: CodingKeys.self)
|
||
contractSeconds = try container.decodeIfPresent(Int.self, forKey: .contractSeconds) ?? 10
|
||
relaxSeconds = try container.decodeIfPresent(Int.self, forKey: .relaxSeconds) ?? 5
|
||
reps = try container.decodeIfPresent(Int.self, forKey: .reps) ?? 20
|
||
contractPattern = try container.decodeIfPresent(HapticPattern.self, forKey: .contractPattern) ?? .twice
|
||
relaxPattern = try container.decodeIfPresent(HapticPattern.self, forKey: .relaxPattern) ?? .once
|
||
effortScore = try container.decodeIfPresent(Int.self, forKey: .effortScore) ?? 2
|
||
healthWorkoutType = try container.decodeIfPresent(HealthWorkoutType.self, forKey: .healthWorkoutType) ?? .other
|
||
}
|
||
|
||
var totalDuration: TimeInterval { Double(reps * (contractSeconds + relaxSeconds)) }
|
||
|
||
var summaryText: String {
|
||
String(localized: "수축 \(contractSeconds)초 · 이완 \(relaxSeconds)초 · \(reps)회")
|
||
}
|
||
}
|
||
|
||
@MainActor
|
||
final class SettingsStore: ObservableObject {
|
||
static let shared = SettingsStore()
|
||
|
||
@Published var config: WorkoutConfig {
|
||
didSet {
|
||
save()
|
||
if config != oldValue { onConfigChange?(config) }
|
||
}
|
||
}
|
||
|
||
/// 폰 → 워치 동기화 훅 (iOS에서만 연결)
|
||
var onConfigChange: ((WorkoutConfig) -> Void)?
|
||
|
||
private static let key = "workout.config.v1"
|
||
|
||
private init() {
|
||
if let data = AppGroup.defaults.data(forKey: Self.key),
|
||
let saved = try? JSONDecoder().decode(WorkoutConfig.self, from: data) {
|
||
config = saved
|
||
} else {
|
||
config = WorkoutConfig()
|
||
}
|
||
}
|
||
|
||
private func save() {
|
||
if let data = try? JSONEncoder().encode(config) {
|
||
AppGroup.defaults.set(data, forKey: Self.key)
|
||
}
|
||
}
|
||
}
|