yattee/Shared/Views/ChannelPlaylistCell.swift

60 lines
1.8 KiB
Swift
Raw Normal View History

2021-10-22 23:04:03 +00:00
import SDWebImageSwiftUI
import SwiftUI
struct ChannelPlaylistCell: View {
let playlist: ChannelPlaylist
@Environment(\.navigationStyle) private var navigationStyle
var navigation = NavigationModel.shared
2021-10-22 23:04:03 +00:00
var body: some View {
Button {
2022-11-27 10:42:16 +00:00
NavigationModel.shared.openChannelPlaylist(playlist, navigationStyle: navigationStyle)
2021-10-22 23:04:03 +00:00
} label: {
content
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity)
.contentShape(RoundedRectangle(cornerRadius: 12))
}
.buttonStyle(.plain)
}
var content: some View {
VStack {
HStack(alignment: .top, spacing: 3) {
Image(systemName: "list.and.film")
2022-12-04 12:43:09 +00:00
Text("Playlist".localized().uppercased())
2021-10-22 23:04:03 +00:00
.fontWeight(.light)
.opacity(0.6)
}
.foregroundColor(.secondary)
2022-11-10 18:11:19 +00:00
WebImage(url: playlist.thumbnailURL, options: [.lowPriority])
2022-09-11 19:33:08 +00:00
.resizable()
.placeholder {
Rectangle().fill(Color("PlaceholderColor"))
2021-10-22 23:04:03 +00:00
}
2022-09-11 19:33:08 +00:00
.indicator(.activity)
.frame(width: 165, height: 88)
.clipShape(RoundedRectangle(cornerRadius: 10))
2021-10-22 23:04:03 +00:00
Group {
DetailBadge(text: playlist.title, style: .prominent)
.lineLimit(2)
Text("\(playlist.videosCount ?? playlist.videos.count) videos")
.foregroundColor(.secondary)
.frame(height: 20)
}
}
}
}
struct ChannelPlaylistCell_Previews: PreviewProvider {
static var previews: some View {
ChannelPlaylistCell(playlist: ChannelPlaylist.fixture)
.frame(maxWidth: 320)
.injectFixtureEnvironmentObjects()
}
}