2021-09-25 10:18:22 +02:00
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
2022-01-06 16:02:53 +01:00
|
|
|
struct PlayerSettings: View {
|
2021-11-04 00:40:01 +01:00
|
|
|
@Default(.instances) private var instances
|
|
|
|
@Default(.playerInstanceID) private var playerInstanceID
|
2022-01-06 16:02:53 +01:00
|
|
|
|
2021-11-04 00:00:17 +01:00
|
|
|
@Default(.playerSidebar) private var playerSidebar
|
2022-12-19 13:35:37 +01:00
|
|
|
|
2021-11-04 00:14:09 +01:00
|
|
|
@Default(.showKeywords) private var showKeywords
|
2023-05-07 21:45:07 +02:00
|
|
|
#if !os(tvOS)
|
|
|
|
@Default(.showScrollToTopInComments) private var showScrollToTopInComments
|
|
|
|
#endif
|
2023-04-22 19:22:13 +02:00
|
|
|
@Default(.expandVideoDescription) private var expandVideoDescription
|
2021-12-19 18:17:04 +01:00
|
|
|
@Default(.pauseOnHidingPlayer) private var pauseOnHidingPlayer
|
2022-01-02 20:43:30 +01:00
|
|
|
#if os(iOS)
|
2022-11-13 12:49:39 +01:00
|
|
|
@Default(.honorSystemOrientationLock) private var honorSystemOrientationLock
|
2022-01-02 20:43:30 +01:00
|
|
|
@Default(.enterFullscreenInLandscape) private var enterFullscreenInLandscape
|
2022-08-07 13:48:50 +02:00
|
|
|
@Default(.rotateToPortraitOnExitFullScreen) private var rotateToPortraitOnExitFullScreen
|
2022-01-02 20:43:30 +01:00
|
|
|
#endif
|
2021-12-19 18:17:04 +01:00
|
|
|
@Default(.closePiPOnNavigation) private var closePiPOnNavigation
|
|
|
|
@Default(.closePiPOnOpeningPlayer) private var closePiPOnOpeningPlayer
|
2022-08-26 22:17:21 +02:00
|
|
|
@Default(.closePlayerOnOpeningPiP) private var closePlayerOnOpeningPiP
|
2021-12-19 18:17:04 +01:00
|
|
|
#if !os(macOS)
|
2022-06-30 11:46:20 +02:00
|
|
|
@Default(.pauseOnEnteringBackground) private var pauseOnEnteringBackground
|
2021-12-19 18:17:04 +01:00
|
|
|
@Default(.closePiPAndOpenPlayerOnEnteringForeground) private var closePiPAndOpenPlayerOnEnteringForeground
|
|
|
|
#endif
|
2021-11-04 00:00:17 +01:00
|
|
|
|
2022-03-20 21:31:19 +01:00
|
|
|
@Default(.enableReturnYouTubeDislike) private var enableReturnYouTubeDislike
|
2022-07-11 18:10:51 +02:00
|
|
|
|
2023-04-22 10:56:42 +02:00
|
|
|
@Default(.showInspector) private var showInspector
|
2022-12-18 19:39:03 +01:00
|
|
|
|
2022-11-24 21:36:05 +01:00
|
|
|
@ObservedObject private var accounts = AccountsModel.shared
|
2022-03-20 21:31:19 +01:00
|
|
|
|
2021-11-04 00:00:17 +01:00
|
|
|
#if os(iOS)
|
|
|
|
private var idiom: UIUserInterfaceIdiom {
|
|
|
|
UIDevice.current.userInterfaceIdiom
|
|
|
|
}
|
|
|
|
#endif
|
2021-09-25 10:18:22 +02:00
|
|
|
|
|
|
|
var body: some View {
|
2021-11-04 23:01:27 +01:00
|
|
|
Group {
|
2022-01-06 16:02:53 +01:00
|
|
|
#if os(macOS)
|
|
|
|
sections
|
2021-12-19 18:17:04 +01:00
|
|
|
|
2022-01-06 16:02:53 +01:00
|
|
|
Spacer()
|
2021-11-04 23:01:27 +01:00
|
|
|
#else
|
2022-01-06 16:02:53 +01:00
|
|
|
List {
|
|
|
|
sections
|
2021-11-04 23:01:27 +01:00
|
|
|
}
|
2022-01-06 16:02:53 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#if os(tvOS)
|
|
|
|
.frame(maxWidth: 1000)
|
|
|
|
#elseif os(iOS)
|
|
|
|
.listStyle(.insetGrouped)
|
|
|
|
#endif
|
|
|
|
.navigationTitle("Player")
|
|
|
|
}
|
2021-11-04 00:40:01 +01:00
|
|
|
|
2022-01-06 16:02:53 +01:00
|
|
|
private var sections: some View {
|
|
|
|
Group {
|
2022-09-04 17:28:30 +02:00
|
|
|
Section(header: SettingsHeader(text: "Playback".localized())) {
|
2022-11-11 20:34:20 +01:00
|
|
|
if !accounts.isEmpty {
|
|
|
|
sourcePicker
|
|
|
|
}
|
2022-01-06 16:02:53 +01:00
|
|
|
pauseOnHidingPlayerToggle
|
2022-06-30 11:46:20 +02:00
|
|
|
#if !os(macOS)
|
|
|
|
pauseOnEnteringBackgroundToogle
|
|
|
|
#endif
|
2022-12-19 12:08:27 +01:00
|
|
|
}
|
|
|
|
|
2023-04-22 10:56:42 +02:00
|
|
|
#if !os(tvOS)
|
|
|
|
Section(header: SettingsHeader(text: "Inspector".localized())) {
|
|
|
|
inspectorVisibilityPicker
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-11-18 23:04:49 +01:00
|
|
|
let interface = Section(header: SettingsHeader(text: "Interface".localized())) {
|
2022-01-06 16:02:53 +01:00
|
|
|
#if os(iOS)
|
|
|
|
if idiom == .pad {
|
2021-11-04 23:01:27 +01:00
|
|
|
sidebarPicker
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-01-06 16:02:53 +01:00
|
|
|
#if os(macOS)
|
|
|
|
sidebarPicker
|
|
|
|
#endif
|
|
|
|
|
2022-11-11 20:34:20 +01:00
|
|
|
if !accounts.isEmpty {
|
|
|
|
keywordsToggle
|
2023-05-07 21:45:07 +02:00
|
|
|
|
|
|
|
#if !os(tvOS)
|
|
|
|
showScrollToTopInCommentsToggle
|
|
|
|
#endif
|
|
|
|
|
2023-04-22 19:22:13 +02:00
|
|
|
#if !os(tvOS)
|
|
|
|
expandVideoDescriptionToggle
|
|
|
|
#endif
|
2022-10-26 13:11:35 +02:00
|
|
|
returnYouTubeDislikeToggle
|
|
|
|
}
|
2022-01-06 16:02:53 +01:00
|
|
|
}
|
2021-12-19 18:17:04 +01:00
|
|
|
|
2022-11-18 23:04:49 +01:00
|
|
|
#if os(tvOS)
|
|
|
|
if !accounts.isEmpty {
|
|
|
|
interface
|
|
|
|
}
|
|
|
|
#elseif os(macOS)
|
|
|
|
interface
|
|
|
|
#elseif os(iOS)
|
|
|
|
if idiom == .pad || !accounts.isEmpty {
|
|
|
|
interface
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-01-06 16:02:53 +01:00
|
|
|
#if os(iOS)
|
2022-09-04 17:28:30 +02:00
|
|
|
Section(header: SettingsHeader(text: "Orientation".localized())) {
|
2022-01-06 16:02:53 +01:00
|
|
|
if idiom == .pad {
|
|
|
|
enterFullscreenInLandscapeToggle
|
|
|
|
}
|
2022-08-07 13:48:50 +02:00
|
|
|
rotateToPortraitOnExitFullScreenToggle
|
2022-11-13 12:49:39 +01:00
|
|
|
honorSystemOrientationLockToggle
|
2021-12-19 18:17:04 +01:00
|
|
|
}
|
2021-11-04 23:01:27 +01:00
|
|
|
#endif
|
2022-08-07 13:48:50 +02:00
|
|
|
|
2022-09-04 17:28:30 +02:00
|
|
|
Section(header: SettingsHeader(text: "Picture in Picture".localized())) {
|
2022-08-07 13:48:50 +02:00
|
|
|
closePiPOnNavigationToggle
|
|
|
|
closePiPOnOpeningPlayerToggle
|
2022-08-26 22:17:21 +02:00
|
|
|
closePlayerOnOpeningPiPToggle
|
2022-08-07 13:48:50 +02:00
|
|
|
#if !os(macOS)
|
|
|
|
closePiPAndOpenPlayerOnEnteringForegroundToggle
|
|
|
|
#endif
|
|
|
|
}
|
2022-01-06 16:02:53 +01:00
|
|
|
}
|
2021-11-04 00:14:09 +01:00
|
|
|
}
|
|
|
|
|
2022-11-13 23:36:46 +01:00
|
|
|
private var videoDetailsHeaderPadding: Double {
|
|
|
|
#if os(macOS)
|
|
|
|
5.0
|
|
|
|
#else
|
|
|
|
0.0
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-11-04 23:01:27 +01:00
|
|
|
private var sourcePicker: some View {
|
|
|
|
Picker("Source", selection: $playerInstanceID) {
|
2022-09-04 17:28:30 +02:00
|
|
|
Text("Instance of current account").tag(String?.none)
|
2021-11-04 00:40:01 +01:00
|
|
|
|
2021-11-04 23:01:27 +01:00
|
|
|
ForEach(instances) { instance in
|
2021-12-04 20:35:41 +01:00
|
|
|
Text(instance.description).tag(Optional(instance.id))
|
2021-11-04 00:40:01 +01:00
|
|
|
}
|
|
|
|
}
|
2022-08-06 16:28:05 +02:00
|
|
|
.modifier(SettingsPickerModifier())
|
2022-07-11 18:10:51 +02:00
|
|
|
}
|
|
|
|
|
2021-11-04 00:14:09 +01:00
|
|
|
private var sidebarPicker: some View {
|
|
|
|
Picker("Sidebar", selection: $playerSidebar) {
|
|
|
|
#if os(macOS)
|
2022-01-06 16:02:53 +01:00
|
|
|
Text("Show sidebar").tag(PlayerSidebarSetting.always)
|
2021-11-04 00:14:09 +01:00
|
|
|
#endif
|
2021-11-04 00:00:17 +01:00
|
|
|
|
|
|
|
#if os(iOS)
|
2021-11-04 00:14:09 +01:00
|
|
|
Text("Show sidebar when space permits").tag(PlayerSidebarSetting.whenFits)
|
2021-09-25 10:18:22 +02:00
|
|
|
#endif
|
2021-11-04 00:14:09 +01:00
|
|
|
|
2022-01-06 16:02:53 +01:00
|
|
|
Text("Hide sidebar").tag(PlayerSidebarSetting.never)
|
2021-09-25 10:18:22 +02:00
|
|
|
}
|
2022-08-06 16:28:05 +02:00
|
|
|
.modifier(SettingsPickerModifier())
|
2021-09-25 10:18:22 +02:00
|
|
|
}
|
2021-11-04 23:01:27 +01:00
|
|
|
|
2023-05-07 21:45:07 +02:00
|
|
|
#if !os(tvOS)
|
|
|
|
private var showScrollToTopInCommentsToggle: some View {
|
|
|
|
Toggle("Show scroll to top button in comments", isOn: $showScrollToTopInComments)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-11-04 23:01:27 +01:00
|
|
|
private var keywordsToggle: some View {
|
2022-01-06 16:02:53 +01:00
|
|
|
Toggle("Show keywords", isOn: $showKeywords)
|
2021-11-04 23:01:27 +01:00
|
|
|
}
|
2021-12-17 21:01:05 +01:00
|
|
|
|
2023-04-22 19:22:13 +02:00
|
|
|
private var expandVideoDescriptionToggle: some View {
|
|
|
|
Toggle("Open video description expanded", isOn: $expandVideoDescription)
|
|
|
|
}
|
|
|
|
|
2022-03-20 21:31:19 +01:00
|
|
|
private var returnYouTubeDislikeToggle: some View {
|
|
|
|
Toggle("Enable Return YouTube Dislike", isOn: $enableReturnYouTubeDislike)
|
|
|
|
}
|
|
|
|
|
2021-12-19 18:17:04 +01:00
|
|
|
private var pauseOnHidingPlayerToggle: some View {
|
|
|
|
Toggle("Pause when player is closed", isOn: $pauseOnHidingPlayer)
|
|
|
|
}
|
|
|
|
|
2022-06-30 11:46:20 +02:00
|
|
|
#if !os(macOS)
|
|
|
|
private var pauseOnEnteringBackgroundToogle: some View {
|
|
|
|
Toggle("Pause when entering background", isOn: $pauseOnEnteringBackground)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-01-02 20:43:30 +01:00
|
|
|
#if os(iOS)
|
2022-11-13 12:49:39 +01:00
|
|
|
private var honorSystemOrientationLockToggle: some View {
|
|
|
|
Toggle("Honor orientation lock", isOn: $honorSystemOrientationLock)
|
|
|
|
.disabled(!enterFullscreenInLandscape)
|
|
|
|
}
|
|
|
|
|
2022-01-02 20:43:30 +01:00
|
|
|
private var enterFullscreenInLandscapeToggle: some View {
|
|
|
|
Toggle("Enter fullscreen in landscape", isOn: $enterFullscreenInLandscape)
|
|
|
|
}
|
2022-08-07 13:48:50 +02:00
|
|
|
|
|
|
|
private var rotateToPortraitOnExitFullScreenToggle: some View {
|
|
|
|
Toggle("Rotate to portrait when exiting fullscreen", isOn: $rotateToPortraitOnExitFullScreen)
|
|
|
|
}
|
2022-01-02 20:43:30 +01:00
|
|
|
#endif
|
|
|
|
|
2021-12-19 18:17:04 +01:00
|
|
|
private var closePiPOnNavigationToggle: some View {
|
|
|
|
Toggle("Close PiP when starting playing other video", isOn: $closePiPOnNavigation)
|
|
|
|
}
|
|
|
|
|
|
|
|
private var closePiPOnOpeningPlayerToggle: some View {
|
|
|
|
Toggle("Close PiP when player is opened", isOn: $closePiPOnOpeningPlayer)
|
|
|
|
}
|
|
|
|
|
2022-08-26 22:17:21 +02:00
|
|
|
private var closePlayerOnOpeningPiPToggle: some View {
|
|
|
|
Toggle("Close player when starting PiP", isOn: $closePlayerOnOpeningPiP)
|
|
|
|
}
|
|
|
|
|
2021-12-19 18:17:04 +01:00
|
|
|
#if !os(macOS)
|
|
|
|
private var closePiPAndOpenPlayerOnEnteringForegroundToggle: some View {
|
|
|
|
Toggle("Close PiP and open player when application enters foreground", isOn: $closePiPAndOpenPlayerOnEnteringForeground)
|
|
|
|
}
|
|
|
|
#endif
|
2023-04-22 10:56:42 +02:00
|
|
|
|
|
|
|
private var inspectorVisibilityPicker: some View {
|
|
|
|
Picker("Visibility", selection: $showInspector) {
|
|
|
|
Text("Always").tag(ShowInspectorSetting.always)
|
|
|
|
Text("Only for local files and URLs").tag(ShowInspectorSetting.onlyLocal)
|
|
|
|
}
|
2023-04-22 19:22:13 +02:00
|
|
|
#if os(macOS)
|
2023-04-22 10:56:42 +02:00
|
|
|
.labelsHidden()
|
2023-04-22 19:22:13 +02:00
|
|
|
#endif
|
2023-04-22 10:56:42 +02:00
|
|
|
}
|
2021-11-04 23:01:27 +01:00
|
|
|
}
|
|
|
|
|
2022-08-07 13:15:27 +02:00
|
|
|
struct PlayerSettings_Previews: PreviewProvider {
|
2021-11-04 23:01:27 +01:00
|
|
|
static var previews: some View {
|
2022-06-17 12:27:01 +02:00
|
|
|
VStack(alignment: .leading) {
|
|
|
|
PlayerSettings()
|
|
|
|
}
|
2022-11-13 23:36:46 +01:00
|
|
|
.frame(minHeight: 800)
|
2022-06-17 12:27:01 +02:00
|
|
|
.injectFixtureEnvironmentObjects()
|
2021-11-04 23:01:27 +01:00
|
|
|
}
|
2021-09-25 10:18:22 +02:00
|
|
|
}
|