-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathVoiceMemoRow.swift
61 lines (51 loc) · 1.9 KB
/
VoiceMemoRow.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import Atoms
import SwiftUI
struct VoiceMemoRow: View {
@Binding
var voiceMemo: VoiceMemo
@ViewContext
var context
var isPlaying: Binding<Bool> {
context.binding(IsPlayingAtom(voiceMemo: voiceMemo))
}
var elapsedTime: TimeInterval {
context.watch(PlayingElapsedTimeAtom(voiceMemo: voiceMemo)).value ?? .zero
}
var progress: Double {
max(0, min(1, elapsedTime / voiceMemo.duration))
}
var body: some View {
GeometryReader { proxy in
ZStack(alignment: .leading) {
if isPlaying.wrappedValue {
Rectangle()
.foregroundColor(Color(.systemGray5))
.frame(width: proxy.size.width * CGFloat(progress))
.animation(.linear(duration: 0.5), value: progress)
}
HStack {
TextField(
"Untitled, \(voiceMemo.date.formatted(date: .numeric, time: .shortened))",
text: $voiceMemo.title
)
Spacer()
if let time = dateComponentsFormatter.string(from: isPlaying.wrappedValue ? elapsedTime : voiceMemo.duration) {
Text(time)
.font(.footnote.monospacedDigit())
.foregroundColor(Color(.systemGray))
}
Button {
isPlaying.wrappedValue.toggle()
} label: {
Image(systemName: isPlaying.wrappedValue ? "stop.circle" : "play.circle")
.font(Font.system(size: 22))
}
}
.frame(maxHeight: .infinity)
.padding([.leading, .trailing])
}
}
.buttonStyle(.borderless)
.listRowInsets(EdgeInsets())
}
}