1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 06:10:32 +05:30
yattee/Shared/Player/Video Details/ChaptersView.swift

68 lines
2.0 KiB
Swift
Raw Normal View History

import Foundation
import SDWebImageSwiftUI
import SwiftUI
struct ChaptersView: View {
@ObservedObject private var player = PlayerModel.shared
@Binding var expand: Bool
2023-04-22 23:36:30 +05:30
var chapters: [Chapter] {
player.videoForDisplay?.chapters ?? []
}
2023-04-24 15:38:58 +05:30
var chaptersHaveImages: Bool {
chapters.allSatisfy { $0.image != nil }
}
var body: some View {
if expand && !chapters.isEmpty {
2023-04-22 23:36:30 +05:30
#if os(tvOS)
List {
Section {
ForEach(chapters) { chapter in
ChapterView(chapter: chapter)
}
}
2023-04-22 23:36:30 +05:30
.listRowBackground(Color.clear)
}
2023-04-22 23:36:30 +05:30
.listStyle(.plain)
2022-06-25 05:09:29 +05:30
#else
2023-04-24 15:38:58 +05:30
if chaptersHaveImages {
ScrollView(.horizontal) {
LazyHStack(spacing: 20) {
ForEach(chapters) { chapter in
ChapterView(chapter: chapter)
}
}
.padding(.horizontal, 15)
}
.frame(minHeight: ChapterView.thumbnailHeight + 100)
} else {
Section {
2023-04-22 23:36:30 +05:30
ForEach(chapters) { chapter in
ChapterView(chapter: chapter)
}
}
2023-04-24 15:38:58 +05:30
.padding(.horizontal)
2023-04-22 23:36:30 +05:30
}
2022-06-25 05:09:29 +05:30
#endif
} else if !chapters.isEmpty {
Section {
ChapterView(chapter: chapters[0])
if chapters.count > 1 {
ChapterView(chapter: chapters[1])
.opacity(0.3)
}
}
.padding(.horizontal)
2022-06-25 05:09:29 +05:30
}
}
}
2022-08-21 02:35:40 +05:30
struct ChaptersView_Previews: PreviewProvider {
static var previews: some View {
ChaptersView(expand: .constant(false))
.injectFixtureEnvironmentObjects()
}
}