mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
101 lines
2.7 KiB
Swift
101 lines
2.7 KiB
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
struct PlaybackSettings: View {
|
|
@Default(.instances) private var instances
|
|
@Default(.playerInstanceID) private var playerInstanceID
|
|
@Default(.quality) private var quality
|
|
@Default(.playerSidebar) private var playerSidebar
|
|
@Default(.showKeywords) private var showKeywords
|
|
|
|
#if os(iOS)
|
|
private var idiom: UIUserInterfaceIdiom {
|
|
UIDevice.current.userInterfaceIdiom
|
|
}
|
|
#endif
|
|
|
|
var body: some View {
|
|
playerInstanceSection
|
|
|
|
qualitySection
|
|
|
|
#if !os(tvOS)
|
|
playerSection
|
|
#endif
|
|
|
|
#if os(macOS)
|
|
Spacer()
|
|
#endif
|
|
}
|
|
|
|
private var playerInstanceSection: some View {
|
|
Section(header: Text("Preferred playback source")) {
|
|
Picker("Source", selection: $playerInstanceID) {
|
|
Text("Best available stream").tag(String?.none)
|
|
|
|
ForEach(instances) { instance in
|
|
Text(instance.longDescription).tag(Optional(instance.id))
|
|
}
|
|
}
|
|
.labelsHidden()
|
|
#if os(iOS)
|
|
.pickerStyle(.automatic)
|
|
#elseif os(tvOS)
|
|
.pickerStyle(.inline)
|
|
#endif
|
|
}
|
|
}
|
|
|
|
private var qualitySection: some View {
|
|
Section(header: Text("Quality")) {
|
|
Picker("Quality", selection: $quality) {
|
|
ForEach(Stream.ResolutionSetting.allCases, id: \.self) { resolution in
|
|
Text(resolution.description).tag(resolution)
|
|
}
|
|
}
|
|
.labelsHidden()
|
|
|
|
#if os(iOS)
|
|
.pickerStyle(.automatic)
|
|
#elseif os(tvOS)
|
|
.pickerStyle(.inline)
|
|
#endif
|
|
}
|
|
}
|
|
|
|
private var playerSection: some View {
|
|
Section(header: Text("Player")) {
|
|
#if os(iOS)
|
|
if idiom == .pad {
|
|
sidebarPicker
|
|
}
|
|
#elseif os(macOS)
|
|
sidebarPicker
|
|
#endif
|
|
|
|
Toggle("Show video keywords", isOn: $showKeywords)
|
|
}
|
|
}
|
|
|
|
private var sidebarPicker: some View {
|
|
Picker("Sidebar", selection: $playerSidebar) {
|
|
#if os(macOS)
|
|
Text("Show sidebar").tag(PlayerSidebarSetting.always)
|
|
#endif
|
|
|
|
#if os(iOS)
|
|
Text("Show sidebar when space permits").tag(PlayerSidebarSetting.whenFits)
|
|
#endif
|
|
|
|
Text("Hide sidebar").tag(PlayerSidebarSetting.never)
|
|
}
|
|
.labelsHidden()
|
|
|
|
#if os(iOS)
|
|
.pickerStyle(.automatic)
|
|
#elseif os(tvOS)
|
|
.pickerStyle(.inline)
|
|
#endif
|
|
}
|
|
}
|