yattee/Model/ContentItem.swift

66 lines
1.5 KiB
Swift
Raw Permalink Normal View History

import Foundation
struct ContentItem: Identifiable {
enum ContentType: String {
2022-03-27 10:49:57 +00:00
case video, playlist, channel, placeholder
private var sortOrder: Int {
switch self {
case .channel:
return 1
2021-10-22 23:04:03 +00:00
case .playlist:
return 2
default:
return 3
}
}
2023-06-17 12:09:51 +00:00
static func < (lhs: Self, rhs: Self) -> Bool {
lhs.sortOrder < rhs.sortOrder
}
}
2022-12-14 16:20:24 +00:00
static var placeholders: [Self] {
(0 ..< 9).map { i in .init(id: String(i)) }
}
var video: Video!
2021-10-22 23:04:03 +00:00
var playlist: ChannelPlaylist!
var channel: Channel!
2021-10-23 08:34:37 +00:00
var id: String = UUID().uuidString
2023-06-17 12:09:51 +00:00
static func array(of videos: [Video]) -> [Self] {
2023-04-22 13:08:33 +00:00
videos.map { Self(video: $0) }
}
2023-06-17 12:09:51 +00:00
static func array(of playlists: [ChannelPlaylist]) -> [Self] {
2023-04-22 13:08:33 +00:00
playlists.map { Self(playlist: $0) }
2022-11-27 10:42:16 +00:00
}
2023-06-17 12:09:51 +00:00
static func array(of channels: [Channel]) -> [Self] {
2023-04-22 13:08:33 +00:00
channels.map { Self(channel: $0) }
2022-11-27 10:42:16 +00:00
}
2023-06-17 12:09:51 +00:00
static func < (lhs: Self, rhs: Self) -> Bool {
lhs.contentType < rhs.contentType
}
var contentType: ContentType {
2022-03-27 10:49:57 +00:00
video.isNil ? (channel.isNil ? (playlist.isNil ? .placeholder : .playlist) : .channel) : .video
}
2022-12-16 19:37:05 +00:00
var cacheKey: String {
switch contentType {
case .video:
return video.cacheKey
case .playlist:
return playlist.cacheKey
case .channel:
return channel.cacheKey
case .placeholder:
return id
}
}
}