import Defaults import Foundation import SwiftUI #if os(iOS) import UIKit #endif extension Defaults.Keys { static let instancesManifest = Key("instancesManifest", default: "") static let countryOfPublicInstances = Key("countryOfPublicInstances") static let instances = Key<[Instance]>("instances", default: []) static let accounts = Key<[Account]>("accounts", default: []) static let lastAccountID = Key("lastAccountID") static let lastInstanceID = Key("lastInstanceID") static let lastUsedPlaylistID = Key("lastPlaylistID") static let lastAccountIsPublic = Key("lastAccountIsPublic", default: false) static let sponsorBlockInstance = Key("sponsorBlockInstance", default: "https://sponsor.ajay.app") static let sponsorBlockCategories = Key>("sponsorBlockCategories", default: Set(SponsorBlockAPI.categories)) static let enableReturnYouTubeDislike = Key("enableReturnYouTubeDislike", default: false) static let showHome = Key("showHome", default: true) static let showOpenActionsInHome = Key("showOpenActionsInHome", default: true) static let showOpenActionsToolbarItem = Key("showOpenActionsToolbarItem", default: false) static let showFavoritesInHome = Key("showFavoritesInHome", default: true) #if os(iOS) static let showDocuments = Key("showDocuments", default: false) static let homeRecentDocumentsItems = Key("homeRecentDocumentsItems", default: 3) #endif static let homeHistoryItems = Key("homeHistoryItems", default: 10) static let favorites = Key<[FavoriteItem]>("favorites", default: []) #if !os(tvOS) #if os(macOS) static let accountPickerDisplaysUsernameDefault = true #else static let accountPickerDisplaysUsernameDefault = UIDevice.current.userInterfaceIdiom == .pad #endif static let accountPickerDisplaysUsername = Key("accountPickerDisplaysUsername", default: accountPickerDisplaysUsernameDefault) #endif static let accountPickerDisplaysAnonymousAccounts = Key("accountPickerDisplaysAnonymousAccounts", default: true) #if os(iOS) static let lockPortraitWhenBrowsing = Key("lockPortraitWhenBrowsing", default: UIDevice.current.userInterfaceIdiom == .phone) #endif static let channelOnThumbnail = Key("channelOnThumbnail", default: true) static let timeOnThumbnail = Key("timeOnThumbnail", default: true) static let roundedThumbnails = Key("roundedThumbnails", default: true) static let thumbnailsQuality = Key("thumbnailsQuality", default: .highest) static let captionsLanguageCode = Key("captionsLanguageCode") static let activeBackend = Key("activeBackend", default: .mpv) 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]) #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, hd720pAVPlayerProfile ] 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 static let playerRate = Key("playerRate", default: 1.0) static let qualityProfiles = Key<[QualityProfile]>("qualityProfiles", default: qualityProfilesDefault) static let batteryCellularProfile = Key("batteryCellularProfile", default: batteryCellularProfileDefault) static let batteryNonCellularProfile = Key("batteryNonCellularProfile", default: batteryNonCellularProfileDefault) static let chargingCellularProfile = Key("chargingCellularProfile", default: chargingCellularProfileDefault) static let chargingNonCellularProfile = Key("chargingNonCellularProfile", default: chargingNonCellularProfileDefault) static let forceAVPlayerForLiveStreams = Key("forceAVPlayerForLiveStreams", default: true) static let videoDetailsPage = Key("videoDetailsPage", default: .queue) static let playerSidebar = Key("playerSidebar", default: .defaultValue) static let showInspector = Key("showInspector", default: .onlyLocal) static let detailsToolbarPosition = Key("detailsToolbarPosition", default: .center) static let playerInstanceID = Key("playerInstance") #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) static let playerControlsLayoutDefault = PlayerControlsLayout.tvRegular static let fullScreenPlayerControlsLayoutDefault = PlayerControlsLayout.tvRegular #else static let playerControlsLayoutDefault = PlayerControlsLayout.medium static let fullScreenPlayerControlsLayoutDefault = PlayerControlsLayout.medium #endif static let playerControlsLayout = Key("playerControlsLayout", default: playerControlsLayoutDefault) static let fullScreenPlayerControlsLayout = Key("fullScreenPlayerControlsLayout", default: fullScreenPlayerControlsLayoutDefault) static let horizontalPlayerGestureEnabled = Key("horizontalPlayerGestureEnabled", default: true) static let seekGestureSpeed = Key("seekGestureSpeed", default: 0.5) static let seekGestureSensitivity = Key("seekGestureSensitivity", default: 20.0) static let showKeywords = Key("showKeywords", default: false) #if !os(tvOS) static let commentsPlacement = Key("commentsPlacement", default: .separate) #endif #if os(tvOS) static let pauseOnHidingPlayerDefault = true #else static let pauseOnHidingPlayerDefault = false #endif static let pauseOnHidingPlayer = Key("pauseOnHidingPlayer", default: pauseOnHidingPlayerDefault) #if !os(macOS) static let pauseOnEnteringBackground = Key("pauseOnEnteringBackground", default: true) #endif #if os(tvOS) static let closeLastItemOnPlaybackEndDefault = true #else static let closeLastItemOnPlaybackEndDefault = false #endif static let closeLastItemOnPlaybackEnd = Key("closeLastItemOnPlaybackEnd", default: closeLastItemOnPlaybackEndDefault) #if os(tvOS) static let closePlayerOnItemCloseDefault = true #else static let closePlayerOnItemCloseDefault = false #endif static let closePlayerOnItemClose = Key("closePlayerOnItemClose", default: closePlayerOnItemCloseDefault) static let closePiPOnNavigation = Key("closePiPOnNavigation", default: false) static let closePiPOnOpeningPlayer = Key("closePiPOnOpeningPlayer", default: false) #if !os(macOS) static let closePiPAndOpenPlayerOnEnteringForeground = Key("closePiPAndOpenPlayerOnEnteringForeground", default: false) #endif static let closePlayerOnOpeningPiP = Key("closePlayerOnOpeningPiP", default: false) static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: []) static let queue = Key<[PlayerQueueItem]>("queue", default: []) static let saveLastPlayed = Key("saveLastPlayed", default: false) static let lastPlayed = Key("lastPlayed") static let playbackMode = Key("playbackMode", default: .queue) static let saveHistory = Key("saveHistory", default: true) static let showWatchingProgress = Key("showWatchingProgress", default: true) static let watchedThreshold = Key("watchedThreshold", default: 90) static let watchedVideoStyle = Key("watchedVideoStyle", default: .badge) static let watchedVideoBadgeColor = Key("WatchedVideoBadgeColor", default: .red) static let watchedVideoPlayNowBehavior = Key("watchedVideoPlayNowBehavior", default: .continue) static let resetWatchedStatusOnPlaying = Key("resetWatchedStatusOnPlaying", default: false) static let saveRecents = Key("saveRecents", default: true) static let trendingCategory = Key("trendingCategory", default: .default) static let trendingCountry = Key("trendingCountry", default: .us) static let visibleSections = Key>("visibleSections", default: [.subscriptions, .trending, .playlists]) #if os(iOS) static let honorSystemOrientationLock = Key("honorSystemOrientationLock", default: true) static let enterFullscreenInLandscape = Key("enterFullscreenInLandscape", default: UIDevice.current.userInterfaceIdiom == .phone) static let rotateToPortraitOnExitFullScreen = Key("rotateToPortraitOnExitFullScreen", default: UIDevice.current.userInterfaceIdiom == .phone) #endif static let showMPVPlaybackStats = Key("showMPVPlaybackStats", default: false) #if os(macOS) static let playerDetailsPageButtonLabelStyleDefault = ButtonLabelStyle.iconAndText #else static let playerDetailsPageButtonLabelStyleDefault = UIDevice.current.userInterfaceIdiom == .phone ? ButtonLabelStyle.iconOnly : .iconAndText #endif static let playerActionsButtonLabelStyle = Key("playerActionsButtonLabelStyle", default: .iconAndText) static let playerDetailsPageButtonLabelStyle = Key("playerDetailsPageButtonLabelStyle", default: playerDetailsPageButtonLabelStyleDefault) static let systemControlsCommands = Key("systemControlsCommands", default: .restartAndAdvanceToNext) static let mpvCacheSecs = Key("mpvCacheSecs", default: "120") static let mpvCachePauseWait = Key("mpvCachePauseWait", default: "3") static let mpvEnableLogging = Key("mpvEnableLogging", default: false) } enum ResolutionSetting: String, CaseIterable, Defaults.Serializable { case hd2160p60 case hd2160p30 case hd1440p60 case hd1440p30 case hd1080p60 case hd1080p30 case hd720p60 case hd720p30 case sd480p30 case sd360p30 case sd240p30 case sd144p30 var value: Stream.Resolution! { .init(rawValue: rawValue) } var description: String { switch self { case .hd2160p60: return "4K, 60fps" case .hd2160p30: return "4K" 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 } } enum VisibleSection: String, CaseIterable, Comparable, Defaults.Serializable { case subscriptions, popular, trending, playlists var title: String { rawValue.capitalized.localized() } 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 } } private var sortOrder: Int { switch self { case .subscriptions: return 0 case .popular: return 1 case .trending: return 2 case .playlists: return 3 } } static func < (lhs: Self, rhs: Self) -> Bool { lhs.sortOrder < rhs.sortOrder } } enum WatchedVideoStyle: String, Defaults.Serializable { case nothing, badge, decreasedOpacity, both var isShowingBadge: Bool { self == .badge || self == .both } var isDecreasingOpacity: Bool { self == .decreasedOpacity || self == .both } } enum WatchedVideoBadgeColor: String, Defaults.Serializable { case colorSchemeBased, red, blue } enum WatchedVideoPlayNowBehavior: String, Defaults.Serializable { case `continue`, restart } #if !os(tvOS) enum CommentsPlacement: String, CaseIterable, Defaults.Serializable { case info, separate } #endif enum ButtonLabelStyle: String, CaseIterable, Defaults.Serializable { case iconOnly, iconAndText var text: Bool { self == .iconAndText } } enum ThumbnailsQuality: String, CaseIterable, Defaults.Serializable { case highest, medium, low var description: String { switch self { case .highest: return "Highest quality".localized() case .medium: return "Medium quality".localized() case .low: return "Low quality".localized() } } } enum SystemControlsCommands: String, CaseIterable, Defaults.Serializable { case seek, restartAndAdvanceToNext } 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 } }