2021-06-26 23:29:55 +00:00
|
|
|
import Defaults
|
2021-10-19 21:27:04 +00:00
|
|
|
import Foundation
|
2022-06-18 12:39:49 +00:00
|
|
|
import SwiftUI
|
2022-01-02 19:41:04 +00:00
|
|
|
#if os(iOS)
|
|
|
|
import UIKit
|
|
|
|
#endif
|
2021-06-26 23:29:55 +00:00
|
|
|
|
2021-11-03 23:14:09 +00:00
|
|
|
extension Defaults.Keys {
|
2022-07-01 21:28:32 +00:00
|
|
|
static let instancesManifest = Key<String>("instancesManifest", default: "")
|
|
|
|
static let countryOfPublicInstances = Key<String?>("countryOfPublicInstances")
|
|
|
|
|
2022-11-10 21:49:13 +00:00
|
|
|
static let instances = Key<[Instance]>("instances", default: [])
|
2021-11-11 21:07:13 +00:00
|
|
|
static let accounts = Key<[Account]>("accounts", default: [])
|
2021-10-20 22:21:50 +00:00
|
|
|
static let lastAccountID = Key<Account.ID?>("lastAccountID")
|
2021-10-19 21:27:04 +00:00
|
|
|
static let lastInstanceID = Key<Instance.ID?>("lastInstanceID")
|
2021-10-25 21:29:06 +00:00
|
|
|
static let lastUsedPlaylistID = Key<Playlist.ID?>("lastPlaylistID")
|
2022-07-04 09:35:27 +00:00
|
|
|
static let lastAccountIsPublic = Key<Bool>("lastAccountIsPublic", default: false)
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-10-23 12:12:53 +00:00
|
|
|
static let sponsorBlockInstance = Key<String>("sponsorBlockInstance", default: "https://sponsor.ajay.app")
|
2021-10-23 16:49:45 +00:00
|
|
|
static let sponsorBlockCategories = Key<Set<String>>("sponsorBlockCategories", default: Set(SponsorBlockAPI.categories))
|
2021-10-23 12:12:53 +00:00
|
|
|
|
2022-03-20 20:31:19 +00:00
|
|
|
static let enableReturnYouTubeDislike = Key<Bool>("enableReturnYouTubeDislike", default: false)
|
|
|
|
|
2022-11-11 20:28:40 +00:00
|
|
|
static let showHome = Key<Bool>("showHome", default: true)
|
|
|
|
static let showOpenActionsInHome = Key<Bool>("showOpenActionsInHome", default: true)
|
2022-12-19 00:37:09 +00:00
|
|
|
static let showQueueInHome = Key<Bool>("showQueueInHome", default: true)
|
2022-11-11 20:28:40 +00:00
|
|
|
static let showOpenActionsToolbarItem = Key<Bool>("showOpenActionsToolbarItem", default: false)
|
|
|
|
static let showFavoritesInHome = Key<Bool>("showFavoritesInHome", default: true)
|
2022-11-18 22:39:52 +00:00
|
|
|
#if os(iOS)
|
|
|
|
static let showDocuments = Key<Bool>("showDocuments", default: false)
|
|
|
|
static let homeRecentDocumentsItems = Key<Int>("homeRecentDocumentsItems", default: 3)
|
|
|
|
#endif
|
2022-11-11 20:28:40 +00:00
|
|
|
static let homeHistoryItems = Key<Int>("homeHistoryItems", default: 10)
|
2022-10-26 11:11:35 +00:00
|
|
|
static let favorites = Key<[FavoriteItem]>("favorites", default: [])
|
2021-11-01 21:56:18 +00:00
|
|
|
|
2022-12-17 18:35:07 +00:00
|
|
|
static let playerButtonSingleTapGesture = Key<PlayerTapGestureAction>("playerButtonSingleTapGesture", default: .togglePlayer)
|
2022-12-20 22:24:39 +00:00
|
|
|
static let playerButtonDoubleTapGesture = Key<PlayerTapGestureAction>("playerButtonDoubleTapGesture", default: .nothing)
|
2022-12-17 18:35:07 +00:00
|
|
|
static let playerButtonShowsControlButtonsWhenMinimized = Key<Bool>("playerButtonShowsControlButtonsWhenMinimized", default: false)
|
2022-12-19 00:37:09 +00:00
|
|
|
static let playerButtonIsExpanded = Key<Bool>("playerButtonIsExpanded", default: false)
|
|
|
|
static let playerBarMaxWidth = Key<String>("playerBarMaxWidth", default: "600")
|
2022-12-17 18:35:07 +00:00
|
|
|
|
2022-01-02 19:34:50 +00:00
|
|
|
#if !os(tvOS)
|
2022-08-22 21:15:00 +00:00
|
|
|
#if os(macOS)
|
|
|
|
static let accountPickerDisplaysUsernameDefault = true
|
|
|
|
#else
|
|
|
|
static let accountPickerDisplaysUsernameDefault = UIDevice.current.userInterfaceIdiom == .pad
|
|
|
|
#endif
|
|
|
|
static let accountPickerDisplaysUsername = Key<Bool>("accountPickerDisplaysUsername", default: accountPickerDisplaysUsernameDefault)
|
2022-01-02 19:34:50 +00:00
|
|
|
#endif
|
2022-08-25 23:36:46 +00:00
|
|
|
static let accountPickerDisplaysAnonymousAccounts = Key<Bool>("accountPickerDisplaysAnonymousAccounts", default: true)
|
2022-01-02 19:41:04 +00:00
|
|
|
#if os(iOS)
|
|
|
|
static let lockPortraitWhenBrowsing = Key<Bool>("lockPortraitWhenBrowsing", default: UIDevice.current.userInterfaceIdiom == .phone)
|
|
|
|
#endif
|
2023-02-28 20:17:12 +00:00
|
|
|
static let showUnwatchedFeedBadges = Key<Bool>("showUnwatchedFeedBadges", default: false)
|
2022-12-19 00:37:09 +00:00
|
|
|
static let expandChannelDescription = Key<Bool>("expandChannelDescription", default: false)
|
2022-12-14 11:56:47 +00:00
|
|
|
static let channelOnThumbnail = Key<Bool>("channelOnThumbnail", default: false)
|
2021-11-04 23:25:51 +00:00
|
|
|
static let timeOnThumbnail = Key<Bool>("timeOnThumbnail", default: true)
|
2022-01-06 14:56:59 +00:00
|
|
|
static let roundedThumbnails = Key<Bool>("roundedThumbnails", default: true)
|
2022-06-26 12:25:54 +00:00
|
|
|
static let thumbnailsQuality = Key<ThumbnailsQuality>("thumbnailsQuality", default: .highest)
|
2021-11-04 23:25:51 +00:00
|
|
|
|
2022-07-05 17:20:25 +00:00
|
|
|
static let captionsLanguageCode = Key<String?>("captionsLanguageCode")
|
2022-02-16 20:23:11 +00:00
|
|
|
static let activeBackend = Key<PlayerBackendType>("activeBackend", default: .mpv)
|
2022-08-16 22:34:25 +00:00
|
|
|
|
2022-08-19 22:01:32 +00:00
|
|
|
static let hd2160pMPVProfile = QualityProfile(id: "hd2160pMPVProfile", backend: .mpv, resolution: .hd2160p60, formats: QualityProfile.Format.allCases)
|
|
|
|
static let hd1080pMPVProfile = QualityProfile(id: "hd1080pMPVProfile", backend: .mpv, resolution: .hd1080p60, formats: QualityProfile.Format.allCases)
|
|
|
|
static let hd720pMPVProfile = QualityProfile(id: "hd720pMPVProfile", backend: .mpv, resolution: .hd720p60, formats: QualityProfile.Format.allCases)
|
|
|
|
static let hd720pAVPlayerProfile = QualityProfile(id: "hd720pAVPlayerProfile", backend: .appleAVPlayer, resolution: .hd720p60, formats: [.hls, .stream])
|
|
|
|
static let sd360pAVPlayerProfile = QualityProfile(id: "sd360pAVPlayerProfile", backend: .appleAVPlayer, resolution: .sd360p30, formats: [.hls, .stream])
|
2022-08-16 22:34:25 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
static let qualityProfilesDefault = UIDevice.current.userInterfaceIdiom == .pad ? [
|
|
|
|
hd2160pMPVProfile,
|
|
|
|
hd1080pMPVProfile,
|
|
|
|
hd720pAVPlayerProfile,
|
|
|
|
sd360pAVPlayerProfile
|
|
|
|
] : [
|
|
|
|
hd1080pMPVProfile,
|
|
|
|
hd720pAVPlayerProfile,
|
|
|
|
sd360pAVPlayerProfile
|
|
|
|
]
|
|
|
|
|
|
|
|
static let batteryCellularProfileDefault = hd720pAVPlayerProfile.id
|
|
|
|
static let batteryNonCellularProfileDefault = hd720pAVPlayerProfile.id
|
|
|
|
static let chargingCellularProfileDefault = hd720pAVPlayerProfile.id
|
|
|
|
static let chargingNonCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
#elseif os(tvOS)
|
|
|
|
static let qualityProfilesDefault = [
|
|
|
|
hd2160pMPVProfile,
|
|
|
|
hd1080pMPVProfile,
|
2022-08-20 21:05:40 +00:00
|
|
|
hd720pAVPlayerProfile
|
2022-08-16 22:34:25 +00:00
|
|
|
]
|
|
|
|
static let batteryCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
static let batteryNonCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
static let chargingCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
static let chargingNonCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
#else
|
|
|
|
static let qualityProfilesDefault = [
|
|
|
|
hd2160pMPVProfile,
|
|
|
|
hd1080pMPVProfile,
|
|
|
|
hd720pAVPlayerProfile
|
|
|
|
]
|
|
|
|
static let batteryCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
static let batteryNonCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
static let chargingCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
static let chargingNonCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
#endif
|
2022-11-10 22:00:17 +00:00
|
|
|
static let playerRate = Key<Double>("playerRate", default: 1.0)
|
2022-08-16 22:34:25 +00:00
|
|
|
static let qualityProfiles = Key<[QualityProfile]>("qualityProfiles", default: qualityProfilesDefault)
|
|
|
|
static let batteryCellularProfile = Key<QualityProfile.ID>("batteryCellularProfile", default: batteryCellularProfileDefault)
|
|
|
|
static let batteryNonCellularProfile = Key<QualityProfile.ID>("batteryNonCellularProfile", default: batteryNonCellularProfileDefault)
|
|
|
|
static let chargingCellularProfile = Key<QualityProfile.ID>("chargingCellularProfile", default: chargingCellularProfileDefault)
|
|
|
|
static let chargingNonCellularProfile = Key<QualityProfile.ID>("chargingNonCellularProfile", default: chargingNonCellularProfileDefault)
|
2022-08-22 21:14:27 +00:00
|
|
|
static let forceAVPlayerForLiveStreams = Key<Bool>("forceAVPlayerForLiveStreams", default: true)
|
2022-11-13 22:36:46 +00:00
|
|
|
static let playerSidebar = Key<PlayerSidebarSetting>("playerSidebar", default: .defaultValue)
|
2021-11-03 23:40:01 +00:00
|
|
|
static let playerInstanceID = Key<Instance.ID?>("playerInstance")
|
2022-08-28 17:18:49 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
static let playerControlsLayoutDefault = UIDevice.current.userInterfaceIdiom == .pad ? PlayerControlsLayout.medium : .small
|
|
|
|
static let fullScreenPlayerControlsLayoutDefault = UIDevice.current.userInterfaceIdiom == .pad ? PlayerControlsLayout.medium : .small
|
|
|
|
#elseif os(tvOS)
|
2022-08-28 22:21:12 +00:00
|
|
|
static let playerControlsLayoutDefault = PlayerControlsLayout.tvRegular
|
|
|
|
static let fullScreenPlayerControlsLayoutDefault = PlayerControlsLayout.tvRegular
|
2022-08-28 17:18:49 +00:00
|
|
|
#else
|
|
|
|
static let playerControlsLayoutDefault = PlayerControlsLayout.medium
|
|
|
|
static let fullScreenPlayerControlsLayoutDefault = PlayerControlsLayout.medium
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static let playerControlsLayout = Key<PlayerControlsLayout>("playerControlsLayout", default: playerControlsLayoutDefault)
|
|
|
|
static let fullScreenPlayerControlsLayout = Key<PlayerControlsLayout>("fullScreenPlayerControlsLayout", default: fullScreenPlayerControlsLayoutDefault)
|
|
|
|
static let horizontalPlayerGestureEnabled = Key<Bool>("horizontalPlayerGestureEnabled", default: true)
|
|
|
|
static let seekGestureSpeed = Key<Double>("seekGestureSpeed", default: 0.5)
|
2022-12-19 12:35:37 +00:00
|
|
|
static let seekGestureSensitivity = Key<Double>("seekGestureSensitivity", default: 30.0)
|
2021-11-03 23:14:09 +00:00
|
|
|
static let showKeywords = Key<Bool>("showKeywords", default: false)
|
2021-12-06 18:11:19 +00:00
|
|
|
#if !os(tvOS)
|
|
|
|
static let commentsPlacement = Key<CommentsPlacement>("commentsPlacement", default: .separate)
|
|
|
|
#endif
|
2022-08-14 17:06:22 +00:00
|
|
|
|
|
|
|
#if os(tvOS)
|
|
|
|
static let pauseOnHidingPlayerDefault = true
|
|
|
|
#else
|
|
|
|
static let pauseOnHidingPlayerDefault = false
|
|
|
|
#endif
|
|
|
|
static let pauseOnHidingPlayer = Key<Bool>("pauseOnHidingPlayer", default: pauseOnHidingPlayerDefault)
|
|
|
|
|
2022-06-30 09:46:20 +00:00
|
|
|
#if !os(macOS)
|
|
|
|
static let pauseOnEnteringBackground = Key<Bool>("pauseOnEnteringBackground", default: true)
|
|
|
|
#endif
|
2021-12-19 17:17:04 +00:00
|
|
|
static let closePiPOnNavigation = Key<Bool>("closePiPOnNavigation", default: false)
|
|
|
|
static let closePiPOnOpeningPlayer = Key<Bool>("closePiPOnOpeningPlayer", default: false)
|
|
|
|
#if !os(macOS)
|
|
|
|
static let closePiPAndOpenPlayerOnEnteringForeground = Key<Bool>("closePiPAndOpenPlayerOnEnteringForeground", default: false)
|
|
|
|
#endif
|
2022-08-26 20:17:21 +00:00
|
|
|
static let closePlayerOnOpeningPiP = Key<Bool>("closePlayerOnOpeningPiP", default: false)
|
2021-09-19 11:06:54 +00:00
|
|
|
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
2021-09-28 18:06:05 +00:00
|
|
|
|
2021-10-24 18:01:08 +00:00
|
|
|
static let queue = Key<[PlayerQueueItem]>("queue", default: [])
|
2022-09-11 16:34:33 +00:00
|
|
|
static let saveLastPlayed = Key<Bool>("saveLastPlayed", default: false)
|
2022-01-09 15:05:05 +00:00
|
|
|
static let lastPlayed = Key<PlayerQueueItem?>("lastPlayed")
|
2022-07-10 22:24:56 +00:00
|
|
|
static let playbackMode = Key<PlayerModel.PlaybackMode>("playbackMode", default: .queue)
|
2021-10-24 18:01:08 +00:00
|
|
|
|
2021-11-05 19:57:22 +00:00
|
|
|
static let saveHistory = Key<Bool>("saveHistory", default: true)
|
2021-12-26 21:14:46 +00:00
|
|
|
static let showWatchingProgress = Key<Bool>("showWatchingProgress", default: true)
|
|
|
|
static let watchedThreshold = Key<Int>("watchedThreshold", default: 90)
|
|
|
|
static let watchedVideoStyle = Key<WatchedVideoStyle>("watchedVideoStyle", default: .badge)
|
2022-01-02 19:39:19 +00:00
|
|
|
static let watchedVideoBadgeColor = Key<WatchedVideoBadgeColor>("WatchedVideoBadgeColor", default: .red)
|
2021-12-26 21:14:46 +00:00
|
|
|
static let watchedVideoPlayNowBehavior = Key<WatchedVideoPlayNowBehavior>("watchedVideoPlayNowBehavior", default: .continue)
|
2022-01-02 19:39:19 +00:00
|
|
|
static let resetWatchedStatusOnPlaying = Key<Bool>("resetWatchedStatusOnPlaying", default: false)
|
2021-12-01 11:22:19 +00:00
|
|
|
static let saveRecents = Key<Bool>("saveRecents", default: true)
|
2021-11-05 19:57:22 +00:00
|
|
|
|
2021-09-28 18:06:05 +00:00
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
2021-11-07 20:51:22 +00:00
|
|
|
|
2022-11-11 20:28:40 +00:00
|
|
|
static let visibleSections = Key<Set<VisibleSection>>("visibleSections", default: [.subscriptions, .trending, .playlists])
|
2021-12-07 23:09:49 +00:00
|
|
|
|
2022-01-02 19:43:30 +00:00
|
|
|
#if os(iOS)
|
2022-11-13 11:49:39 +00:00
|
|
|
static let honorSystemOrientationLock = Key<Bool>("honorSystemOrientationLock", default: true)
|
2022-01-02 19:43:30 +00:00
|
|
|
static let enterFullscreenInLandscape = Key<Bool>("enterFullscreenInLandscape", default: UIDevice.current.userInterfaceIdiom == .phone)
|
2022-08-07 11:48:50 +00:00
|
|
|
static let rotateToPortraitOnExitFullScreen = Key<Bool>("rotateToPortraitOnExitFullScreen", default: UIDevice.current.userInterfaceIdiom == .phone)
|
2022-01-02 19:43:30 +00:00
|
|
|
#endif
|
2022-06-17 10:27:01 +00:00
|
|
|
|
|
|
|
static let showMPVPlaybackStats = Key<Bool>("showMPVPlaybackStats", default: false)
|
2022-06-18 12:39:49 +00:00
|
|
|
|
2022-08-14 17:06:22 +00:00
|
|
|
#if os(macOS)
|
2022-11-18 22:04:49 +00:00
|
|
|
static let playerDetailsPageButtonLabelStyleDefault = ButtonLabelStyle.iconAndText
|
2022-08-14 17:06:22 +00:00
|
|
|
#else
|
2022-11-18 22:04:49 +00:00
|
|
|
static let playerDetailsPageButtonLabelStyleDefault = UIDevice.current.userInterfaceIdiom == .phone ? ButtonLabelStyle.iconOnly : .iconAndText
|
2022-08-14 17:06:22 +00:00
|
|
|
#endif
|
2022-11-18 22:04:49 +00:00
|
|
|
static let playerActionsButtonLabelStyle = Key<ButtonLabelStyle>("playerActionsButtonLabelStyle", default: .iconAndText)
|
2022-07-02 10:49:57 +00:00
|
|
|
|
2022-07-11 16:10:51 +00:00
|
|
|
static let systemControlsCommands = Key<SystemControlsCommands>("systemControlsCommands", default: .restartAndAdvanceToNext)
|
2022-12-19 11:08:27 +00:00
|
|
|
|
|
|
|
static let buttonBackwardSeekDuration = Key<String>("buttonBackwardSeekDuration", default: "10")
|
|
|
|
static let buttonForwardSeekDuration = Key<String>("buttonForwardSeekDuration", default: "10")
|
|
|
|
static let gestureBackwardSeekDuration = Key<String>("gestureBackwardSeekDuration", default: "10")
|
|
|
|
static let gestureForwardSeekDuration = Key<String>("gestureForwardSeekDuration", default: "10")
|
|
|
|
static let systemControlsSeekDuration = Key<String>("systemControlsBackwardSeekDuration", default: "10")
|
2022-12-19 10:29:18 +00:00
|
|
|
static let actionButtonShareEnabled = Key<Bool>("actionButtonShareEnabled", default: true)
|
|
|
|
static let actionButtonAddToPlaylistEnabled = Key<Bool>("actionButtonAddToPlaylistEnabled", default: true)
|
|
|
|
static let actionButtonSubscribeEnabled = Key<Bool>("actionButtonSubscribeEnabled", default: false)
|
|
|
|
static let actionButtonSettingsEnabled = Key<Bool>("actionButtonSettingsEnabled", default: true)
|
|
|
|
static let actionButtonNextEnabled = Key<Bool>("actionButtonNextEnabled", default: true)
|
|
|
|
static let actionButtonHideEnabled = Key<Bool>("actionButtonHideEnabled", default: false)
|
|
|
|
static let actionButtonCloseEnabled = Key<Bool>("actionButtonCloseEnabled", default: true)
|
|
|
|
static let actionButtonNextQueueCountEnabled = Key<Bool>("actionButtonNextQueueCountEnabled", default: true)
|
|
|
|
|
2022-12-19 12:35:37 +00:00
|
|
|
#if os(iOS)
|
|
|
|
static let playerControlsLockOrientationEnabled = Key<Bool>("playerControlsLockOrientationEnabled", default: true)
|
|
|
|
#endif
|
|
|
|
#if os(tvOS)
|
|
|
|
static let playerControlsSettingsEnabledDefault = true
|
|
|
|
#else
|
|
|
|
static let playerControlsSettingsEnabledDefault = false
|
|
|
|
#endif
|
|
|
|
static let playerControlsSettingsEnabled = Key<Bool>("playerControlsSettingsEnabled", default: playerControlsSettingsEnabledDefault)
|
|
|
|
static let playerControlsCloseEnabled = Key<Bool>("playerControlsCloseEnabled", default: true)
|
|
|
|
static let playerControlsRestartEnabled = Key<Bool>("playerControlsRestartEnabled", default: false)
|
|
|
|
static let playerControlsAdvanceToNextEnabled = Key<Bool>("playerControlsAdvanceToNextEnabled", default: false)
|
|
|
|
static let playerControlsPlaybackModeEnabled = Key<Bool>("playerControlsPlaybackModeEnabled", default: false)
|
|
|
|
static let playerControlsNextEnabled = Key<Bool>("playerControlsNextEnabled", default: true)
|
|
|
|
static let playerControlsMusicModeEnabled = Key<Bool>("playerControlsMusicModeEnabled", default: true)
|
|
|
|
|
2022-09-27 19:07:02 +00:00
|
|
|
static let mpvCacheSecs = Key<String>("mpvCacheSecs", default: "120")
|
|
|
|
static let mpvCachePauseWait = Key<String>("mpvCachePauseWait", default: "3")
|
2022-07-06 22:08:38 +00:00
|
|
|
static let mpvEnableLogging = Key<Bool>("mpvEnableLogging", default: false)
|
2022-12-11 11:38:57 +00:00
|
|
|
|
2022-12-13 11:09:20 +00:00
|
|
|
static let showCacheStatus = Key<Bool>("showCacheStatus", default: false)
|
|
|
|
static let feedCacheSize = Key<String>("feedCacheSize", default: "50")
|
|
|
|
|
2022-12-11 11:38:57 +00:00
|
|
|
static let subscriptionsViewPage = Key<SubscriptionsView.Page>("subscriptionsViewPage", default: .feed)
|
2022-12-12 00:18:29 +00:00
|
|
|
|
|
|
|
static let subscriptionsListingStyle = Key<ListingStyle>("subscriptionsListingStyle", default: .cells)
|
|
|
|
static let popularListingStyle = Key<ListingStyle>("popularListingStyle", default: .cells)
|
|
|
|
static let trendingListingStyle = Key<ListingStyle>("trendingListingStyle", default: .cells)
|
|
|
|
static let playlistListingStyle = Key<ListingStyle>("playlistListingStyle", default: .cells)
|
|
|
|
static let channelPlaylistListingStyle = Key<ListingStyle>("channelPlaylistListingStyle", default: .cells)
|
|
|
|
static let searchListingStyle = Key<ListingStyle>("searchListingStyle", default: .cells)
|
2022-12-18 18:39:03 +00:00
|
|
|
|
|
|
|
static let openWatchNextOnFinishedWatching = Key<Bool>("openWatchNextOnFinishedWatching", default: true)
|
|
|
|
static let openWatchNextOnClose = Key<Bool>("openWatchNextOnClose", default: false)
|
|
|
|
static let openWatchNextOnFinishedWatchingDelay = Key<String>("openWatchNextOnFinishedWatchingDelay", default: "5")
|
2023-02-25 15:42:18 +00:00
|
|
|
|
|
|
|
static let hideShorts = Key<Bool>("hideShorts", default: false)
|
2021-09-19 11:06:54 +00:00
|
|
|
}
|
2021-11-05 19:35:27 +00:00
|
|
|
|
|
|
|
enum ResolutionSetting: String, CaseIterable, Defaults.Serializable {
|
2022-04-09 21:19:00 +00:00
|
|
|
case hd2160p60
|
2022-06-17 10:52:10 +00:00
|
|
|
case hd2160p30
|
2022-03-27 18:59:22 +00:00
|
|
|
case hd1440p60
|
2022-06-17 10:52:10 +00:00
|
|
|
case hd1440p30
|
2022-03-27 18:59:22 +00:00
|
|
|
case hd1080p60
|
2022-06-17 10:52:10 +00:00
|
|
|
case hd1080p30
|
2022-03-27 18:59:22 +00:00
|
|
|
case hd720p60
|
2022-06-17 10:52:10 +00:00
|
|
|
case hd720p30
|
|
|
|
case sd480p30
|
|
|
|
case sd360p30
|
|
|
|
case sd240p30
|
|
|
|
case sd144p30
|
2021-11-05 19:35:27 +00:00
|
|
|
|
2022-08-14 22:16:02 +00:00
|
|
|
var value: Stream.Resolution! {
|
|
|
|
.init(rawValue: rawValue)
|
2021-11-05 19:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var description: String {
|
|
|
|
switch self {
|
2022-04-16 20:50:37 +00:00
|
|
|
case .hd2160p60:
|
2022-03-27 18:59:22 +00:00
|
|
|
return "4K, 60fps"
|
2022-06-17 10:52:10 +00:00
|
|
|
case .hd2160p30:
|
2022-04-16 20:50:37 +00:00
|
|
|
return "4K"
|
2021-11-05 19:35:27 +00:00
|
|
|
default:
|
|
|
|
return value.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum PlayerSidebarSetting: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case always, whenFits, never
|
|
|
|
|
|
|
|
static var defaultValue: Self {
|
|
|
|
#if os(macOS)
|
|
|
|
.always
|
|
|
|
#else
|
|
|
|
.whenFits
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2021-11-07 20:51:22 +00:00
|
|
|
|
2021-12-01 11:22:19 +00:00
|
|
|
enum VisibleSection: String, CaseIterable, Comparable, Defaults.Serializable {
|
2022-11-11 20:28:40 +00:00
|
|
|
case subscriptions, popular, trending, playlists
|
2021-12-01 11:22:19 +00:00
|
|
|
|
|
|
|
var title: String {
|
2022-09-04 15:28:30 +00:00
|
|
|
rawValue.capitalized.localized()
|
2021-12-01 11:22:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var tabSelection: TabSelection {
|
|
|
|
switch self {
|
|
|
|
case .subscriptions:
|
|
|
|
return TabSelection.subscriptions
|
|
|
|
case .popular:
|
|
|
|
return TabSelection.popular
|
|
|
|
case .trending:
|
|
|
|
return TabSelection.trending
|
|
|
|
case .playlists:
|
|
|
|
return TabSelection.playlists
|
|
|
|
}
|
2021-11-07 20:51:22 +00:00
|
|
|
}
|
2021-12-01 11:22:19 +00:00
|
|
|
|
|
|
|
private var sortOrder: Int {
|
|
|
|
switch self {
|
|
|
|
case .subscriptions:
|
2022-11-11 20:28:40 +00:00
|
|
|
return 0
|
2021-12-01 11:22:19 +00:00
|
|
|
case .popular:
|
2022-11-11 20:28:40 +00:00
|
|
|
return 1
|
2021-12-01 11:22:19 +00:00
|
|
|
case .trending:
|
2022-11-11 20:28:40 +00:00
|
|
|
return 2
|
2021-12-01 11:22:19 +00:00
|
|
|
case .playlists:
|
2022-11-11 20:28:40 +00:00
|
|
|
return 3
|
2021-12-01 11:22:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static func < (lhs: Self, rhs: Self) -> Bool {
|
|
|
|
lhs.sortOrder < rhs.sortOrder
|
|
|
|
}
|
|
|
|
}
|
2021-12-06 18:11:19 +00:00
|
|
|
|
2021-12-26 21:14:46 +00:00
|
|
|
enum WatchedVideoStyle: String, Defaults.Serializable {
|
2022-01-02 19:39:19 +00:00
|
|
|
case nothing, badge, decreasedOpacity, both
|
2022-08-31 19:24:46 +00:00
|
|
|
|
|
|
|
var isShowingBadge: Bool {
|
|
|
|
self == .badge || self == .both
|
|
|
|
}
|
|
|
|
|
|
|
|
var isDecreasingOpacity: Bool {
|
|
|
|
self == .decreasedOpacity || self == .both
|
|
|
|
}
|
2022-01-02 19:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enum WatchedVideoBadgeColor: String, Defaults.Serializable {
|
|
|
|
case colorSchemeBased, red, blue
|
2021-12-26 21:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enum WatchedVideoPlayNowBehavior: String, Defaults.Serializable {
|
|
|
|
case `continue`, restart
|
|
|
|
}
|
|
|
|
|
2021-12-06 18:11:19 +00:00
|
|
|
#if !os(tvOS)
|
|
|
|
enum CommentsPlacement: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case info, separate
|
|
|
|
}
|
|
|
|
#endif
|
2022-06-18 12:39:49 +00:00
|
|
|
|
2022-11-18 22:04:49 +00:00
|
|
|
enum ButtonLabelStyle: String, CaseIterable, Defaults.Serializable {
|
2022-06-18 12:39:49 +00:00
|
|
|
case iconOnly, iconAndText
|
|
|
|
|
|
|
|
var text: Bool {
|
|
|
|
self == .iconAndText
|
|
|
|
}
|
|
|
|
}
|
2022-06-26 12:25:54 +00:00
|
|
|
|
|
|
|
enum ThumbnailsQuality: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case highest, medium, low
|
2022-09-04 15:28:30 +00:00
|
|
|
|
|
|
|
var description: String {
|
|
|
|
switch self {
|
|
|
|
case .highest:
|
|
|
|
return "Highest quality".localized()
|
|
|
|
case .medium:
|
|
|
|
return "Medium quality".localized()
|
|
|
|
case .low:
|
|
|
|
return "Low quality".localized()
|
|
|
|
}
|
|
|
|
}
|
2022-06-26 12:25:54 +00:00
|
|
|
}
|
2022-07-11 16:10:51 +00:00
|
|
|
|
|
|
|
enum SystemControlsCommands: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case seek, restartAndAdvanceToNext
|
|
|
|
}
|
2022-11-13 22:36:46 +00:00
|
|
|
|
|
|
|
enum ShowInspectorSetting: String, Defaults.Serializable {
|
|
|
|
case always, onlyLocal
|
|
|
|
}
|
|
|
|
|
|
|
|
enum DetailsToolbarPositionSetting: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case left, center, right
|
|
|
|
|
|
|
|
var needsLeftSpacer: Bool {
|
|
|
|
self == .center || self == .right
|
|
|
|
}
|
|
|
|
|
|
|
|
var needsRightSpacer: Bool {
|
|
|
|
self == .center || self == .left
|
|
|
|
}
|
|
|
|
}
|
2022-12-17 18:35:07 +00:00
|
|
|
|
|
|
|
enum PlayerTapGestureAction: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case togglePlayerVisibility
|
|
|
|
case togglePlayer
|
|
|
|
case openChannel
|
|
|
|
case nothing
|
|
|
|
|
|
|
|
var label: String {
|
|
|
|
switch self {
|
|
|
|
case .togglePlayerVisibility:
|
|
|
|
return "Toggle size"
|
|
|
|
case .togglePlayer:
|
|
|
|
return "Toggle player"
|
|
|
|
case .openChannel:
|
|
|
|
return "Open channel"
|
|
|
|
case .nothing:
|
|
|
|
return "Do nothing"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|