-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
SwiftUIExampleView.swift
260 lines (220 loc) · 11.2 KB
/
SwiftUIExampleView.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
import DSWaveformImage
import DSWaveformImageViews
import SwiftUI
struct SwiftUIExampleView: View {
private enum ActiveTab: Hashable {
case recorder, shape, overview
}
private static let colors = [UIColor.systemPink, UIColor.systemBlue, UIColor.systemGreen]
private static var randomColor: UIColor { colors.randomElement()! }
private static var audioURLs: [URL?] = [
Bundle.main.url(forResource: "example_sound", withExtension: "m4a"),
Bundle.main.url(forResource: "example_sound_2", withExtension: "m4a")
]
private static func randomURL(_ current: URL?) -> URL? { audioURLs.filter { $0 != current }.randomElement()! }
@StateObject private var audioRecorder: AudioRecorder = AudioRecorder()
@State private var configuration: Waveform.Configuration = Waveform.Configuration(
style: .striped(Waveform.Style.StripeConfig(color: Self.randomColor, width: 3, lineCap: .round)),
verticalScalingFactor: 0.9
)
@State private var liveConfiguration: Waveform.Configuration = Waveform.Configuration(
style: .striped(.init(color: randomColor, width: 3, spacing: 3))
)
@State private var audioURL: URL? = audioURLs.first!
@State private var samples: [Float] = []
@State private var silence: Bool = true
@State private var selection: ActiveTab = .overview
var body: some View {
VStack {
Text("SwiftUI examples")
.font(.largeTitle.bold())
Picker("Hey", selection: $selection) {
Text("Recorder").tag(ActiveTab.recorder)
Text("Shape").tag(ActiveTab.shape)
Text("Overview").tag(ActiveTab.overview)
}
.pickerStyle(.segmented)
.padding(.horizontal)
switch selection {
case .recorder: recordingExample
case .shape: shape
case .overview: overview
}
}
.padding(.vertical, 20)
}
@ViewBuilder
private var recordingExample: some View {
VStack {
WaveformLiveCanvas(
samples: audioRecorder.samples,
configuration: liveConfiguration,
renderer: CircularWaveformRenderer(kind: .circle),
shouldDrawSilencePadding: silence
)
Toggle("draw silence", isOn: $silence)
.controlSize(.mini)
.padding(.horizontal)
RecordingIndicatorView(
samples: audioRecorder.samples,
duration: audioRecorder.recordingTime,
shouldDrawSilence: silence,
isRecording: $audioRecorder.isRecording
)
.padding(.horizontal)
}
}
@ViewBuilder
private var shape: some View {
VStack {
Text("WaveformView").font(.monospaced(.title.bold())())
HStack {
Button {
configuration = configuration.with(style: .striped(Waveform.Style.StripeConfig(color: Self.randomColor, width: 3, lineCap: .round)))
liveConfiguration = liveConfiguration.with(style: .striped(.init(color: Self.randomColor, width: 3, spacing: 3)))
} label: {
Label("color", systemImage: "dice")
.frame(maxWidth: .infinity)
}
.font(.body.bold())
.padding(8)
.background(Color(.systemGray6))
.cornerRadius(10)
Button {
audioURL = Self.randomURL(audioURL)
print("will draw \(audioURL!)")
} label: {
Label("waveform", systemImage: "dice")
.frame(maxWidth: .infinity)
}
.font(.body.bold())
.padding(8)
.background(Color(.systemGray6))
.cornerRadius(10)
}
.padding(.horizontal)
// the if let is left here intentionally to illustrate how to deal with optional URLs
// as this was asked in an older GitHub issue
if let audioURL {
WaveformView(audioURL: audioURL, configuration: configuration)
WaveformView(
audioURL: audioURL,
configuration: configuration,
renderer: CircularWaveformRenderer(kind: .ring(0.7))
) { shape in
// you may completely override the shape styling this way
shape
.stroke(
LinearGradient(colors: [.red, Color(Self.randomColor)], startPoint: .zero, endPoint: .topTrailing),
style: StrokeStyle(lineWidth: 3, lineCap: .round))
}
Divider()
Text("WaveformShape").font(.monospaced(.title.bold())())
/// **Note:** It's possible, but discouraged to use WaveformShape directly.
/// As Shapes should not do any expensive computations, the analyzing should happen outside,
/// hence making the API a tiny bit clumsy if used directly, since we do require to know the size,
/// even though the Shape of course intrinsically knows its size already.
GeometryReader { geometry in
WaveformShape(samples: samples)
.fill(Color.orange)
.task {
do {
let samplesNeeded = Int(geometry.size.width * configuration.scale)
let samples = try await WaveformAnalyzer().samples(fromAudioAt: audioURL, count: samplesNeeded)
await MainActor.run { self.samples = samples }
} catch {
assertionFailure(error.localizedDescription)
}
}
}
}
}
}
@ViewBuilder
private var overview: some View {
if let audioURL {
HStack {
VStack {
WaveformView(audioURL: audioURL, configuration: .init(style: .filled(.red)))
WaveformView(audioURL: audioURL, configuration: .init(style: .outlined(.blue, 0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradient([.yellow, .orange])))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradientOutlined([.yellow, .orange], 1)))
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .red, width: 2, spacing: 1))))
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .black)))) { shape in
shape // override the shape styling
.stroke(LinearGradient(colors: [.blue, .pink], startPoint: .bottom, endPoint: .top), lineWidth: 3)
} placeholder: {
ProgressView()
}
}
VStack {
WaveformView(audioURL: audioURL, configuration: .init(style: .filled(.red)), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .outlined(.blue, 0.5)), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .gradient([.yellow, .orange])), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .gradientOutlined([.yellow, .orange], 1)), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .red, width: 2, spacing: 2))), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .black))), renderer: CircularWaveformRenderer()) { shape in
shape // override the shape styling
.stroke(LinearGradient(colors: [.blue, .pink], startPoint: .bottom, endPoint: .top), lineWidth: 3)
} placeholder: {
ProgressView()
}
}
VStack {
WaveformView(audioURL: audioURL, configuration: .init(style: .filled(.red)), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .outlined(.blue, 0.5)), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradient([.yellow, .orange])), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradientOutlined([.yellow, .orange], 1)), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .red, width: 2, spacing: 2))), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .black))), renderer: CircularWaveformRenderer(kind: .ring(0.5))) { shape in
shape // override the shape styling
.stroke(LinearGradient(colors: [.blue, .pink], startPoint: .bottom, endPoint: .top), lineWidth: 3)
} placeholder: {
ProgressView()
}
}
}
}
}
}
struct SwiftUIExampleView_Previews: PreviewProvider {
static var previews: some View {
SwiftUIExampleView()
}
}
private class AudioRecorder: NSObject, ObservableObject, RecordingDelegate {
@Published var samples: [Float] = []
@Published var recordingTime: TimeInterval = 0
@Published var isRecording: Bool = false {
didSet {
guard oldValue != isRecording else { return }
isRecording ? startRecording() : stopRecording()
}
}
private let audioManager: SCAudioManager
override init() {
audioManager = SCAudioManager()
super.init()
audioManager.prepareAudioRecording()
audioManager.recordingDelegate = self
}
func startRecording() {
samples = []
audioManager.startRecording()
isRecording = true
}
func stopRecording() {
audioManager.stopRecording()
isRecording = false
}
// MARK: - RecordingDelegate
func audioManager(_ manager: SCAudioManager!, didAllowRecording flag: Bool) {}
func audioManager(_ manager: SCAudioManager!, didFinishRecordingSuccessfully flag: Bool) {}
func audioManager(_ manager: SCAudioManager!, didUpdateRecordProgress progress: CGFloat) {
let linear = 1 - pow(10, manager.lastAveragePower() / 20)
// Here we add the same sample 3 times to speed up the animation.
// Usually you'd just add the sample once.
recordingTime = audioManager.currentRecordingTime
samples += [linear, linear, linear]
}
}