1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/Defaults.swift

105 lines
3.6 KiB
Swift
Raw Normal View History

2021-06-27 04:59:55 +05:30
import Defaults
import Foundation
2021-06-27 04:59:55 +05:30
2021-11-04 04:44:09 +05:30
extension Defaults.Keys {
static let invidiousInstanceID = "default-invidious-instance"
static let pipedInstanceID = "default-piped-instance"
2021-10-24 14:46:04 +05:30
static let privateAccountID = "default-private-invidious-account"
2021-10-17 04:18:58 +05:30
static let instances = Key<[Instance]>("instances", default: [
2021-10-28 02:41:38 +05:30
.init(
app: .piped,
id: pipedInstanceID,
name: "Public",
apiURL: "https://pipedapi.kavin.rocks",
frontendURL: "https://piped.kavin.rocks"
),
.init(app: .invidious,
id: invidiousInstanceID,
name: "Private",
apiURL: "https://invidious.home.arekf.net")
])
2021-10-21 03:51:50 +05:30
static let accounts = Key<[Account]>("accounts", default: [
2021-10-24 14:46:04 +05:30
.init(
id: privateAccountID,
instanceID: invidiousInstanceID,
name: "arekf",
url: "https://invidious.home.arekf.net",
sid: "ki55SJbaQmm0bOxUWctGAQLYPQRgk-CXDPw5Dp4oBmI="
)
2021-10-17 04:18:58 +05:30
])
2021-10-21 03:51:50 +05:30
static let lastAccountID = Key<Account.ID?>("lastAccountID")
static let lastInstanceID = Key<Instance.ID?>("lastInstanceID")
static let lastUsedPlaylistID = Key<Playlist.ID?>("lastPlaylistID")
2021-09-25 13:48:22 +05:30
2021-10-23 17:42:53 +05:30
static let sponsorBlockInstance = Key<String>("sponsorBlockInstance", default: "https://sponsor.ajay.app")
2021-10-23 22:19:45 +05:30
static let sponsorBlockCategories = Key<Set<String>>("sponsorBlockCategories", default: Set(SponsorBlockAPI.categories))
2021-10-23 17:42:53 +05:30
2021-11-02 03:26:18 +05:30
static let favorites = Key<[FavoriteItem]>("favorites", default: [
.init(section: .trending("US", nil))
])
2021-11-05 04:55:51 +05:30
static let channelOnThumbnail = Key<Bool>("channelOnThumbnail", default: true)
static let timeOnThumbnail = Key<Bool>("timeOnThumbnail", default: true)
2021-11-06 01:05:27 +05:30
static let quality = Key<ResolutionSetting>("quality", default: .best)
2021-11-04 04:30:17 +05:30
static let playerSidebar = Key<PlayerSidebarSetting>("playerSidebar", default: PlayerSidebarSetting.defaultValue)
2021-11-04 05:10:01 +05:30
static let playerInstanceID = Key<Instance.ID?>("playerInstance")
2021-11-04 04:44:09 +05:30
static let showKeywords = Key<Bool>("showKeywords", default: false)
2021-09-19 16:36:54 +05:30
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
static let queue = Key<[PlayerQueueItem]>("queue", default: [])
static let history = Key<[PlayerQueueItem]>("history", default: [])
static let lastPlayed = Key<PlayerQueueItem?>("lastPlayed")
2021-11-06 01:27:22 +05:30
static let saveHistory = Key<Bool>("saveHistory", default: true)
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
2021-11-08 02:21:22 +05:30
#if os(iOS)
static let tabNavigationSection = Key<TabNavigationSectionSetting>("tabNavigationSection", default: .trending)
#endif
2021-09-19 16:36:54 +05:30
}
2021-11-06 01:05:27 +05:30
enum ResolutionSetting: String, CaseIterable, Defaults.Serializable {
case best, hd720p, sd480p, sd360p, sd240p, sd144p
var value: Stream.Resolution {
switch self {
case .best:
return .hd720p
default:
return Stream.Resolution(rawValue: rawValue)!
}
}
var description: String {
switch self {
case .best:
return "Best available"
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-08 02:21:22 +05:30
#if os(iOS)
enum TabNavigationSectionSetting: String, Defaults.Serializable {
case trending, popular
}
#endif