Impressia/Vernissage/Widgets/ImageCarouselPicture.swift

41 lines
1.3 KiB
Swift
Raw Normal View History

2023-01-26 15:10:47 +01:00
//
// https://mczachurski.dev
// Copyright © 2023 Marcin Czachurski and the repository contributors.
2023-03-28 10:35:38 +02:00
// Licensed under the Apache License 2.0.
2023-01-26 15:10:47 +01:00
//
2023-01-26 15:10:47 +01:00
import SwiftUI
2023-04-07 14:20:12 +02:00
import ClientKit
2023-04-07 14:38:50 +02:00
import ServicesKit
2023-01-26 15:10:47 +01:00
struct ImageCarouselPicture: View {
@ObservedObject public var attachment: AttachmentModel
private let onImageDownloaded: (AttachmentModel, Data) -> Void
init(attachment: AttachmentModel, onImageDownloaded: @escaping (_: AttachmentModel, _: Data) -> Void) {
2023-01-26 15:10:47 +01:00
self.attachment = attachment
self.onImageDownloaded = onImageDownloaded
}
2023-01-26 15:10:47 +01:00
var body: some View {
if let data = attachment.data, let image = UIImage(data: data) {
Image(uiImage: image)
.resizable()
.aspectRatio(contentMode: .fit)
} else {
BlurredImage(blurhash: attachment.blurhash)
.task {
do {
// Download image and recalculate exif data.
if let imageData = try await RemoteFileService.shared.fetchData(url: attachment.url) {
self.onImageDownloaded(attachment, imageData)
}
} catch {
2023-03-13 13:53:36 +01:00
ErrorService.shared.handle(error, message: "global.error.errorDuringImageDownload")
2023-01-26 15:10:47 +01:00
}
}
}
}
}