68fed087-9049-446f-bfc5-3f8.../Sources/ui/PomodoroView.swift

283 lines
9.0 KiB
Swift
Raw Normal View History

//
// PomodoroView.swift
// plugin v0.1
//
// Big timer + start/pause/reset + today's count + focus/break adjusters.
//
import SwiftUI
struct PomodoroView: View {
@ObservedObject var store: WorkerStore
var body: some View {
VStack(spacing: 18) {
phaseBadge
timerRing
controls
Divider()
.background(WorkerTheme.overlay08)
.padding(.horizontal, 24)
statsRow
settingsRow
Spacer(minLength: 0)
}
.padding(.top, 8)
}
// MARK: - Phase badge
private var phaseBadge: some View {
HStack(spacing: 8) {
Circle()
.fill(phaseColor)
.frame(width: 8, height: 8)
.shadow(color: phaseColor.opacity(0.7), radius: 4)
Text(store.pomodoroPhase.label)
.font(.system(size: 12.5, weight: .semibold))
.foregroundColor(WorkerTheme.fg85)
}
.padding(.horizontal, 12)
.frame(height: 26)
.background(Capsule().fill(WorkerTheme.overlay06))
}
private var phaseColor: Color {
switch store.pomodoroPhase {
case .focus: return WorkerTheme.tomato
case .rest: return WorkerTheme.lime
case .paused: return WorkerTheme.fg55
case .idle: return WorkerTheme.fg40
}
}
// MARK: - Big circular ring
private var timerRing: some View {
ZStack {
// Track
Circle()
.stroke(WorkerTheme.overlay08, lineWidth: 8)
// Progress
Circle()
.trim(from: 0, to: progressFraction)
.stroke(
phaseColor,
style: StrokeStyle(lineWidth: 8, lineCap: .round)
)
.rotationEffect(.degrees(-90))
.animation(.linear(duration: 0.3), value: store.pomodoroRemaining)
VStack(spacing: 4) {
Text(WorkerFormat.mmss(store.pomodoroRemaining))
.font(.system(size: 44, weight: .semibold, design: .rounded))
.monospacedDigit()
.foregroundColor(WorkerTheme.fgPrimary)
Text(subText)
.font(.system(size: 11))
.foregroundColor(WorkerTheme.fg55)
}
}
.frame(width: 200, height: 200)
.padding(.vertical, 4)
}
private var progressFraction: CGFloat {
let total: Int
switch store.pomodoroPhase {
case .focus: total = store.pomodoroFocusMin * 60
case .rest: total = store.pomodoroBreakMin * 60
case .paused, .idle: total = store.pomodoroFocusMin * 60
}
guard total > 0 else { return 0 }
let remaining = max(0, store.pomodoroRemaining)
return CGFloat(total - remaining) / CGFloat(total)
}
private var subText: String {
switch store.pomodoroPhase {
case .focus: return "专注 \(store.pomodoroFocusMin) 分钟"
case .rest: return "休息 \(store.pomodoroBreakMin) 分钟"
case .paused: return "点击继续"
case .idle: return "准备开始"
}
}
// MARK: - Controls
private var controls: some View {
HStack(spacing: 10) {
// Primary start/pause button
Button(action: primaryAction) {
HStack(spacing: 6) {
Image(systemName: primaryIcon)
.font(.system(size: 11, weight: .semibold))
Text(primaryLabel)
.font(.system(size: 12.5, weight: .semibold))
}
.foregroundColor(Color(red: 0x0B/255, green: 0x0B/255, blue: 0x0B/255))
.padding(.horizontal, 18)
.frame(height: 32)
.background(Capsule().fill(WorkerTheme.lime))
}
.buttonStyle(.plain)
// Reset
Button(action: { store.pomodoroReset() }) {
HStack(spacing: 6) {
Image(systemName: "arrow.counterclockwise")
.font(.system(size: 11, weight: .semibold))
Text("重置")
.font(.system(size: 12.5, weight: .semibold))
}
.foregroundColor(WorkerTheme.fg85)
.padding(.horizontal, 16)
.frame(height: 32)
.background(
Capsule()
.fill(WorkerTheme.overlay06)
.overlay(Capsule().stroke(WorkerTheme.overlay12, lineWidth: 0.5))
)
}
.buttonStyle(.plain)
}
}
private var primaryIcon: String {
switch store.pomodoroPhase {
case .focus, .rest: return "pause.fill"
default: return "play.fill"
}
}
private var primaryLabel: String {
switch store.pomodoroPhase {
case .focus, .rest: return "暂停"
case .paused: return "继续"
case .idle: return "开始"
}
}
private func primaryAction() {
switch store.pomodoroPhase {
case .focus, .rest:
store.pomodoroPause()
case .paused, .idle:
store.pomodoroStart()
}
}
// MARK: - Stats
private var statsRow: some View {
HStack(spacing: 10) {
statCard(
title: "今日番茄",
value: "\(store.pomodoroTodayCount)",
accent: WorkerTheme.tomato
)
statCard(
title: "专注时长",
value: "\(store.pomodoroTodayCount * store.pomodoroFocusMin)",
accent: WorkerTheme.lime
)
}
.padding(.horizontal, 16)
}
private func statCard(title: String, value: String, accent: Color) -> some View {
VStack(alignment: .leading, spacing: 4) {
Text(title)
.font(.system(size: 10.5))
.foregroundColor(WorkerTheme.fg55)
Text(value)
.font(.system(size: 18, weight: .semibold, design: .rounded))
.foregroundColor(accent)
.monospacedDigit()
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.horizontal, 12)
.padding(.vertical, 10)
.background(
RoundedRectangle(cornerRadius: 10)
.fill(WorkerTheme.overlay04)
.overlay(
RoundedRectangle(cornerRadius: 10)
.stroke(WorkerTheme.overlay08, lineWidth: 0.5)
)
)
}
// MARK: - Settings
private var settingsRow: some View {
HStack(spacing: 10) {
stepperPill(
title: "专注",
value: store.pomodoroFocusMin,
onMinus: { store.pomodoroSetFocus(store.pomodoroFocusMin - 5) },
onPlus: { store.pomodoroSetFocus(store.pomodoroFocusMin + 5) }
)
stepperPill(
title: "休息",
value: store.pomodoroBreakMin,
onMinus: { store.pomodoroSetBreak(store.pomodoroBreakMin - 1) },
onPlus: { store.pomodoroSetBreak(store.pomodoroBreakMin + 1) }
)
}
.padding(.horizontal, 16)
}
private func stepperPill(title: String, value: Int, onMinus: @escaping () -> Void, onPlus: @escaping () -> Void) -> some View {
HStack(spacing: 0) {
Text(title)
.font(.system(size: 11))
.foregroundColor(WorkerTheme.fg55)
.padding(.leading, 10)
.padding(.trailing, 6)
Button(action: onMinus) {
Image(systemName: "minus")
.font(.system(size: 10, weight: .semibold))
.foregroundColor(WorkerTheme.fg70)
.frame(width: 22, height: 22)
.background(Circle().fill(WorkerTheme.overlay06))
}
.buttonStyle(.plain)
Text("\(value)")
.font(.system(size: 12.5, weight: .semibold))
.foregroundColor(WorkerTheme.fgPrimary)
.monospacedDigit()
.frame(minWidth: 40)
Button(action: onPlus) {
Image(systemName: "plus")
.font(.system(size: 10, weight: .semibold))
.foregroundColor(WorkerTheme.fg70)
.frame(width: 22, height: 22)
.background(Circle().fill(WorkerTheme.overlay06))
}
.buttonStyle(.plain)
.padding(.trailing, 6)
}
.frame(maxWidth: .infinity)
.frame(height: 30)
.background(
RoundedRectangle(cornerRadius: 8)
.fill(WorkerTheme.overlay04)
.overlay(
RoundedRectangle(cornerRadius: 8)
.stroke(WorkerTheme.overlay08, lineWidth: 0.5)
)
)
}
}