mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
78 lines
2.1 KiB
Swift
78 lines
2.1 KiB
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
struct VideosCellsView: View {
|
|
#if os(iOS)
|
|
@Environment(\.verticalSizeClass) private var verticalSizeClass
|
|
#endif
|
|
|
|
var videos = [Video]()
|
|
|
|
var body: some View {
|
|
ScrollViewReader { scrollView in
|
|
ScrollView(.vertical, showsIndicators: scrollViewShowsIndicators) {
|
|
LazyVGrid(columns: items, alignment: .center) {
|
|
ForEach(videos) { video in
|
|
VideoView(video: video, layout: .cells)
|
|
#if os(tvOS)
|
|
.padding(.horizontal)
|
|
#endif
|
|
}
|
|
}
|
|
.padding()
|
|
}
|
|
.onChange(of: videos) { [videos] newVideos in
|
|
#if !os(tvOS)
|
|
guard !videos.isEmpty, let video = newVideos.first else {
|
|
return
|
|
}
|
|
|
|
scrollView.scrollTo(video.id, anchor: .top)
|
|
#endif
|
|
}
|
|
#if os(tvOS)
|
|
.padding(.horizontal, 10)
|
|
#endif
|
|
}
|
|
.edgesIgnoringSafeArea(.horizontal)
|
|
}
|
|
|
|
var items: [GridItem] {
|
|
#if os(tvOS)
|
|
videos.count < 3 ? Array(repeating: GridItem(.fixed(540)), count: [videos.count, 1].max()!) : adaptiveItem
|
|
#else
|
|
adaptiveItem
|
|
#endif
|
|
}
|
|
|
|
var adaptiveItem: [GridItem] {
|
|
[GridItem(.adaptive(minimum: adaptiveGridItemMinimumSize))]
|
|
}
|
|
|
|
var adaptiveGridItemMinimumSize: CGFloat {
|
|
#if os(iOS)
|
|
return verticalSizeClass == .regular ? 320 : 800
|
|
#elseif os(tvOS)
|
|
return 540
|
|
#else
|
|
return 320
|
|
#endif
|
|
}
|
|
|
|
var scrollViewShowsIndicators: Bool {
|
|
#if !os(tvOS)
|
|
true
|
|
#else
|
|
false
|
|
#endif
|
|
}
|
|
}
|
|
|
|
struct VideoCellsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
VideosView(videos: Video.allFixtures)
|
|
.frame(minWidth: 1000)
|
|
.environmentObject(NavigationState())
|
|
}
|
|
}
|