yattee/Shared/Player/Video Details/ChaptersView.swift

87 lines
3.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 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 }
}
var body: some View {
if !chapters.isEmpty {
if chaptersHaveImages {
#if os(tvOS)
List {
Section {
2023-04-24 10:08:58 +00:00
ForEach(chapters) { chapter in
2023-11-28 19:05:04 +00:00
ChapterViewTVOS(chapter: chapter)
2023-04-24 10:08:58 +00:00
}
}
.listRowBackground(Color.clear)
2023-04-24 10:08:58 +00:00
}
.listStyle(.plain)
#else
ScrollView(.horizontal) {
2023-11-28 19:05:04 +00:00
LazyHStack(spacing: 20) { chapterViews(for: chapters.prefix(3), opacity: 1.0) }.padding(.horizontal, 15)
2023-04-22 18:06:30 +00:00
}
#endif
} else if expand {
2023-11-28 19:05:04 +00:00
#if os(tvOS)
Section {
ForEach(chapters) { chapter in
ChapterViewTVOS(chapter: chapter)
}
}
2023-11-28 19:05:04 +00:00
#else
Section { chapterViews(for: chapters[...], opacity: 1.0) }.padding(.horizontal)
#endif
} else {
#if os(iOS)
Button(action: {
self.expand.toggle()
}) {
2023-11-28 19:05:04 +00:00
Section {
chapterViews(for: chapters.prefix(3), opacity: 0.3)
}.padding(.horizontal)
}
2023-11-28 19:05:04 +00:00
#elseif os(macOS)
Section {
chapterViews(for: chapters.prefix(3), opacity: 0.3)
}.padding(.horizontal)
#else
2023-11-28 19:05:04 +00:00
Section {
ForEach(chapters) { chapter in
ChapterViewTVOS(chapter: chapter)
}
}
#endif
}
}
}
2023-11-28 19:05:04 +00:00
#if !os(tvOS)
private func chapterViews(for chaptersToShow: ArraySlice<Chapter>, opacity: Double = 1.0) -> some View {
ForEach(Array(chaptersToShow.indices), id: \.self) { index in
let chapter = chaptersToShow[index]
let nextChapterStart: Double? = index < chaptersToShow.count - 1 ? chaptersToShow[index + 1].start : nil
2023-11-28 15:45:36 +00:00
ChapterView(chapter: chapter, nextChapterStart: nextChapterStart, chapterIndex: index)
2023-11-28 19:05:04 +00:00
.opacity(index == 0 ? 1.0 : opacity)
}
2022-06-24 23:39:29 +00:00
}
2023-11-28 19:05:04 +00:00
#endif
}
2022-08-20 21:05:40 +00:00
struct ChaptersView_Previews: PreviewProvider {
static var previews: some View {
ChaptersView(expand: .constant(false))
.injectFixtureEnvironmentObjects()
}
}