2021-09-25 13:48:22 +05:30
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
2021-10-23 17:21:02 +05:30
|
|
|
struct PlaybackSettings: View {
|
2021-11-04 05:10:01 +05:30
|
|
|
@Default(.instances) private var instances
|
|
|
|
@Default(.playerInstanceID) private var playerInstanceID
|
2021-09-25 13:48:22 +05:30
|
|
|
@Default(.quality) private var quality
|
2021-11-04 04:30:17 +05:30
|
|
|
@Default(.playerSidebar) private var playerSidebar
|
2021-11-04 04:44:09 +05:30
|
|
|
@Default(.showKeywords) private var showKeywords
|
2021-11-06 01:27:22 +05:30
|
|
|
@Default(.saveHistory) private var saveHistory
|
2021-11-04 04:30:17 +05:30
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
private var idiom: UIUserInterfaceIdiom {
|
|
|
|
UIDevice.current.userInterfaceIdiom
|
|
|
|
}
|
|
|
|
#endif
|
2021-09-25 13:48:22 +05:30
|
|
|
|
|
|
|
var body: some View {
|
2021-11-05 03:31:27 +05:30
|
|
|
Group {
|
|
|
|
#if os(iOS)
|
|
|
|
Section(header: SettingsHeader(text: "Player")) {
|
|
|
|
sourcePicker
|
|
|
|
qualityPicker
|
2021-11-06 01:27:22 +05:30
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
if idiom == .pad {
|
|
|
|
sidebarPicker
|
|
|
|
}
|
2021-11-06 01:27:22 +05:30
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
keywordsToggle
|
2021-11-06 01:27:22 +05:30
|
|
|
saveHistoryToggle
|
2021-11-05 03:31:27 +05:30
|
|
|
}
|
|
|
|
#else
|
|
|
|
Section(header: SettingsHeader(text: "Source")) {
|
|
|
|
sourcePicker
|
|
|
|
}
|
2021-11-04 05:10:01 +05:30
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
Section(header: SettingsHeader(text: "Quality")) {
|
|
|
|
qualityPicker
|
|
|
|
}
|
2021-11-04 04:44:09 +05:30
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
#if os(macOS)
|
|
|
|
Section(header: SettingsHeader(text: "Sidebar")) {
|
|
|
|
sidebarPicker
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
keywordsToggle
|
2021-11-06 01:27:22 +05:30
|
|
|
saveHistoryToggle
|
2021-11-05 03:31:27 +05:30
|
|
|
#endif
|
|
|
|
}
|
2021-11-04 04:44:09 +05:30
|
|
|
|
|
|
|
#if os(macOS)
|
|
|
|
Spacer()
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
private var sourcePicker: some View {
|
|
|
|
Picker("Source", selection: $playerInstanceID) {
|
|
|
|
Text("Best available stream").tag(String?.none)
|
2021-11-04 05:10:01 +05:30
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
ForEach(instances) { instance in
|
|
|
|
Text(instance.longDescription).tag(Optional(instance.id))
|
2021-11-04 05:10:01 +05:30
|
|
|
}
|
|
|
|
}
|
2021-11-05 03:31:27 +05:30
|
|
|
.labelsHidden()
|
|
|
|
#if os(iOS)
|
|
|
|
.pickerStyle(.automatic)
|
|
|
|
#elseif os(tvOS)
|
|
|
|
.pickerStyle(.inline)
|
|
|
|
#endif
|
2021-11-04 05:10:01 +05:30
|
|
|
}
|
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
private var qualityPicker: some View {
|
|
|
|
Picker("Quality", selection: $quality) {
|
2021-11-06 01:05:27 +05:30
|
|
|
ForEach(ResolutionSetting.allCases, id: \.self) { resolution in
|
2021-11-05 03:31:27 +05:30
|
|
|
Text(resolution.description).tag(resolution)
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
2021-11-04 04:30:17 +05:30
|
|
|
}
|
2021-11-05 03:31:27 +05:30
|
|
|
.labelsHidden()
|
2021-09-25 13:48:22 +05:30
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
#if os(iOS)
|
|
|
|
.pickerStyle(.automatic)
|
|
|
|
#elseif os(tvOS)
|
|
|
|
.pickerStyle(.inline)
|
|
|
|
#endif
|
2021-11-04 04:44:09 +05:30
|
|
|
}
|
2021-11-04 04:30:17 +05:30
|
|
|
|
2021-11-04 04:44:09 +05:30
|
|
|
private var sidebarPicker: some View {
|
|
|
|
Picker("Sidebar", selection: $playerSidebar) {
|
|
|
|
#if os(macOS)
|
2021-11-05 03:31:27 +05:30
|
|
|
Text("Show").tag(PlayerSidebarSetting.always)
|
2021-11-04 04:44:09 +05:30
|
|
|
#endif
|
2021-11-04 04:30:17 +05:30
|
|
|
|
|
|
|
#if os(iOS)
|
2021-11-04 04:44:09 +05:30
|
|
|
Text("Show sidebar when space permits").tag(PlayerSidebarSetting.whenFits)
|
2021-09-25 13:48:22 +05:30
|
|
|
#endif
|
2021-11-04 04:44:09 +05:30
|
|
|
|
2021-11-05 03:31:27 +05:30
|
|
|
Text("Hide").tag(PlayerSidebarSetting.never)
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
2021-11-04 04:44:09 +05:30
|
|
|
.labelsHidden()
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
.pickerStyle(.automatic)
|
|
|
|
#elseif os(tvOS)
|
|
|
|
.pickerStyle(.inline)
|
|
|
|
#endif
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
2021-11-05 03:31:27 +05:30
|
|
|
|
|
|
|
private var keywordsToggle: some View {
|
|
|
|
Toggle("Show video keywords", isOn: $showKeywords)
|
|
|
|
}
|
2021-11-06 01:27:22 +05:30
|
|
|
|
|
|
|
private var saveHistoryToggle: some View {
|
|
|
|
Toggle("Save history of played videos", isOn: $saveHistory)
|
|
|
|
}
|
2021-11-05 03:31:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
struct PlaybackSettings_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
PlaybackSettings()
|
|
|
|
.injectFixtureEnvironmentObjects()
|
|
|
|
}
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|