1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/Videos/VideoCell.swift

265 lines
8.2 KiB
Swift
Raw Normal View History

2021-07-28 04:10:04 +05:30
import Defaults
import SDWebImageSwiftUI
2021-07-28 02:56:52 +05:30
import SwiftUI
struct VideoCell: View {
var video: Video
@State private var playerNavigationLinkActive = false
@State private var lowQualityThumbnail = false
@Environment(\.inNavigationView) private var inNavigationView
2021-07-28 04:10:04 +05:30
#if os(iOS)
@Environment(\.verticalSizeClass) private var verticalSizeClass
@Environment(\.horizontalCells) private var horizontalCells
2021-07-28 04:10:04 +05:30
#endif
@EnvironmentObject<PlayerModel> private var player
2021-07-28 04:10:04 +05:30
2021-07-28 02:56:52 +05:30
var body: some View {
Group {
Button(action: {
player.playNow(video)
if inNavigationView {
playerNavigationLinkActive = true
} else {
player.presentPlayer()
2021-08-03 02:40:22 +05:30
}
}) {
content
}
NavigationLink(isActive: $playerNavigationLinkActive, destination: {
VideoPlayerView()
.environment(\.inNavigationView, true)
}) {
EmptyView()
2021-07-28 04:10:04 +05:30
}
}
2021-09-27 03:58:42 +05:30
.buttonStyle(.plain)
2021-08-03 02:40:22 +05:30
.contentShape(RoundedRectangle(cornerRadius: 12))
.contextMenu { VideoContextMenuView(video: video, playerNavigationLinkActive: $playerNavigationLinkActive) }
2021-08-02 04:31:24 +05:30
}
2021-07-28 04:10:04 +05:30
var content: some View {
VStack {
2021-09-27 03:58:42 +05:30
#if os(iOS)
if verticalSizeClass == .compact, !horizontalCells {
horizontalRow
.padding(.vertical, 4)
} else {
verticalRow
2021-09-27 03:58:42 +05:30
}
#else
verticalRow
#endif
}
#if os(macOS)
.background()
#endif
}
#if os(iOS)
var horizontalRow: some View {
HStack(alignment: .top, spacing: 2) {
Section {
#if os(tvOS)
thumbnailImage(quality: .medium)
#else
thumbnail
#endif
}
.frame(maxWidth: 320)
2021-07-28 04:10:04 +05:30
VStack(alignment: .leading, spacing: 0) {
videoDetail(video.title, lineLimit: 5)
.frame(minWidth: 0, maxWidth: .infinity, alignment: .leading)
2021-07-28 04:10:04 +05:30
videoDetail(video.author)
2021-07-28 04:10:04 +05:30
if additionalDetailsAvailable {
Spacer()
2021-09-19 02:06:42 +05:30
HStack {
if let date = video.publishedDate {
VStack {
Image(systemName: "calendar")
Text(date)
}
2021-09-19 02:06:42 +05:30
}
2021-07-28 04:10:04 +05:30
if video.views != 0 {
VStack {
Image(systemName: "eye")
Text(video.viewsCount!)
}
2021-09-19 02:06:42 +05:30
}
}
.foregroundColor(.secondary)
2021-09-19 02:06:42 +05:30
}
}
.padding()
.frame(minHeight: 180)
2021-07-28 04:10:04 +05:30
#if os(tvOS)
if video.playTime != nil || video.live || video.upcoming {
2021-08-03 02:40:22 +05:30
Spacer()
VStack(alignment: .center) {
Spacer()
if let time = video.playTime {
HStack(spacing: 4) {
Image(systemName: "clock")
Text(time)
.fontWeight(.bold)
}
.foregroundColor(.secondary)
} else if video.live {
DetailBadge(text: "Live", style: .outstanding)
} else if video.upcoming {
DetailBadge(text: "Upcoming", style: .informational)
2021-08-03 02:40:22 +05:30
}
2021-08-02 04:31:24 +05:30
Spacer()
}
2021-08-03 02:40:22 +05:30
}
#endif
}
2021-07-28 04:10:04 +05:30
}
#endif
2021-07-28 04:10:04 +05:30
var verticalRow: some View {
2021-09-19 02:06:42 +05:30
VStack(alignment: .leading, spacing: 0) {
2021-08-02 04:31:24 +05:30
thumbnail
2021-07-28 04:10:04 +05:30
2021-09-25 13:48:22 +05:30
VStack(alignment: .leading, spacing: 0) {
2021-08-02 04:31:24 +05:30
videoDetail(video.title, lineLimit: additionalDetailsAvailable ? 2 : 3)
#if os(tvOS)
2021-08-03 02:40:22 +05:30
.frame(minHeight: additionalDetailsAvailable ? 80 : 120, alignment: .top)
#elseif os(macOS)
.frame(minHeight: 30, alignment: .top)
#else
.frame(minHeight: 50, alignment: .top)
2021-08-02 04:31:24 +05:30
#endif
.padding(.bottom, 4)
2021-07-28 04:10:04 +05:30
2021-09-14 02:11:16 +05:30
Group {
if additionalDetailsAvailable {
2021-09-19 02:06:42 +05:30
HStack(spacing: 8) {
if let date = video.publishedDate {
Image(systemName: "calendar")
Text(date)
}
if video.views != 0 {
Image(systemName: "eye")
Text(video.viewsCount!)
}
}
.foregroundColor(.secondary)
2021-09-14 02:11:16 +05:30
} else {
Spacer()
}
2021-07-28 04:10:04 +05:30
}
2021-09-14 02:11:16 +05:30
.frame(minHeight: 30, alignment: .top)
2021-09-25 13:48:22 +05:30
#if os(tvOS)
.padding(.bottom, 10)
#endif
2021-07-28 04:10:04 +05:30
}
2021-09-19 02:06:42 +05:30
.padding(.top, 4)
.frame(minWidth: 0, maxWidth: .infinity, alignment: .topLeading)
2021-08-02 04:31:24 +05:30
#if os(tvOS)
2021-08-03 02:40:22 +05:30
.padding(.horizontal, 8)
2021-08-02 04:31:24 +05:30
#endif
2021-07-28 04:10:04 +05:30
}
}
var additionalDetailsAvailable: Bool {
video.publishedDate != nil || video.views != 0
}
2021-08-02 04:31:24 +05:30
var thumbnail: some View {
ZStack(alignment: .leading) {
thumbnailImage(quality: lowQualityThumbnail ? .medium : .maxresdefault)
2021-07-28 04:10:04 +05:30
VStack {
HStack(alignment: .top) {
if video.live {
DetailBadge(text: "Live", style: .outstanding)
} else if video.upcoming {
DetailBadge(text: "Upcoming", style: .informational)
}
Spacer()
DetailBadge(text: video.author, style: .prominent)
}
.padding(10)
Spacer()
HStack(alignment: .top) {
Spacer()
if let time = video.playTime {
DetailBadge(text: time, style: .prominent)
}
}
.padding(10)
}
}
}
2021-08-02 04:31:24 +05:30
func thumbnailImage(quality: Thumbnail.Quality) -> some View {
WebImage(url: video.thumbnailURL(quality: quality))
.resizable()
.placeholder {
Rectangle().fill(Color("PlaceholderColor"))
2021-07-28 04:10:04 +05:30
}
.onFailure { _ in
lowQualityThumbnail = true
}
.indicator(.progress)
.mask(RoundedRectangle(cornerRadius: 12))
.modifier(AspectRatioModifier())
2021-08-03 02:40:22 +05:30
#if os(tvOS)
2021-09-27 03:58:42 +05:30
.frame(minHeight: 320)
2021-08-03 02:40:22 +05:30
#endif
2021-07-28 04:10:04 +05:30
}
2021-08-02 04:31:24 +05:30
func videoDetail(_ text: String, lineLimit: Int = 1) -> some View {
2021-07-28 04:10:04 +05:30
Text(text)
2021-08-02 04:31:24 +05:30
.fontWeight(.bold)
2021-07-28 04:10:04 +05:30
.lineLimit(lineLimit)
.truncationMode(.middle)
2021-07-28 02:56:52 +05:30
}
2021-08-03 02:40:22 +05:30
2021-09-19 02:06:42 +05:30
struct AspectRatioModifier: ViewModifier {
@Environment(\.horizontalCells) private var horizontalCells
func body(content: Content) -> some View {
Group {
if horizontalCells {
content
} else {
content
.aspectRatio(1.777, contentMode: .fill)
}
}
}
}
2021-07-28 02:56:52 +05:30
}
struct VideoView_Preview: PreviewProvider {
static var previews: some View {
Group {
VideoCell(video: Video.fixture)
}
.frame(maxWidth: 300, maxHeight: 200)
.injectFixtureEnvironmentObjects()
}
}