mirror of
https://github.com/yattee/yattee.git
synced 2025-01-08 22:07:10 +00:00
Video banner layout fixes
This commit is contained in:
parent
57b2276f36
commit
d38a507be5
@ -95,38 +95,14 @@ struct VideoBanner: View {
|
|||||||
.lineLimit(1)
|
.lineLimit(1)
|
||||||
|
|
||||||
#if os(tvOS)
|
#if os(tvOS)
|
||||||
progressView
|
extraAttributes
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
.foregroundColor(.secondary)
|
.foregroundColor(.secondary)
|
||||||
|
|
||||||
HStack(spacing: 16) {
|
#if !os(tvOS)
|
||||||
if let video {
|
extraAttributes
|
||||||
if let date = video.publishedDate {
|
#endif
|
||||||
HStack(spacing: 2) {
|
|
||||||
Text(date)
|
|
||||||
.allowsTightening(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if video.views > 0 {
|
|
||||||
HStack(spacing: 2) {
|
|
||||||
Image(systemName: "eye")
|
|
||||||
Text(video.viewsCount!)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if timeInfo {
|
|
||||||
Spacer()
|
|
||||||
|
|
||||||
timeLabel
|
|
||||||
.layoutPriority(1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.font(.caption)
|
|
||||||
.lineLimit(1)
|
|
||||||
.foregroundColor(.secondary)
|
|
||||||
}
|
}
|
||||||
.frame(maxWidth: .infinity, alignment: .leading)
|
.frame(maxWidth: .infinity, alignment: .leading)
|
||||||
.frame(maxHeight: .infinity)
|
.frame(maxHeight: .infinity)
|
||||||
@ -148,6 +124,40 @@ struct VideoBanner: View {
|
|||||||
.id(id ?? video?.videoID ?? video?.id)
|
.id(id ?? video?.videoID ?? video?.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private var extraAttributes: some View {
|
||||||
|
HStack(spacing: 16) {
|
||||||
|
if let video {
|
||||||
|
if let date = video.publishedDate {
|
||||||
|
HStack(spacing: 2) {
|
||||||
|
Text(date)
|
||||||
|
.allowsTightening(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if video.views > 0 {
|
||||||
|
HStack(spacing: 2) {
|
||||||
|
Image(systemName: "eye")
|
||||||
|
Text(video.viewsCount!)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if timeInfo {
|
||||||
|
Spacer()
|
||||||
|
|
||||||
|
#if os(tvOS)
|
||||||
|
progressView
|
||||||
|
#endif
|
||||||
|
|
||||||
|
timeLabel
|
||||||
|
.layoutPriority(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.font(.caption)
|
||||||
|
.lineLimit(1)
|
||||||
|
.foregroundColor(.secondary)
|
||||||
|
}
|
||||||
|
|
||||||
@ViewBuilder private var smallThumbnail: some View {
|
@ViewBuilder private var smallThumbnail: some View {
|
||||||
ZStack(alignment: .bottomLeading) {
|
ZStack(alignment: .bottomLeading) {
|
||||||
ZStack {
|
ZStack {
|
||||||
|
Loading…
Reference in New Issue
Block a user