yattee/Shared/Player/ChaptersView.swift

39 lines
1.1 KiB
Swift
Raw Normal View History

import Foundation
import SDWebImageSwiftUI
import SwiftUI
struct ChaptersView: View {
@EnvironmentObject<PlayerModel> private var player
var body: some View {
2022-06-24 23:39:29 +00:00
if let chapters = player.currentVideo?.chapters, !chapters.isEmpty {
List {
Section(header: Text("Chapters")) {
ForEach(chapters) { chapter in
2022-08-20 21:05:40 +00:00
ChapterView(chapter: chapter)
}
}
2022-08-09 17:28:16 +00:00
.listRowBackground(Color.clear)
}
2022-06-24 23:39:29 +00:00
#if os(macOS)
.listStyle(.inset)
2022-06-24 23:39:29 +00:00
#elseif os(iOS)
.listStyle(.grouped)
2022-08-09 17:28:16 +00:00
.backport
.scrollContentBackground(false)
2022-06-24 23:39:29 +00:00
#else
.listStyle(.plain)
2022-06-24 23:39:29 +00:00
#endif
} else {
NoCommentsView(text: "No chapters information available", systemImage: "xmark.circle.fill")
}
}
}
2022-08-20 21:05:40 +00:00
struct ChaptersView_Previews: PreviewProvider {
static var previews: some View {
ChaptersView()
.injectFixtureEnvironmentObjects()
}
}