44 lines
1.4 KiB
Swift
44 lines
1.4 KiB
Swift
|
//
|
||
|
// NewsView+Configuration.swift
|
||
|
//
|
||
|
//
|
||
|
// Created by MainasuK on 2022-4-13.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
import MastodonSDK
|
||
|
import MastodonLocalization
|
||
|
import AlamofireImage
|
||
|
|
||
|
extension NewsView {
|
||
|
public func configure(link: Mastodon.Entity.Link) {
|
||
|
providerNameLabel.text = link.providerName
|
||
|
headlineLabel.text = link.title
|
||
|
footnoteLabel.text = L10n.Scene.Search.Recommend.HashTag.peopleTalking(link.talkingPeopleCount ?? 0)
|
||
|
|
||
|
let configuration = MediaView.Configuration(
|
||
|
info: .image(info: .init(
|
||
|
aspectRadio: CGSize(width: link.width, height: link.height),
|
||
|
assetURL: link.image
|
||
|
)),
|
||
|
blurhash: link.blurhash
|
||
|
)
|
||
|
imageView.setup(configuration: configuration)
|
||
|
|
||
|
if let previewURL = configuration.previewURL,
|
||
|
let url = URL(string: previewURL)
|
||
|
{
|
||
|
let placeholder = UIImage.placeholder(color: .systemGray6)
|
||
|
let request = URLRequest(url: url)
|
||
|
ImageDownloader.default.download(request, completion: { response in
|
||
|
switch response.result {
|
||
|
case .success(let image):
|
||
|
configuration.previewImage = image
|
||
|
case .failure:
|
||
|
configuration.previewImage = placeholder
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
} // end func
|
||
|
}
|