2021-07-21 13:45:24 +02:00
|
|
|
//
|
|
|
|
// FLAnimatedImageView.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021-7-21.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Combine
|
|
|
|
import Alamofire
|
|
|
|
import AlamofireImage
|
|
|
|
import FLAnimatedImage
|
2022-01-27 14:23:39 +01:00
|
|
|
import UIKit
|
2021-07-21 13:45:24 +02:00
|
|
|
|
|
|
|
private enum FLAnimatedImageViewAssociatedKeys {
|
|
|
|
static var activeAvatarRequestURL = "FLAnimatedImageViewAssociatedKeys.activeAvatarRequestURL"
|
|
|
|
static var avatarRequestCancellable = "FLAnimatedImageViewAssociatedKeys.avatarRequestCancellable"
|
|
|
|
}
|
|
|
|
|
|
|
|
extension FLAnimatedImageView {
|
|
|
|
|
|
|
|
var activeAvatarRequestURL: URL? {
|
|
|
|
get {
|
|
|
|
objc_getAssociatedObject(self, &FLAnimatedImageViewAssociatedKeys.activeAvatarRequestURL) as? URL
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
objc_setAssociatedObject(self, &FLAnimatedImageViewAssociatedKeys.activeAvatarRequestURL, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var avatarRequestCancellable: AnyCancellable? {
|
|
|
|
get {
|
|
|
|
objc_getAssociatedObject(self, &FLAnimatedImageViewAssociatedKeys.avatarRequestCancellable) as? AnyCancellable
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
objc_setAssociatedObject(self, &FLAnimatedImageViewAssociatedKeys.avatarRequestCancellable, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
func setImage(
|
|
|
|
url: URL?,
|
|
|
|
placeholder: UIImage?,
|
|
|
|
scaleToSize: CGSize?,
|
|
|
|
completion: ((UIImage?) -> Void)? = nil
|
|
|
|
) {
|
2021-07-21 13:45:24 +02:00
|
|
|
// cancel task
|
|
|
|
activeAvatarRequestURL = nil
|
|
|
|
avatarRequestCancellable?.cancel()
|
|
|
|
|
|
|
|
// set placeholder
|
|
|
|
image = placeholder
|
|
|
|
|
|
|
|
// set image
|
|
|
|
guard let url = url else { return }
|
|
|
|
activeAvatarRequestURL = url
|
|
|
|
let avatarRequest = AF.request(url).publishData()
|
|
|
|
avatarRequestCancellable = avatarRequest
|
|
|
|
.sink { response in
|
|
|
|
switch response.result {
|
|
|
|
case .success(let data):
|
|
|
|
DispatchQueue.global().async {
|
|
|
|
let image: UIImage? = {
|
|
|
|
if let scaleToSize = scaleToSize {
|
|
|
|
return UIImage(data: data)?.af.imageScaled(to: scaleToSize, scale: UIScreen.main.scale)
|
|
|
|
} else {
|
|
|
|
return UIImage(data: data)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
let animatedImage = FLAnimatedImage(animatedGIFData: data)
|
|
|
|
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
|
|
|
guard let self = self else { return }
|
2022-01-27 14:23:39 +01:00
|
|
|
guard self.activeAvatarRequestURL == url else { return }
|
|
|
|
if let animatedImage = animatedImage {
|
|
|
|
self.animatedImage = animatedImage
|
|
|
|
} else {
|
|
|
|
self.image = image
|
2021-07-21 13:45:24 +02:00
|
|
|
}
|
2022-01-27 14:23:39 +01:00
|
|
|
completion?(image)
|
2021-07-21 13:45:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
case .failure:
|
2022-01-27 14:23:39 +01:00
|
|
|
completion?(nil)
|
2021-07-21 13:45:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|