mirror of
https://github.com/yattee/yattee.git
synced 2026-07-19 22:02:10 +00:00
Add a Custom swatch to the appearance settings accent color grid, backed by a hex value stored in settings (synced via iCloud like the rest). iOS uses the native ColorPicker wheel; macOS uses a circular swatch that opens NSColorPanel, since the SwiftUI color well looks out of place among the circles. All accent consumers now read the resolved color through SettingsManager.resolvedAccentColor. The indigo preset is retired from the grid but kept in the enum, so users who selected it keep their color until they pick another one. Claude-Session: https://claude.ai/code/session_0154KH8RAVAvm6iVanhmoW8o
184 lines
5.9 KiB
Swift
184 lines
5.9 KiB
Swift
//
|
|
// SettingsKey.swift
|
|
// Yattee
|
|
//
|
|
// Keys used for storing settings in UserDefaults and iCloud.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// Keys for storing settings values.
|
|
/// Used internally by SettingsManager for persistence.
|
|
enum SettingsKey: String, CaseIterable {
|
|
// General
|
|
case theme
|
|
case accentColor
|
|
case customAccentColor
|
|
case showWatchedCheckmark
|
|
|
|
// Playback
|
|
case preferredQuality
|
|
case cellularQuality
|
|
case autoplay
|
|
case backgroundPlayback
|
|
case preferredAudioLanguage
|
|
case preferredSubtitlesLanguage
|
|
case resumeAction
|
|
case tvOSMenuButtonClosesVideo
|
|
case allowSoftwareDecodedFormats
|
|
|
|
// SponsorBlock
|
|
case sponsorBlockEnabled
|
|
case sponsorBlockCategories
|
|
case sponsorBlockAPIURL
|
|
|
|
// Return YouTube Dislike
|
|
case returnYouTubeDislikeEnabled
|
|
|
|
// DeArrow
|
|
case deArrowEnabled
|
|
case deArrowReplaceTitles
|
|
case deArrowReplaceThumbnails
|
|
case deArrowAPIURL
|
|
case deArrowThumbnailAPIURL
|
|
|
|
// Short link resolution
|
|
case resolveShortLinksEnabled
|
|
|
|
// Platform-specific
|
|
case macPlayerSeparateWindow
|
|
case macPlayerFloating
|
|
case macControlsBarOffsetX // Normalized X offset of macOS control bar from default position
|
|
case macControlsBarOffsetY // Normalized Y offset of macOS control bar from default position
|
|
case playerSheetAutoResize
|
|
case listStyle
|
|
|
|
// Feed
|
|
case feedCacheValidityMinutes
|
|
|
|
// Player
|
|
case keepPlayerPinned
|
|
case hapticFeedbackEnabled
|
|
case hapticFeedbackIntensity
|
|
case inAppOrientationLock
|
|
case rotateToMatchAspectRatio
|
|
case preferPortraitBrowsing
|
|
|
|
// Home
|
|
case homeShortcutOrder
|
|
case homeShortcutVisibility
|
|
case homeShortcutLayout
|
|
case homeShortcutCardStyle
|
|
case homeShortcutCardColor
|
|
case homeShortcutColorfulPalette
|
|
case homeShortcutCustomPaletteColors
|
|
case homeSectionOrder
|
|
case homeSectionVisibility
|
|
case homeSectionItemsLimit
|
|
case homeSectionLayout
|
|
|
|
// Top Shelf (tvOS)
|
|
case topShelfSections
|
|
|
|
// Tab Bar (compact size class)
|
|
case tabBarItemOrder
|
|
case tabBarItemVisibility
|
|
case tabBarStartupTab
|
|
|
|
// Sidebar
|
|
case sidebarMainItemOrder
|
|
case sidebarMainItemVisibility
|
|
case sidebarStartupTab
|
|
case sidebarSourcesEnabled
|
|
case sidebarSourceSort
|
|
case sidebarSourcesLimitEnabled
|
|
case sidebarMaxSources
|
|
case sidebarChannelsEnabled
|
|
case sidebarMaxChannels
|
|
case sidebarChannelSort
|
|
case sidebarChannelsLimitEnabled
|
|
case sidebarPlaylistsEnabled
|
|
case sidebarMaxPlaylists
|
|
case sidebarPlaylistSort
|
|
case sidebarPlaylistsLimitEnabled
|
|
|
|
// Remote Control
|
|
case remoteControlCustomDeviceName
|
|
case remoteControlHideWhenBackgrounded
|
|
|
|
// Advanced
|
|
case showAdvancedStreamDetails
|
|
case showPlayerAreaDebug
|
|
case showTVDebugButton
|
|
case verboseMPVLogging
|
|
case verboseRemoteControlLogging
|
|
case mpvBufferSeconds
|
|
case mpvUseEDLStreams
|
|
case zoomTransitionsEnabled
|
|
case tvMatchDisplayFrameRate
|
|
case tvMatchDisplayDynamicRange
|
|
case tvAudioDelayMs
|
|
case tvVideoSyncMode
|
|
|
|
// Details panel
|
|
case floatingDetailsPanelSide // Landscape only - which side the panel appears on
|
|
case floatingDetailsPanelWidth // Resizable panel width in wide layout
|
|
case landscapeDetailsPanelVisible
|
|
case landscapeDetailsPanelPinned
|
|
|
|
// Player Controls
|
|
case activeControlsPresetID
|
|
|
|
// Video Swipe Actions
|
|
case videoSwipeActionOrder
|
|
case videoSwipeActionVisibility
|
|
|
|
// Onboarding
|
|
case onboardingCompleted
|
|
|
|
/// Whether this key should have platform-specific prefixes.
|
|
/// Platform-specific keys are stored under a `iOS.` / `macOS.` / `tvOS.` prefix
|
|
/// in both UserDefaults and iCloud, so each platform family syncs independently.
|
|
var isPlatformSpecific: Bool {
|
|
switch self {
|
|
case .preferredQuality, .cellularQuality, .allowSoftwareDecodedFormats,
|
|
.macPlayerSeparateWindow, .macPlayerFloating, .listStyle,
|
|
.macControlsBarOffsetX, .macControlsBarOffsetY,
|
|
// Home layout — different UI paradigms per platform
|
|
.homeShortcutOrder, .homeShortcutVisibility, .homeShortcutLayout, .homeShortcutCardStyle,
|
|
.homeShortcutCardColor, .homeShortcutColorfulPalette, .homeShortcutCustomPaletteColors,
|
|
.homeSectionOrder, .homeSectionVisibility, .homeSectionItemsLimit, .homeSectionLayout,
|
|
// Top Shelf — tvOS only
|
|
.topShelfSections,
|
|
// Tab bar (compact size class) layout
|
|
.tabBarItemOrder, .tabBarItemVisibility, .tabBarStartupTab,
|
|
// Sidebar layout/selection
|
|
.sidebarMainItemOrder, .sidebarMainItemVisibility, .sidebarStartupTab,
|
|
.sidebarSourcesEnabled, .sidebarSourceSort, .sidebarSourcesLimitEnabled, .sidebarMaxSources,
|
|
.sidebarChannelsEnabled, .sidebarMaxChannels, .sidebarChannelSort, .sidebarChannelsLimitEnabled,
|
|
.sidebarPlaylistsEnabled, .sidebarMaxPlaylists, .sidebarPlaylistSort, .sidebarPlaylistsLimitEnabled,
|
|
// Player details panel — iOS/iPadOS only, different on other platforms
|
|
.floatingDetailsPanelSide, .floatingDetailsPanelWidth,
|
|
.landscapeDetailsPanelVisible, .landscapeDetailsPanelPinned,
|
|
// Video swipe actions — touch-gesture feature
|
|
.videoSwipeActionOrder, .videoSwipeActionVisibility:
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
/// Whether this key should only be stored locally (not synced to iCloud).
|
|
/// Used for device-specific settings like custom device name for remote control.
|
|
var isLocalOnly: Bool {
|
|
switch self {
|
|
case .remoteControlCustomDeviceName, .remoteControlHideWhenBackgrounded,
|
|
.activeControlsPresetID, // Per-device preset selection
|
|
.onboardingCompleted: // Per-device onboarding state
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
}
|