yattee/Shared/Views/ChannelCell.swift

67 lines
1.9 KiB
Swift
Raw Normal View History

import Foundation
import SDWebImageSwiftUI
import SwiftUI
struct ChannelCell: View {
let channel: Channel
@Environment(\.navigationStyle) private var navigationStyle
var body: some View {
Button {
NavigationModel.shared.openChannel(
2021-12-17 16:34:55 +00:00
channel,
2022-06-30 08:05:32 +00:00
navigationStyle: navigationStyle
2021-12-17 16:34:55 +00:00
)
} label: {
content
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity)
.contentShape(RoundedRectangle(cornerRadius: 12))
}
.buttonStyle(.plain)
}
var content: some View {
VStack {
2021-10-22 23:04:03 +00:00
HStack(alignment: .top, spacing: 3) {
Image(systemName: "person.crop.rectangle")
Text("Channel".uppercased())
.fontWeight(.light)
.opacity(0.6)
}
.foregroundColor(.secondary)
2022-09-11 19:33:08 +00:00
2022-11-10 18:11:19 +00:00
WebImage(url: channel.thumbnailURL, options: [.lowPriority])
2022-09-11 19:33:08 +00:00
.resizable()
.placeholder {
Rectangle().fill(Color("PlaceholderColor"))
}
2022-09-11 19:33:08 +00:00
.indicator(.activity)
.frame(width: 88, height: 88)
.clipShape(Circle())
2021-10-22 23:04:03 +00:00
DetailBadge(text: channel.name, style: .prominent)
2021-10-22 23:04:03 +00:00
Group {
if let subscriptions = channel.subscriptionsString {
Text("\(subscriptions) subscribers")
.foregroundColor(.secondary)
} else {
Text("")
}
}
2021-10-22 23:04:03 +00:00
.frame(height: 20)
}
}
}
struct ChannelSearchItem_Preview: PreviewProvider {
static var previews: some View {
Group {
ChannelCell(channel: Video.fixture.channel)
}
.frame(maxWidth: 300, maxHeight: 200)
.injectFixtureEnvironmentObjects()
}
}