Impressia/Vernissage/Widgets/ImagesCarousel.swift

65 lines
2.0 KiB
Swift
Raw Normal View History

2023-01-03 14:09:22 +01:00
//
// https://mczachurski.dev
// Copyright © 2023 Marcin Czachurski and the repository contributors.
// Licensed under the MIT License.
//
import SwiftUI
struct ImagesCarousel: View {
@State public var attachments: [AttachmentData]
@State private var height: Double = 0.0
2023-01-08 14:50:37 +01:00
@State private var selectedAttachmentId = ""
var onAttachmentChange: (_ attachmentData: AttachmentData) -> Void?
2023-01-03 14:09:22 +01:00
var body: some View {
2023-01-08 14:50:37 +01:00
TabView(selection: $selectedAttachmentId) {
ForEach(attachments, id: \.id) { attachment in
2023-01-03 14:09:22 +01:00
if let image = UIImage(data: attachment.data) {
Image(uiImage: image)
.resizable()
.aspectRatio(contentMode: .fit)
2023-01-08 14:50:37 +01:00
.tag(attachment.id)
2023-01-03 14:09:22 +01:00
}
}
}
.frame(height: CGFloat(self.height))
.tabViewStyle(PageTabViewStyle())
2023-01-08 14:50:37 +01:00
.onChange(of: selectedAttachmentId, perform: { index in
if let attachment = attachments.first(where: { item in item.id == index }) {
onAttachmentChange(attachment)
}
})
2023-01-03 14:09:22 +01:00
.onAppear {
2023-01-08 14:50:37 +01:00
self.selectedAttachmentId = self.attachments.first?.id ?? ""
2023-01-03 14:09:22 +01:00
self.calculateImageHeight()
}
}
private func calculateImageHeight() {
var imageHeight = 0.0
var imageWidth = 0.0
for item in attachments {
if let image = UIImage(data: item.data) {
if image.size.height > imageHeight {
imageHeight = image.size.height
imageWidth = image.size.width
}
}
}
let divider = imageWidth / UIScreen.main.bounds.size.width
self.height = imageHeight / divider
}
}
struct ImagesCarousel_Previews: PreviewProvider {
static var previews: some View {
2023-01-08 14:50:37 +01:00
ImagesCarousel(attachments: []) { attachmentData in
}
2023-01-03 14:09:22 +01:00
}
}