Rocket.Chat.ReactNative/ios/RocketChat Watch App/Views/AttachmentView.swift

34 lines
746 B
Swift

import SwiftUI
struct AttachmentView: View {
@Dependency private var client: RocketChatClientProtocol
private let attachment: Attachment
init(attachment: Attachment) {
self.attachment = attachment
}
var body: some View {
VStack(alignment: .leading) {
if let msg = attachment.msg {
Text(msg)
.font(.caption)
.foregroundStyle(.white)
}
if let rawURL = attachment.imageURL {
RemoteImage(url: client.authorizedURL(url: rawURL)) {
ProgressView()
}
.foregroundStyle(.secondary)
.aspectRatio(attachment.aspectRatio, contentMode: .fit)
.cornerRadius(4)
} else {
Text("Attachment not supported.")
.font(.caption.italic())
.foregroundStyle(Color.secondaryInfo)
}
}
}
}