mirror of
https://github.com/yattee/yattee.git
synced 2024-12-15 23:00:32 +05:30
27 lines
717 B
Swift
27 lines
717 B
Swift
import Foundation
|
|
import SwiftyJSON
|
|
|
|
final class ChannelVideosProvider: DataProvider {
|
|
@Published var videos = [Video]()
|
|
|
|
var channelID: String? = ""
|
|
|
|
func load() {
|
|
guard channelID != nil else {
|
|
return
|
|
}
|
|
|
|
let searchPath = "channels/\(channelID!)"
|
|
DataProvider.request(searchPath).responseJSON { response in
|
|
switch response.result {
|
|
case let .success(value):
|
|
if let channelVideos = JSON(value).dictionaryValue["latestVideos"] {
|
|
self.videos = channelVideos.arrayValue.map { Video($0) }
|
|
}
|
|
case let .failure(error):
|
|
print(error)
|
|
}
|
|
}
|
|
}
|
|
}
|