1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Model/ContentItem.swift

41 lines
956 B
Swift
Raw Normal View History

import Foundation
struct ContentItem: Identifiable {
enum ContentType: String {
case video, playlist, channel
private var sortOrder: Int {
switch self {
case .channel:
return 1
2021-10-23 04:34:03 +05:30
case .playlist:
return 2
default:
return 3
}
}
static func < (lhs: ContentType, rhs: ContentType) -> Bool {
lhs.sortOrder < rhs.sortOrder
}
}
var video: Video!
2021-10-23 04:34:03 +05:30
var playlist: ChannelPlaylist!
var channel: Channel!
2021-10-23 14:04:37 +05:30
var id: String = UUID().uuidString
static func array(of videos: [Video]) -> [ContentItem] {
videos.map { ContentItem(video: $0) }
}
static func < (lhs: ContentItem, rhs: ContentItem) -> Bool {
lhs.contentType < rhs.contentType
}
var contentType: ContentType {
2021-10-23 17:54:00 +05:30
video.isNil ? (channel.isNil ? .playlist : .channel) : .video
}
}