2022-06-18 12:39:49 +00:00
|
|
|
import Foundation
|
|
|
|
import SDWebImageSwiftUI
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct ChaptersView: View {
|
2022-11-24 20:36:05 +00:00
|
|
|
@ObservedObject private var player = PlayerModel.shared
|
2022-06-18 12:39:49 +00:00
|
|
|
|
2023-04-22 18:06:30 +00:00
|
|
|
var chapters: [Chapter] {
|
|
|
|
player.videoForDisplay?.chapters ?? []
|
|
|
|
}
|
|
|
|
|
2023-04-24 10:08:58 +00:00
|
|
|
var chaptersHaveImages: Bool {
|
|
|
|
chapters.allSatisfy { $0.image != nil }
|
|
|
|
}
|
|
|
|
|
2022-06-18 12:39:49 +00:00
|
|
|
var body: some View {
|
2023-04-22 18:06:30 +00:00
|
|
|
if !chapters.isEmpty {
|
|
|
|
#if os(tvOS)
|
|
|
|
List {
|
|
|
|
Section {
|
|
|
|
ForEach(chapters) { chapter in
|
|
|
|
ChapterView(chapter: chapter)
|
|
|
|
}
|
2022-06-18 12:39:49 +00:00
|
|
|
}
|
2023-04-22 18:06:30 +00:00
|
|
|
.listRowBackground(Color.clear)
|
2022-06-18 12:39:49 +00:00
|
|
|
}
|
2023-04-22 18:06:30 +00:00
|
|
|
.listStyle(.plain)
|
2022-06-24 23:39:29 +00:00
|
|
|
#else
|
2023-04-24 10:08:58 +00:00
|
|
|
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 18:06:30 +00:00
|
|
|
ForEach(chapters) { chapter in
|
|
|
|
ChapterView(chapter: chapter)
|
|
|
|
}
|
|
|
|
}
|
2023-04-24 10:08:58 +00:00
|
|
|
.padding(.horizontal)
|
2023-04-22 18:06:30 +00:00
|
|
|
}
|
2022-06-24 23:39:29 +00:00
|
|
|
#endif
|
|
|
|
} else {
|
2022-09-28 15:45:05 +00:00
|
|
|
NoCommentsView(text: "No chapters information available".localized(), systemImage: "xmark.circle.fill")
|
2022-06-24 23:39:29 +00:00
|
|
|
}
|
2022-06-18 12:39:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-20 21:05:40 +00:00
|
|
|
struct ChaptersView_Previews: PreviewProvider {
|
2022-06-18 12:39:49 +00:00
|
|
|
static var previews: some View {
|
|
|
|
ChaptersView()
|
|
|
|
.injectFixtureEnvironmentObjects()
|
|
|
|
}
|
|
|
|
}
|