2022-06-18 18:09:49 +05:30
|
|
|
import Foundation
|
|
|
|
import SDWebImageSwiftUI
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct ChaptersView: View {
|
2022-11-25 02:06:05 +05:30
|
|
|
@ObservedObject private var player = PlayerModel.shared
|
2023-11-21 19:55:22 +05:30
|
|
|
@Binding var expand: Bool
|
2024-05-11 23:48:56 +05:30
|
|
|
let chaptersHaveImages: Bool
|
|
|
|
let showThumbnails: Bool
|
2022-06-18 18:09:49 +05:30
|
|
|
|
2023-04-22 23:36:30 +05:30
|
|
|
var chapters: [Chapter] {
|
|
|
|
player.videoForDisplay?.chapters ?? []
|
|
|
|
}
|
|
|
|
|
2022-06-18 18:09:49 +05:30
|
|
|
var body: some View {
|
2023-11-27 16:43:51 +05:30
|
|
|
if !chapters.isEmpty {
|
2024-05-11 23:48:56 +05:30
|
|
|
if chaptersHaveImages, showThumbnails {
|
2023-11-27 16:43:51 +05:30
|
|
|
#if os(tvOS)
|
|
|
|
List {
|
|
|
|
Section {
|
2023-04-24 15:38:58 +05:30
|
|
|
ForEach(chapters) { chapter in
|
2023-11-29 00:35:04 +05:30
|
|
|
ChapterViewTVOS(chapter: chapter)
|
2023-04-24 15:38:58 +05:30
|
|
|
}
|
|
|
|
}
|
2023-11-27 16:43:51 +05:30
|
|
|
.listRowBackground(Color.clear)
|
2023-04-24 15:38:58 +05:30
|
|
|
}
|
2023-11-27 16:43:51 +05:30
|
|
|
.listStyle(.plain)
|
|
|
|
#else
|
2023-11-27 18:48:43 +05:30
|
|
|
ScrollView(.horizontal) {
|
2024-05-12 02:54:17 +05:30
|
|
|
ScrollViewReader { scrollViewProxy in
|
|
|
|
LazyHStack(spacing: 20) {
|
2024-08-26 04:16:35 +05:30
|
|
|
chapterViews(for: chapters[...])
|
2024-05-12 02:54:17 +05:30
|
|
|
}
|
|
|
|
.padding(.horizontal, 15)
|
|
|
|
.onAppear {
|
2024-08-26 04:16:35 +05:30
|
|
|
scrollToCurrentChapter(scrollViewProxy)
|
2024-05-12 02:54:17 +05:30
|
|
|
}
|
2024-08-26 04:16:35 +05:30
|
|
|
.onChange(of: player.currentChapterIndex) { _ in
|
|
|
|
scrollToCurrentChapter(scrollViewProxy)
|
2024-05-12 02:54:17 +05:30
|
|
|
}
|
|
|
|
}
|
2023-04-22 23:36:30 +05:30
|
|
|
}
|
2023-11-27 16:43:51 +05:30
|
|
|
#endif
|
2023-11-27 18:48:43 +05:30
|
|
|
} else if expand {
|
2023-11-29 00:35:04 +05:30
|
|
|
#if os(tvOS)
|
|
|
|
Section {
|
|
|
|
ForEach(chapters) { chapter in
|
|
|
|
ChapterViewTVOS(chapter: chapter)
|
|
|
|
}
|
2023-11-27 18:48:43 +05:30
|
|
|
}
|
2023-11-29 00:35:04 +05:30
|
|
|
#else
|
2024-08-26 04:16:35 +05:30
|
|
|
Section { chapterViews(for: chapters[...]) }
|
|
|
|
.padding(.horizontal)
|
2023-11-29 00:35:04 +05:30
|
|
|
#endif
|
2023-11-27 16:43:51 +05:30
|
|
|
} else {
|
|
|
|
#if os(iOS)
|
|
|
|
Button(action: {
|
|
|
|
self.expand.toggle()
|
|
|
|
}) {
|
2023-11-29 00:35:04 +05:30
|
|
|
Section {
|
2023-12-04 05:09:29 +05:30
|
|
|
chapterViews(for: chapters.prefix(3), opacity: 0.3, clickable: false)
|
2023-11-29 00:35:04 +05:30
|
|
|
}.padding(.horizontal)
|
2023-11-27 16:43:51 +05:30
|
|
|
}
|
2023-11-29 00:35:04 +05:30
|
|
|
#elseif os(macOS)
|
|
|
|
Section {
|
2023-12-04 05:09:29 +05:30
|
|
|
chapterViews(for: chapters.prefix(3), opacity: 0.3, clickable: false)
|
2023-11-29 00:35:04 +05:30
|
|
|
}.padding(.horizontal)
|
2023-11-27 16:43:51 +05:30
|
|
|
#else
|
2023-11-29 00:35:04 +05:30
|
|
|
Section {
|
|
|
|
ForEach(chapters) { chapter in
|
|
|
|
ChapterViewTVOS(chapter: chapter)
|
|
|
|
}
|
|
|
|
}
|
2023-11-27 16:43:51 +05:30
|
|
|
#endif
|
|
|
|
}
|
2023-11-26 19:45:30 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-29 00:35:04 +05:30
|
|
|
#if !os(tvOS)
|
2024-08-26 04:16:35 +05:30
|
|
|
private func chapterViews(for chaptersToShow: ArraySlice<Chapter>, opacity: Double = 1.0, clickable: Bool = true) -> some View {
|
2023-11-29 00:35:04 +05:30
|
|
|
ForEach(Array(chaptersToShow.indices), id: \.self) { index in
|
|
|
|
let chapter = chaptersToShow[index]
|
2024-05-11 23:48:56 +05:30
|
|
|
ChapterView(chapter: chapter, chapterIndex: index, showThumbnail: showThumbnails)
|
2024-05-12 02:54:17 +05:30
|
|
|
.id(index)
|
2023-11-29 00:35:04 +05:30
|
|
|
.opacity(index == 0 ? 1.0 : opacity)
|
2023-12-04 05:09:29 +05:30
|
|
|
.allowsHitTesting(clickable)
|
2023-11-21 19:55:22 +05:30
|
|
|
}
|
2022-06-25 05:09:29 +05:30
|
|
|
}
|
2024-08-26 04:16:35 +05:30
|
|
|
|
|
|
|
private func scrollToCurrentChapter(_ scrollViewProxy: ScrollViewProxy) {
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { // Slight delay to ensure the view is fully rendered
|
|
|
|
if let currentChapterIndex = player.currentChapterIndex {
|
|
|
|
scrollViewProxy.scrollTo(currentChapterIndex, anchor: .center)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-11-29 00:35:04 +05:30
|
|
|
#endif
|
2022-06-18 18:09:49 +05:30
|
|
|
}
|
|
|
|
|
2022-08-21 02:35:40 +05:30
|
|
|
struct ChaptersView_Previews: PreviewProvider {
|
2022-06-18 18:09:49 +05:30
|
|
|
static var previews: some View {
|
2024-05-11 23:48:56 +05:30
|
|
|
ChaptersView(expand: .constant(false), chaptersHaveImages: false, showThumbnails: true)
|
2022-06-18 18:09:49 +05:30
|
|
|
.injectFixtureEnvironmentObjects()
|
|
|
|
}
|
|
|
|
}
|