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 {
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: GROUP - Browsing
|
2022-03-20 20:31:19 +00:00
|
|
|
|
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 showFavoritesInHome = Key<Bool>("showFavoritesInHome", default: true)
|
2024-02-01 22:54:16 +00:00
|
|
|
static let favorites = Key<[FavoriteItem]>("favorites", default: [])
|
|
|
|
static let widgetsSettings = Key<[WidgetSettings]>("widgetsSettings", default: [])
|
|
|
|
static let startupSection = Key<StartupSection>("startupSection", default: .home)
|
2024-09-09 14:05:24 +00:00
|
|
|
static let showSearchSuggestions = Key<Bool>("showSearchSuggestions", default: true)
|
2024-02-01 22:54:16 +00:00
|
|
|
static let visibleSections = Key<Set<VisibleSection>>("visibleSections", default: [.subscriptions, .trending, .playlists])
|
|
|
|
|
|
|
|
static let showOpenActionsToolbarItem = Key<Bool>("showOpenActionsToolbarItem", default: false)
|
2022-11-18 22:39:52 +00:00
|
|
|
#if os(iOS)
|
|
|
|
static let showDocuments = Key<Bool>("showDocuments", default: false)
|
2024-08-30 14:03:35 +00:00
|
|
|
static let lockPortraitWhenBrowsing = Key<Bool>("lockPortraitWhenBrowsing", default: Constants.isIPhone)
|
2022-11-18 22:39:52 +00:00
|
|
|
#endif
|
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
|
2024-08-30 14:03:35 +00:00
|
|
|
static let accountPickerDisplaysUsernameDefault = Constants.isIPad
|
2022-08-22 21:15:00 +00:00
|
|
|
#endif
|
|
|
|
static let accountPickerDisplaysUsername = Key<Bool>("accountPickerDisplaysUsername", default: accountPickerDisplaysUsernameDefault)
|
2022-01-02 19:34:50 +00:00
|
|
|
#endif
|
2024-02-01 22:54:16 +00:00
|
|
|
|
2022-08-25 23:36:46 +00:00
|
|
|
static let accountPickerDisplaysAnonymousAccounts = Key<Bool>("accountPickerDisplaysAnonymousAccounts", default: true)
|
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)
|
2024-02-01 22:54:16 +00:00
|
|
|
|
|
|
|
static let keepChannelsWithUnwatchedFeedOnTop = Key<Bool>("keepChannelsWithUnwatchedFeedOnTop", default: true)
|
|
|
|
static let showChannelAvatarInChannelsLists = Key<Bool>("showChannelAvatarInChannelsLists", default: true)
|
|
|
|
static let showChannelAvatarInVideosListing = Key<Bool>("showChannelAvatarInVideosListing", default: true)
|
|
|
|
|
|
|
|
static let playerButtonSingleTapGesture = Key<PlayerTapGestureAction>("playerButtonSingleTapGesture", default: .togglePlayer)
|
2024-08-30 14:03:35 +00:00
|
|
|
static let playerButtonDoubleTapGesture = Key<PlayerTapGestureAction>("playerButtonDoubleTapGesture", default: .togglePlayerVisibility)
|
|
|
|
static let playerButtonShowsControlButtonsWhenMinimized = Key<Bool>("playerButtonShowsControlButtonsWhenMinimized", default: true)
|
|
|
|
static let playerButtonIsExpanded = Key<Bool>("playerButtonIsExpanded", default: true)
|
2024-02-01 22:54:16 +00:00
|
|
|
static let playerBarMaxWidth = Key<String>("playerBarMaxWidth", default: "600")
|
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
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: GROUP - Player
|
|
|
|
|
|
|
|
static let playerInstanceID = Key<Instance.ID?>("playerInstance")
|
|
|
|
|
|
|
|
#if os(tvOS)
|
|
|
|
static let pauseOnHidingPlayerDefault = true
|
|
|
|
#else
|
|
|
|
static let pauseOnHidingPlayerDefault = false
|
|
|
|
#endif
|
|
|
|
static let pauseOnHidingPlayer = Key<Bool>("pauseOnHidingPlayer", default: pauseOnHidingPlayerDefault)
|
|
|
|
|
|
|
|
static let closeVideoOnEOF = Key<Bool>("closeVideoOnEOF", default: false)
|
|
|
|
|
|
|
|
#if !os(macOS)
|
2024-08-30 14:03:35 +00:00
|
|
|
static let pauseOnEnteringBackground = Key<Bool>("pauseOnEnteringBackground", default: false)
|
2024-02-01 22:54:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
static let expandVideoDescriptionDefault = Constants.isIPad
|
|
|
|
#else
|
|
|
|
static let expandVideoDescriptionDefault = true
|
|
|
|
#endif
|
|
|
|
static let expandVideoDescription = Key<Bool>("expandVideoDescription", default: expandVideoDescriptionDefault)
|
|
|
|
|
|
|
|
static let collapsedLinesDescription = Key<Int>("collapsedLinesDescription", default: 5)
|
2024-08-20 20:56:55 +00:00
|
|
|
static let exitFullscreenOnEOF = Key<Bool>("exitFullscreenOnEOF", default: true)
|
2024-02-01 22:54:16 +00:00
|
|
|
|
|
|
|
static let showChapters = Key<Bool>("showChapters", default: true)
|
2024-05-11 18:18:56 +00:00
|
|
|
static let showChapterThumbnails = Key<Bool>("showChapterThumbnails", default: true)
|
2024-08-30 14:03:35 +00:00
|
|
|
static let showChapterThumbnailsOnlyWhenDifferent = Key<Bool>("showChapterThumbnailsOnlyWhenDifferent", default: false)
|
2024-02-01 22:54:16 +00:00
|
|
|
static let expandChapters = Key<Bool>("expandChapters", default: true)
|
|
|
|
static let showRelated = Key<Bool>("showRelated", default: true)
|
|
|
|
static let showInspector = Key<ShowInspectorSetting>("showInspector", default: .onlyLocal)
|
|
|
|
|
|
|
|
static let playerSidebar = Key<PlayerSidebarSetting>("playerSidebar", default: .defaultValue)
|
|
|
|
static let showKeywords = Key<Bool>("showKeywords", default: false)
|
2024-08-20 18:38:18 +00:00
|
|
|
static let showComments = Key<Bool>("showComments", default: true)
|
2024-02-01 22:54:16 +00:00
|
|
|
#if !os(tvOS)
|
|
|
|
static let showScrollToTopInComments = Key<Bool>("showScrollToTopInComments", default: true)
|
|
|
|
#endif
|
|
|
|
static let enableReturnYouTubeDislike = Key<Bool>("enableReturnYouTubeDislike", default: false)
|
|
|
|
|
|
|
|
#if os(iOS)
|
2024-09-01 10:42:31 +00:00
|
|
|
static let isOrientationLocked = Key<Bool>("isOrientationLocked", default: Constants.isIPhone)
|
2024-08-30 14:03:35 +00:00
|
|
|
static let enterFullscreenInLandscape = Key<Bool>("enterFullscreenInLandscape", default: Constants.isIPhone)
|
2024-09-01 10:42:31 +00:00
|
|
|
static let rotateToLandscapeOnEnterFullScreen = Key<FullScreenRotationSetting>("rotateToLandscapeOnEnterFullScreen", default: .landscapeRight)
|
2024-02-01 22:54:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static let closePiPOnNavigation = Key<Bool>("closePiPOnNavigation", default: false)
|
|
|
|
static let closePiPOnOpeningPlayer = Key<Bool>("closePiPOnOpeningPlayer", default: false)
|
|
|
|
static let closePlayerOnOpeningPiP = Key<Bool>("closePlayerOnOpeningPiP", default: false)
|
|
|
|
#if !os(macOS)
|
|
|
|
static let closePiPAndOpenPlayerOnEnteringForeground = Key<Bool>("closePiPAndOpenPlayerOnEnteringForeground", default: false)
|
|
|
|
#endif
|
|
|
|
|
2024-07-06 10:32:31 +00:00
|
|
|
static let captionsAutoShow = Key<Bool>("captionsAutoShow", default: false)
|
|
|
|
static let captionsDefaultLanguageCode = Key<String>("captionsDefaultLanguageCode", default: LanguageCodes.English.rawValue)
|
|
|
|
static let captionsFallbackLanguageCode = Key<String>("captionsDefaultFallbackCode", default: LanguageCodes.English.rawValue)
|
|
|
|
static let captionsFontScaleSize = Key<String>("captionsFontScale", default: "1.0")
|
|
|
|
static let captionsFontColor = Key<String>("captionsFontColor", default: "#FFFFFF")
|
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: GROUP - Controls
|
|
|
|
|
2024-08-30 14:03:35 +00:00
|
|
|
static let avPlayerUsesSystemControls = Key<Bool>("avPlayerUsesSystemControls", default: Constants.isTvOS)
|
2024-02-01 22:54:16 +00:00
|
|
|
static let horizontalPlayerGestureEnabled = Key<Bool>("horizontalPlayerGestureEnabled", default: true)
|
|
|
|
static let seekGestureSensitivity = Key<Double>("seekGestureSensitivity", default: 30.0)
|
|
|
|
static let seekGestureSpeed = Key<Double>("seekGestureSpeed", default: 0.5)
|
|
|
|
|
|
|
|
#if os(iOS)
|
2024-08-30 14:03:35 +00:00
|
|
|
static let playerControlsLayoutDefault = Constants.isIPad ? PlayerControlsLayout.medium : .small
|
|
|
|
static let fullScreenPlayerControlsLayoutDefault = Constants.isIPad ? PlayerControlsLayout.medium : .small
|
2024-02-01 22:54:16 +00:00
|
|
|
#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>("playerControlsLayout", default: playerControlsLayoutDefault)
|
|
|
|
static let fullScreenPlayerControlsLayout = Key<PlayerControlsLayout>("fullScreenPlayerControlsLayout", default: fullScreenPlayerControlsLayoutDefault)
|
2024-09-05 13:06:59 +00:00
|
|
|
static let playerControlsBackgroundOpacity = Key<Double>("playerControlsBackgroundOpacity", default: 0.2)
|
2024-02-01 22:54:16 +00:00
|
|
|
|
|
|
|
static let systemControlsCommands = Key<SystemControlsCommands>("systemControlsCommands", default: .restartAndAdvanceToNext)
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
|
|
|
#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 playerControlsMusicModeEnabled = Key<Bool>("playerControlsMusicModeEnabled", default: false)
|
|
|
|
|
2024-02-01 23:17:06 +00:00
|
|
|
static let playerActionsButtonLabelStyle = Key<ButtonLabelStyle>("playerActionsButtonLabelStyle", default: .iconAndText)
|
2024-02-01 22:54:16 +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 actionButtonHideEnabled = Key<Bool>("actionButtonHideEnabled", default: false)
|
|
|
|
static let actionButtonCloseEnabled = Key<Bool>("actionButtonCloseEnabled", default: true)
|
|
|
|
static let actionButtonFullScreenEnabled = Key<Bool>("actionButtonFullScreenEnabled", default: false)
|
|
|
|
static let actionButtonPipEnabled = Key<Bool>("actionButtonPipEnabled", default: false)
|
|
|
|
static let actionButtonLockOrientationEnabled = Key<Bool>("actionButtonLockOrientationEnabled", default: false)
|
|
|
|
static let actionButtonRestartEnabled = Key<Bool>("actionButtonRestartEnabled", default: false)
|
|
|
|
static let actionButtonAdvanceToNextItemEnabled = Key<Bool>("actionButtonAdvanceToNextItemEnabled", default: false)
|
|
|
|
static let actionButtonMusicModeEnabled = Key<Bool>("actionButtonMusicModeEnabled", default: true)
|
|
|
|
|
|
|
|
// MARK: GROUP - Quality
|
2022-08-16 22:34:25 +00:00
|
|
|
|
2024-08-30 14:03:35 +00:00
|
|
|
static let hd2160p60MPVProfile = QualityProfile(id: "hd2160p60MPVProfile", backend: .mpv, resolution: .hd2160p60, formats: QualityProfile.Format.allCases, order: Array(QualityProfile.Format.allCases.indices))
|
|
|
|
static let hd1080p60MPVProfile = QualityProfile(id: "hd1080p60MPVProfile", backend: .mpv, resolution: .hd1080p60, formats: QualityProfile.Format.allCases, order: Array(QualityProfile.Format.allCases.indices))
|
|
|
|
static let hd1080pMPVProfile = QualityProfile(id: "hd1080pMPVProfile", backend: .mpv, resolution: .hd1080p30, formats: QualityProfile.Format.allCases, order: Array(QualityProfile.Format.allCases.indices))
|
|
|
|
static let hd720p60MPVProfile = QualityProfile(id: "hd720p60MPVProfile", backend: .mpv, resolution: .hd720p60, formats: QualityProfile.Format.allCases, order: Array(QualityProfile.Format.allCases.indices))
|
|
|
|
static let hd720pMPVProfile = QualityProfile(id: "hd720pMPVProfile", backend: .mpv, resolution: .hd720p30, formats: QualityProfile.Format.allCases, order: Array(QualityProfile.Format.allCases.indices))
|
|
|
|
static let sd360pMPVProfile = QualityProfile(id: "sd360pMPVProfile", backend: .mpv, resolution: .sd360p30, formats: QualityProfile.Format.allCases, order: Array(QualityProfile.Format.allCases.indices))
|
|
|
|
static let hd720pAVPlayerProfile = QualityProfile(id: "hd720pAVPlayerProfile", backend: .appleAVPlayer, resolution: .hd720p30, formats: [.stream, .hls], order: Array(QualityProfile.Format.allCases.indices))
|
|
|
|
static let sd360pAVPlayerProfile = QualityProfile(id: "sd360pAVPlayerProfile", backend: .appleAVPlayer, resolution: .sd360p30, formats: [.stream, .hls], order: Array(QualityProfile.Format.allCases.indices))
|
2022-08-16 22:34:25 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
2024-08-30 14:03:35 +00:00
|
|
|
enum QualityProfiles {
|
|
|
|
// iPad-specific settings
|
|
|
|
enum iPad {
|
|
|
|
static let qualityProfilesDefault = [
|
|
|
|
hd1080p60MPVProfile,
|
|
|
|
hd1080pMPVProfile,
|
|
|
|
hd720p60MPVProfile,
|
|
|
|
hd720pMPVProfile
|
|
|
|
]
|
|
|
|
|
|
|
|
static let batteryCellularProfileDefault = hd720pMPVProfile.id
|
|
|
|
static let batteryNonCellularProfileDefault = hd720p60MPVProfile.id
|
|
|
|
static let chargingCellularProfileDefault = hd1080pMPVProfile.id
|
|
|
|
static let chargingNonCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
}
|
|
|
|
|
|
|
|
// iPhone-specific settings
|
|
|
|
enum iPhone {
|
|
|
|
static let qualityProfilesDefault = [
|
|
|
|
hd1080p60MPVProfile,
|
|
|
|
hd1080pMPVProfile,
|
|
|
|
hd720p60MPVProfile,
|
|
|
|
hd720pMPVProfile,
|
|
|
|
sd360pMPVProfile
|
|
|
|
]
|
|
|
|
|
|
|
|
static let batteryCellularProfileDefault = sd360pMPVProfile.id
|
|
|
|
static let batteryNonCellularProfileDefault = hd720p60MPVProfile.id
|
|
|
|
static let chargingCellularProfileDefault = hd720pMPVProfile.id
|
|
|
|
static let chargingNonCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
}
|
|
|
|
|
|
|
|
// Access the correct profile based on device type
|
|
|
|
static var currentProfile: (qualityProfilesDefault: [QualityProfile], batteryCellularProfileDefault: String, batteryNonCellularProfileDefault: String, chargingCellularProfileDefault: String, chargingNonCellularProfileDefault: String) {
|
|
|
|
if Constants.isIPad {
|
|
|
|
return (
|
|
|
|
qualityProfilesDefault: iPad.qualityProfilesDefault,
|
|
|
|
batteryCellularProfileDefault: iPad.batteryCellularProfileDefault,
|
|
|
|
batteryNonCellularProfileDefault: iPad.batteryNonCellularProfileDefault,
|
|
|
|
chargingCellularProfileDefault: iPad.chargingCellularProfileDefault,
|
|
|
|
chargingNonCellularProfileDefault: iPad.chargingNonCellularProfileDefault
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
qualityProfilesDefault: iPhone.qualityProfilesDefault,
|
|
|
|
batteryCellularProfileDefault: iPhone.batteryCellularProfileDefault,
|
|
|
|
batteryNonCellularProfileDefault: iPhone.batteryNonCellularProfileDefault,
|
|
|
|
chargingCellularProfileDefault: iPhone.chargingCellularProfileDefault,
|
|
|
|
chargingNonCellularProfileDefault: iPhone.chargingNonCellularProfileDefault
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-16 22:34:25 +00:00
|
|
|
#elseif os(tvOS)
|
2024-08-30 14:03:35 +00:00
|
|
|
enum QualityProfiles {
|
|
|
|
// tvOS-specific settings
|
|
|
|
enum tvOS {
|
|
|
|
static let qualityProfilesDefault = [
|
|
|
|
hd2160p60MPVProfile,
|
|
|
|
hd1080p60MPVProfile,
|
|
|
|
hd720p60MPVProfile,
|
|
|
|
hd720pAVPlayerProfile
|
|
|
|
]
|
|
|
|
|
|
|
|
static let batteryCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
static let batteryNonCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
static let chargingCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
static let chargingNonCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
}
|
|
|
|
|
|
|
|
// Access the correct profile based on device type
|
|
|
|
static var currentProfile: (qualityProfilesDefault: [QualityProfile], batteryCellularProfileDefault: String, batteryNonCellularProfileDefault: String, chargingCellularProfileDefault: String, chargingNonCellularProfileDefault: String) {
|
|
|
|
(
|
|
|
|
qualityProfilesDefault: tvOS.qualityProfilesDefault,
|
|
|
|
batteryCellularProfileDefault: tvOS.batteryCellularProfileDefault,
|
|
|
|
batteryNonCellularProfileDefault: tvOS.batteryNonCellularProfileDefault,
|
|
|
|
chargingCellularProfileDefault: tvOS.chargingCellularProfileDefault,
|
|
|
|
chargingNonCellularProfileDefault: tvOS.chargingNonCellularProfileDefault
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2022-08-16 22:34:25 +00:00
|
|
|
#else
|
2024-08-30 14:03:35 +00:00
|
|
|
enum QualityProfiles {
|
|
|
|
// macOS-specific settings
|
|
|
|
enum macOS {
|
|
|
|
static let qualityProfilesDefault = [
|
|
|
|
hd2160p60MPVProfile,
|
|
|
|
hd1080p60MPVProfile,
|
|
|
|
hd1080pMPVProfile,
|
|
|
|
hd720p60MPVProfile
|
|
|
|
]
|
|
|
|
|
|
|
|
static let batteryCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
static let batteryNonCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
static let chargingCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
static let chargingNonCellularProfileDefault = hd1080p60MPVProfile.id
|
|
|
|
}
|
|
|
|
|
|
|
|
// Access the correct profile for other platforms
|
|
|
|
static var currentProfile: (qualityProfilesDefault: [QualityProfile], batteryCellularProfileDefault: String, batteryNonCellularProfileDefault: String, chargingCellularProfileDefault: String, chargingNonCellularProfileDefault: String) {
|
|
|
|
(
|
|
|
|
qualityProfilesDefault: macOS.qualityProfilesDefault,
|
|
|
|
batteryCellularProfileDefault: macOS.batteryCellularProfileDefault,
|
|
|
|
batteryNonCellularProfileDefault: macOS.batteryNonCellularProfileDefault,
|
|
|
|
chargingCellularProfileDefault: macOS.chargingCellularProfileDefault,
|
|
|
|
chargingNonCellularProfileDefault: macOS.chargingNonCellularProfileDefault
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2022-08-16 22:34:25 +00:00
|
|
|
#endif
|
2024-02-01 22:54:16 +00:00
|
|
|
|
2024-08-30 14:03:35 +00:00
|
|
|
static let batteryCellularProfile = Key<QualityProfile.ID>(
|
|
|
|
"batteryCellularProfile",
|
|
|
|
default: QualityProfiles.currentProfile.batteryCellularProfileDefault
|
|
|
|
)
|
|
|
|
static let batteryNonCellularProfile = Key<QualityProfile.ID>(
|
|
|
|
"batteryNonCellularProfile",
|
|
|
|
default: QualityProfiles.currentProfile.batteryNonCellularProfileDefault
|
|
|
|
)
|
|
|
|
static let chargingCellularProfile = Key<QualityProfile.ID>(
|
|
|
|
"chargingCellularProfile",
|
|
|
|
default: QualityProfiles.currentProfile.chargingCellularProfileDefault
|
|
|
|
)
|
|
|
|
static let chargingNonCellularProfile = Key<QualityProfile.ID>(
|
|
|
|
"chargingNonCellularProfile",
|
|
|
|
default: QualityProfiles.currentProfile.chargingNonCellularProfileDefault
|
|
|
|
)
|
|
|
|
static let forceAVPlayerForLiveStreams = Key<Bool>(
|
|
|
|
"forceAVPlayerForLiveStreams",
|
|
|
|
default: true
|
|
|
|
)
|
|
|
|
static let qualityProfiles = Key<[QualityProfile]>(
|
|
|
|
"qualityProfiles",
|
|
|
|
default: QualityProfiles.currentProfile.qualityProfilesDefault
|
|
|
|
)
|
2021-09-28 18:06:05 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: GROUP - History
|
2021-10-24 18:01:08 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
static let saveRecents = Key<Bool>("saveRecents", default: true)
|
2021-11-05 19:57:22 +00:00
|
|
|
static let saveHistory = Key<Bool>("saveHistory", default: true)
|
2024-02-27 18:01:11 +00:00
|
|
|
static let showRecents = Key<Bool>("showRecents", default: true)
|
|
|
|
static let limitRecents = Key<Bool>("limitRecents", default: false)
|
|
|
|
static let limitRecentsAmount = Key<Int>("limitRecentsAmount", default: 10)
|
2021-12-26 21:14:46 +00:00
|
|
|
static let showWatchingProgress = Key<Bool>("showWatchingProgress", default: true)
|
2024-02-01 22:54:16 +00:00
|
|
|
static let saveLastPlayed = Key<Bool>("saveLastPlayed", default: false)
|
|
|
|
|
2021-12-26 21:14:46 +00:00
|
|
|
static let watchedVideoPlayNowBehavior = Key<WatchedVideoPlayNowBehavior>("watchedVideoPlayNowBehavior", default: .continue)
|
2024-02-01 22:54:16 +00:00
|
|
|
static let watchedThreshold = Key<Int>("watchedThreshold", default: 90)
|
2022-01-02 19:39:19 +00:00
|
|
|
static let resetWatchedStatusOnPlaying = Key<Bool>("resetWatchedStatusOnPlaying", default: false)
|
2021-11-05 19:57:22 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
static let watchedVideoStyle = Key<WatchedVideoStyle>("watchedVideoStyle", default: .badge)
|
|
|
|
static let watchedVideoBadgeColor = Key<WatchedVideoBadgeColor>("WatchedVideoBadgeColor", default: .red)
|
|
|
|
static let showToggleWatchedStatusButton = Key<Bool>("showToggleWatchedStatusButton", default: false)
|
2021-11-07 20:51:22 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: GROUP - SponsorBlock
|
2021-12-07 23:09:49 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
static let sponsorBlockInstance = Key<String>("sponsorBlockInstance", default: "https://sponsor.ajay.app")
|
|
|
|
static let sponsorBlockCategories = Key<Set<String>>("sponsorBlockCategories", default: Set(SponsorBlockAPI.categories))
|
2024-04-23 15:16:31 +00:00
|
|
|
static let sponsorBlockColors = Key<[String: String]>("sponsorBlockColors", default: SponsorBlockColors.dictionary)
|
2024-04-23 20:08:08 +00:00
|
|
|
static let sponsorBlockShowTimeWithSkipsRemoved = Key<Bool>("sponsorBlockShowTimeWithSkipsRemoved", default: false)
|
|
|
|
static let sponsorBlockShowCategoriesInTimeline = Key<Bool>("sponsorBlockShowCategoriesInTimeline", default: true)
|
|
|
|
static let sponsorBlockShowNoticeAfterSkip = Key<Bool>("sponsorBlockShowNoticeAfterSkip", default: true)
|
2022-06-17 10:27:01 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: GROUP - Locations
|
2022-06-18 12:39:49 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
static let instancesManifest = Key<String>("instancesManifest", default: "")
|
|
|
|
static let countryOfPublicInstances = Key<String?>("countryOfPublicInstances")
|
2022-07-02 10:49:57 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
static let instances = Key<[Instance]>("instances", default: [])
|
|
|
|
static let accounts = Key<[Account]>("accounts", default: [])
|
2022-12-19 11:08:27 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: Group - Advanced
|
2022-12-19 10:29:18 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
static let showPlayNowInBackendContextMenu = Key<Bool>("showPlayNowInBackendContextMenu", default: false)
|
2024-09-10 09:04:05 +00:00
|
|
|
static let videoLoadingRetryCount = Key<Int>("videoLoadingRetryCount", default: 10)
|
2022-12-19 12:35:37 +00:00
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
static let showMPVPlaybackStats = Key<Bool>("showMPVPlaybackStats", default: false)
|
|
|
|
static let mpvEnableLogging = Key<Bool>("mpvEnableLogging", default: false)
|
2022-09-27 19:07:02 +00:00
|
|
|
static let mpvCacheSecs = Key<String>("mpvCacheSecs", default: "120")
|
|
|
|
static let mpvCachePauseWait = Key<String>("mpvCachePauseWait", default: "3")
|
2024-05-22 16:42:08 +00:00
|
|
|
static let mpvCachePauseInital = Key<Bool>("mpvCachePauseInitial", default: false)
|
2024-02-02 08:43:46 +00:00
|
|
|
static let mpvDeinterlace = Key<Bool>("mpvDeinterlace", default: false)
|
2024-05-22 16:42:08 +00:00
|
|
|
static let mpvHWdec = Key<String>("hwdec", default: "auto-safe")
|
|
|
|
static let mpvDemuxerLavfProbeInfo = Key<String>("mpvDemuxerLavfProbeInfo", default: "no")
|
2024-05-23 17:02:13 +00:00
|
|
|
static let mpvInitialAudioSync = Key<Bool>("mpvInitialAudioSync", default: true)
|
2024-09-07 20:22:09 +00:00
|
|
|
static let mpvSetRefreshToContentFPS = Key<Bool>("mpvSetRefreshToContentFPS", 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")
|
|
|
|
|
2024-02-01 22:54:16 +00:00
|
|
|
// MARK: GROUP - Other exportable
|
|
|
|
|
|
|
|
static let lastAccountID = Key<Account.ID?>("lastAccountID")
|
|
|
|
static let lastInstanceID = Key<Instance.ID?>("lastInstanceID")
|
|
|
|
|
|
|
|
static let playerRate = Key<Double>("playerRate", default: 1.0)
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
|
|
|
|
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
|
|
|
|
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)
|
2023-04-22 19:07:30 +00:00
|
|
|
static let playlistListingStyle = Key<ListingStyle>("playlistListingStyle", default: .list)
|
2022-12-12 00:18:29 +00:00
|
|
|
static let channelPlaylistListingStyle = Key<ListingStyle>("channelPlaylistListingStyle", default: .cells)
|
|
|
|
static let searchListingStyle = Key<ListingStyle>("searchListingStyle", default: .cells)
|
2023-02-25 15:42:18 +00:00
|
|
|
static let hideShorts = Key<Bool>("hideShorts", default: false)
|
2023-05-23 16:48:39 +00:00
|
|
|
static let hideWatched = Key<Bool>("hideWatched", default: false)
|
2024-02-01 22:54:16 +00:00
|
|
|
|
|
|
|
// MARK: GROUP - Not exportable
|
|
|
|
|
|
|
|
static let queue = Key<[PlayerQueueItem]>("queue", default: [])
|
|
|
|
static let playbackMode = Key<PlayerModel.PlaybackMode>("playbackMode", default: .queue)
|
|
|
|
static let lastPlayed = Key<PlayerQueueItem?>("lastPlayed")
|
|
|
|
|
|
|
|
static let activeBackend = Key<PlayerBackendType>("activeBackend", default: .mpv)
|
|
|
|
static let captionsLanguageCode = Key<String?>("captionsLanguageCode")
|
|
|
|
static let lastUsedPlaylistID = Key<Playlist.ID?>("lastPlaylistID")
|
|
|
|
static let lastAccountIsPublic = Key<Bool>("lastAccountIsPublic", default: false)
|
|
|
|
|
|
|
|
// MARK: LEGACY
|
|
|
|
|
|
|
|
static let homeHistoryItems = Key<Int>("homeHistoryItems", default: 10)
|
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
|
|
|
|
2024-09-09 10:59:39 +00:00
|
|
|
var value: Stream.Resolution {
|
|
|
|
if let predefined = Stream.Resolution.PredefinedResolution(rawValue: rawValue) {
|
|
|
|
return .predefined(predefined)
|
|
|
|
}
|
|
|
|
// Provide a default value of 720p 30
|
|
|
|
return .custom(height: 720, refreshRate: 30)
|
2021-11-05 19:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var description: String {
|
2024-09-09 10:59:39 +00:00
|
|
|
let resolution = value
|
|
|
|
let height = resolution.height
|
|
|
|
let refreshRate = resolution.refreshRate
|
|
|
|
|
|
|
|
// Superscript labels
|
|
|
|
let superscript4K = "⁴ᴷ"
|
|
|
|
let superscriptHD = "ᴴᴰ"
|
|
|
|
|
|
|
|
// Special handling for specific resolutions
|
|
|
|
switch height {
|
|
|
|
case 2160:
|
|
|
|
// 4K superscript after the refresh rate
|
|
|
|
return refreshRate == 30 ? "2160p \(superscript4K)" : "2160p\(refreshRate) \(superscript4K)"
|
|
|
|
case 1440, 1080:
|
|
|
|
// HD superscript after the refresh rate
|
|
|
|
return refreshRate == 30 ? "\(height)p \(superscriptHD)" : "\(height)p\(refreshRate) \(superscriptHD)"
|
2021-11-05 19:35:27 +00:00
|
|
|
default:
|
2024-09-09 10:59:39 +00:00
|
|
|
// Default formatting for other resolutions
|
|
|
|
return refreshRate == 30 ? "\(height)p" : "\(height)p\(refreshRate)"
|
2021-11-05 19:35:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum PlayerSidebarSetting: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case always, whenFits, never
|
|
|
|
|
|
|
|
static var defaultValue: Self {
|
|
|
|
#if os(macOS)
|
|
|
|
.always
|
|
|
|
#else
|
2023-05-07 19:45:18 +00:00
|
|
|
.whenFits
|
2021-11-05 19:35:27 +00:00
|
|
|
#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
|
|
|
|
2023-05-25 15:01:53 +00:00
|
|
|
enum StartupSection: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case home, subscriptions, popular, trending, playlists, search
|
|
|
|
|
|
|
|
var label: String {
|
|
|
|
rawValue.capitalized.localized()
|
|
|
|
}
|
|
|
|
|
|
|
|
var tabSelection: TabSelection {
|
|
|
|
switch self {
|
|
|
|
case .home:
|
|
|
|
return .home
|
|
|
|
case .subscriptions:
|
|
|
|
return .subscriptions
|
|
|
|
case .popular:
|
|
|
|
return .popular
|
|
|
|
case .trending:
|
|
|
|
return .trending
|
|
|
|
case .playlists:
|
|
|
|
return .playlists
|
|
|
|
case .search:
|
|
|
|
return .search
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
2024-02-01 23:17:06 +00:00
|
|
|
|
|
|
|
var description: String {
|
|
|
|
switch self {
|
|
|
|
case .iconOnly:
|
2024-02-03 20:21:31 +00:00
|
|
|
return "Icon only".localized()
|
2024-02-01 23:17:06 +00:00
|
|
|
case .iconAndText:
|
2024-02-03 20:21:31 +00:00
|
|
|
return "Icon and text".localized()
|
2024-02-01 23:17:06 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-18 12:39:49 +00:00
|
|
|
}
|
2022-06-26 12:25:54 +00:00
|
|
|
|
|
|
|
enum ThumbnailsQuality: String, CaseIterable, Defaults.Serializable {
|
2024-08-19 14:35:29 +00:00
|
|
|
case highest, high, medium, low
|
2022-09-04 15:28:30 +00:00
|
|
|
|
|
|
|
var description: String {
|
|
|
|
switch self {
|
|
|
|
case .highest:
|
2024-08-19 14:35:29 +00:00
|
|
|
return "Best quality".localized()
|
|
|
|
case .high:
|
|
|
|
return "High quality".localized()
|
2022-09-04 15:28:30 +00:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-20 14:04:58 +00:00
|
|
|
|
|
|
|
enum FullScreenRotationSetting: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case landscapeLeft
|
|
|
|
case landscapeRight
|
|
|
|
|
2023-05-20 22:18:10 +00:00
|
|
|
#if os(iOS)
|
2024-09-01 10:42:31 +00:00
|
|
|
var interfaceOrientation: UIInterfaceOrientation {
|
2023-05-20 22:18:10 +00:00
|
|
|
switch self {
|
|
|
|
case .landscapeLeft:
|
|
|
|
return .landscapeLeft
|
|
|
|
case .landscapeRight:
|
|
|
|
return .landscapeRight
|
|
|
|
}
|
2023-05-20 14:04:58 +00:00
|
|
|
}
|
2023-05-20 22:18:10 +00:00
|
|
|
#endif
|
2023-05-20 14:04:58 +00:00
|
|
|
}
|
2023-05-25 12:28:29 +00:00
|
|
|
|
|
|
|
struct WidgetSettings: Defaults.Serializable {
|
|
|
|
static let defaultLimit = 10
|
|
|
|
static let maxLimit: [WidgetListingStyle: Int] = [
|
|
|
|
.horizontalCells: 50,
|
|
|
|
.list: 50
|
|
|
|
]
|
|
|
|
|
|
|
|
static var bridge = WidgetSettingsBridge()
|
|
|
|
|
|
|
|
var id: String
|
|
|
|
var listingStyle = WidgetListingStyle.horizontalCells
|
|
|
|
var limit = Self.defaultLimit
|
|
|
|
|
|
|
|
var viewID: String {
|
|
|
|
"\(id)-\(listingStyle.rawValue)-\(limit)"
|
|
|
|
}
|
|
|
|
|
|
|
|
static func maxLimit(_ style: WidgetListingStyle) -> Int {
|
2023-09-23 13:07:27 +00:00
|
|
|
maxLimit[style] ?? defaultLimit
|
2023-05-25 12:28:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct WidgetSettingsBridge: Defaults.Bridge {
|
|
|
|
typealias Value = WidgetSettings
|
|
|
|
typealias Serializable = [String: String]
|
|
|
|
|
|
|
|
func serialize(_ value: Value?) -> Serializable? {
|
|
|
|
guard let value else { return nil }
|
|
|
|
|
|
|
|
return [
|
|
|
|
"id": value.id,
|
|
|
|
"listingStyle": value.listingStyle.rawValue,
|
|
|
|
"limit": String(value.limit)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
func deserialize(_ object: Serializable?) -> Value? {
|
|
|
|
guard let object, let id = object["id"], !id.isEmpty else { return nil }
|
|
|
|
var listingStyle = WidgetListingStyle.horizontalCells
|
|
|
|
if let style = object["listingStyle"] {
|
|
|
|
listingStyle = WidgetListingStyle(rawValue: style) ?? .horizontalCells
|
|
|
|
}
|
|
|
|
let limit = Int(object["limit"] ?? "\(WidgetSettings.defaultLimit)") ?? WidgetSettings.defaultLimit
|
|
|
|
|
|
|
|
return Value(
|
|
|
|
id: id,
|
|
|
|
listingStyle: listingStyle,
|
|
|
|
limit: limit
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum WidgetListingStyle: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case horizontalCells
|
|
|
|
case list
|
|
|
|
}
|
2024-04-23 15:16:31 +00:00
|
|
|
|
|
|
|
enum SponsorBlockColors: String {
|
|
|
|
case sponsor = "#00D400" // Green
|
|
|
|
case selfpromo = "#FFFF00" // Yellow
|
|
|
|
case interaction = "#CC00FF" // Purple
|
|
|
|
case intro = "#00FFFF" // Cyan
|
|
|
|
case outro = "#0202ED" // Dark Blue
|
|
|
|
case preview = "#008FD6" // Light Blue
|
|
|
|
case filler = "#7300FF" // Violet
|
|
|
|
case music_offtopic = "#FF9900" // Orange
|
|
|
|
|
|
|
|
// Define all cases, can be used to iterate over the colors
|
2024-08-18 12:46:51 +00:00
|
|
|
static let allCases: [SponsorBlockColors] = [Self.sponsor, Self.selfpromo, Self.interaction, Self.intro, Self.outro, Self.preview, Self.filler, Self.music_offtopic]
|
2024-04-23 15:16:31 +00:00
|
|
|
|
|
|
|
// Create a dictionary with the category names as keys and colors as values
|
|
|
|
static let dictionary: [String: String] = {
|
|
|
|
var dict = [String: String]()
|
|
|
|
for item in allCases {
|
|
|
|
dict[String(describing: item)] = item.rawValue
|
|
|
|
}
|
|
|
|
return dict
|
|
|
|
}()
|
|
|
|
}
|