-
Notifications
You must be signed in to change notification settings - Fork 134
/
ArtworkViews.swift
84 lines (77 loc) · 2.47 KB
/
ArtworkViews.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
import SwiftUI
struct LargeArtworkView: View {
@State var imageData: Data?
var body: some View {
ZStack {
Rectangle()
.foregroundColor(Color.nowPlayingShadowColor)
.aspectRatio(1, contentMode: .fit)
.frame(maxHeight: 74)
.cornerRadius(9)
.secondaryShadow()
if let imageData = imageData, let uiImage = UIImage(data: imageData) {
Image(uiImage: uiImage)
.resizable()
.aspectRatio(1, contentMode: .fit)
.frame(maxHeight: 74)
.cornerRadius(8)
.artworkShadow()
} else {
Image("no-podcast-artwork")
.resizable()
.aspectRatio(1, contentMode: .fit)
.frame(maxHeight: 74)
.cornerRadius(8)
.artworkShadow()
}
}
}
}
struct SmallArtworkView: View {
@State var imageData: Data?
var body: some View {
ZStack {
Rectangle()
.foregroundColor(Color.nowPlayingShadowColor)
.aspectRatio(1, contentMode: .fit)
.cornerRadius(5)
.secondaryShadow()
if let imageData = imageData, let uiImage = UIImage(data: imageData) {
Image(uiImage: uiImage)
.resizable()
.aspectRatio(1, contentMode: .fit)
.cornerRadius(4)
.artworkShadow()
} else {
Image("no-podcast-artwork")
.resizable()
.aspectRatio(1, contentMode: .fit)
.cornerRadius(4)
.artworkShadow()
}
}
}
}
struct ArtworkShadow: ViewModifier {
func body(content: Content) -> some View {
content
.shadow(color: Color.nowPlayingShadowColor.opacity(0.08), radius: 16, x: 0, y: 3)
}
}
struct SecondaryShadow: ViewModifier {
func body(content: Content) -> some View {
content
.shadow(color: Color.nowPlayingShadowColor.opacity(0.25), radius: 2, x: 0, y: 1)
}
}
extension View {
func artworkShadow() -> some View {
modifier(ArtworkShadow())
}
func secondaryShadow() -> some View {
modifier(SecondaryShadow())
}
}
extension Color {
static let nowPlayingShadowColor = Color("NowPlayingShadow")
}