1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 14:20:32 +05:30
yattee/Shared/Player/RelatedView.swift

44 lines
1.2 KiB
Swift
Raw Normal View History

import Defaults
2021-11-03 04:32:02 +05:30
import SwiftUI
struct RelatedView: View {
@ObservedObject private var player = PlayerModel.shared
2021-11-03 04:32:02 +05:30
var body: some View {
List {
if let related = player.currentVideo?.related {
2021-11-03 04:32:02 +05:30
Section(header: Text("Related")) {
ForEach(related) { video in
PlayerQueueRow(item: PlayerQueueItem(video))
2022-07-10 23:21:46 +05:30
.listRowBackground(Color.clear)
.contextMenu {
2022-08-14 22:31:22 +05:30
VideoContextMenuView(video: video)
}
2021-11-03 04:32:02 +05:30
}
2022-11-19 02:57:13 +05:30
2022-11-14 02:22:29 +05:30
Color.clear.padding(.bottom, 50)
.listRowBackground(Color.clear)
2022-11-19 02:57:13 +05:30
.backport
.listRowSeparator(false)
2021-11-03 04:32:02 +05:30
}
}
}
#if os(macOS)
2021-11-08 21:59:35 +05:30
.listStyle(.inset)
2021-11-03 04:32:02 +05:30
#elseif os(iOS)
2021-11-08 21:59:35 +05:30
.listStyle(.grouped)
2022-07-10 23:21:46 +05:30
.backport
.scrollContentBackground(false)
2021-11-03 04:32:02 +05:30
#else
2021-11-08 21:59:35 +05:30
.listStyle(.plain)
2021-11-03 04:32:02 +05:30
#endif
}
}
struct RelatedView_Previews: PreviewProvider {
static var previews: some View {
RelatedView()
2022-11-19 02:57:13 +05:30
.injectFixtureEnvironmentObjects()
2021-11-03 04:32:02 +05:30
}
}