mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
113 lines
2.7 KiB
Swift
113 lines
2.7 KiB
Swift
import AVFoundation
|
|
import Defaults
|
|
import Foundation
|
|
import SwiftyJSON
|
|
|
|
struct Channel: Identifiable, Hashable {
|
|
enum ContentType: String, Identifiable, CaseIterable {
|
|
case videos
|
|
case playlists
|
|
case livestreams
|
|
case shorts
|
|
case channels
|
|
|
|
var id: String {
|
|
rawValue
|
|
}
|
|
|
|
var description: String {
|
|
switch self {
|
|
case .livestreams:
|
|
return "Live Streams".localized()
|
|
default:
|
|
return rawValue.capitalized.localized()
|
|
}
|
|
}
|
|
|
|
var contentItemType: ContentItem.ContentType {
|
|
switch self {
|
|
case .videos:
|
|
return .video
|
|
case .playlists:
|
|
return .playlist
|
|
case .livestreams:
|
|
return .video
|
|
case .shorts:
|
|
return .video
|
|
case .channels:
|
|
return .channel
|
|
}
|
|
}
|
|
|
|
var systemImage: String {
|
|
switch self {
|
|
case .videos:
|
|
return "video"
|
|
case .playlists:
|
|
return "list.and.film"
|
|
case .livestreams:
|
|
return "dot.radiowaves.left.and.right"
|
|
case .shorts:
|
|
return "1.square"
|
|
case .channels:
|
|
return "person.3"
|
|
}
|
|
}
|
|
}
|
|
|
|
struct Tab: Identifiable, Hashable {
|
|
var contentType: ContentType
|
|
var data: String
|
|
|
|
var id: String {
|
|
contentType.id
|
|
}
|
|
}
|
|
|
|
var id: String
|
|
var name: String
|
|
var bannerURL: URL?
|
|
var thumbnailURL: URL?
|
|
var description = ""
|
|
|
|
var subscriptionsCount: Int?
|
|
var subscriptionsText: String?
|
|
|
|
var totalViews: Int?
|
|
var verified: Bool? // swiftlint:disable discouraged_optional_boolean
|
|
|
|
var videos = [Video]()
|
|
var tabs = [Tab]()
|
|
|
|
var detailsLoaded: Bool {
|
|
!subscriptionsString.isNil
|
|
}
|
|
|
|
var subscriptionsString: String? {
|
|
if let subscriptionsCount, subscriptionsCount > 0 {
|
|
return subscriptionsCount.formattedAsAbbreviation()
|
|
}
|
|
|
|
return subscriptionsText
|
|
}
|
|
|
|
var totalViewsString: String? {
|
|
guard let totalViews, totalViews > 0 else { return nil }
|
|
|
|
return totalViews.formattedAsAbbreviation()
|
|
}
|
|
|
|
func hash(into hasher: inout Hasher) {
|
|
hasher.combine(id)
|
|
}
|
|
|
|
var contentItem: ContentItem {
|
|
ContentItem(channel: self)
|
|
}
|
|
|
|
func hasData(for contentType: ContentType) -> Bool {
|
|
guard contentType != .videos, contentType != .playlists else { return true }
|
|
return tabs.contains { $0.contentType == contentType }
|
|
}
|
|
}
|