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