- 세트 엔진(수축→이완×횟수, 중단=미기록) iOS·워치 공용, 완주만 records.json 저장 - 첫 화면 시작 버튼 + 세팅(시간·횟수·진동 패턴)/설정(테마) 시트, 아래 스와이프 통계 - 통계: 하루(시간대별)/주간/월간 꺾은선, 달력 기준↔롤링(지난 7일·30일) 전환 - Live Activity(수축/이완·n/총·카운트다운), 백그라운드 무음 오디오로 타이머·진동 유지 - 단축어 '케겔 운동 시작', 워치 앱(즉시 시작·워치 전용 진동·physical-therapy 세션·기록 폰 병합) - 하루 다님 팔레트 계승(라이트/다크/시스템), 앱 아이콘 SVG→PNG 등록 - 검증: Debug·Release·워치 빌드 그린, 시뮬 QA 10장(26·18.5·워치 46/40mm), 완주·기록 경로 확인 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UPmp29DQHY6Ahfss5SRopT
67 lines
2.6 KiB
Swift
67 lines
2.6 KiB
Swift
//
|
|
// TimerSettingsView.swift
|
|
// Keging
|
|
//
|
|
// 세팅 — 수축·이완 시간, 횟수, 진동 패턴
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct TimerSettingsView: View {
|
|
@EnvironmentObject private var settings: SettingsStore
|
|
@Environment(\.dismiss) private var dismiss
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
Form {
|
|
Section {
|
|
Stepper(value: $settings.config.contractSeconds, in: 1...60) {
|
|
LabeledContent("수축", value: "\(settings.config.contractSeconds)초")
|
|
}
|
|
Stepper(value: $settings.config.relaxSeconds, in: 1...60) {
|
|
LabeledContent("이완", value: "\(settings.config.relaxSeconds)초")
|
|
}
|
|
Stepper(value: $settings.config.reps, in: 1...100) {
|
|
LabeledContent("횟수", value: "\(settings.config.reps)회")
|
|
}
|
|
} header: {
|
|
Text("사이클")
|
|
} footer: {
|
|
Text("수축 → 이완을 \(settings.config.reps)회 반복해요. 한 세트 약 \(durationText).")
|
|
}
|
|
|
|
Section {
|
|
Picker("수축 진동", selection: $settings.config.contractPattern) {
|
|
ForEach(HapticPattern.allCases) { Text($0.label).tag($0) }
|
|
}
|
|
Picker("이완 진동", selection: $settings.config.relaxPattern) {
|
|
ForEach(HapticPattern.allCases) { Text($0.label).tag($0) }
|
|
}
|
|
Button("수축 진동 미리 느끼기") { Haptics.play(settings.config.contractPattern) }
|
|
Button("이완 진동 미리 느끼기") { Haptics.play(settings.config.relaxPattern) }
|
|
} header: {
|
|
Text("진동 패턴")
|
|
} footer: {
|
|
Text("수축과 이완의 진동이 달라 화면을 보지 않아도 구분할 수 있어요. 진동은 실기기에서만 느껴져요.")
|
|
}
|
|
}
|
|
.navigationTitle("운동 세팅")
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar {
|
|
ToolbarItem(placement: .confirmationAction) {
|
|
Button("완료") { dismiss() }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private var durationText: String {
|
|
let total = Int(settings.config.totalDuration)
|
|
let minutes = total / 60
|
|
let seconds = total % 60
|
|
if minutes == 0 { return "\(seconds)초" }
|
|
if seconds == 0 { return "\(minutes)분" }
|
|
return "\(minutes)분 \(seconds)초"
|
|
}
|
|
}
|