58 lines
1.9 KiB
Swift
58 lines
1.9 KiB
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct UserAvatar: View {
|
|
@State public var accountId: String
|
|
@State public var accountAvatar: URL?
|
|
@State public var width = 48.0
|
|
@State public var height = 48.0
|
|
|
|
var body: some View {
|
|
if let cachedAvatar = CacheAvatarService.shared.getImage(for: accountId) {
|
|
cachedAvatar
|
|
.resizable()
|
|
.clipShape(Circle())
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(width: self.width, height: self.height)
|
|
}
|
|
else {
|
|
AsyncImage(url: self.accountAvatar) { phase in
|
|
if let image = phase.image {
|
|
image
|
|
.resizable()
|
|
.clipShape(Circle())
|
|
.aspectRatio(contentMode: .fit)
|
|
.onAppear {
|
|
CacheAvatarService.shared.addImage(for: self.accountId, image: image)
|
|
}
|
|
} else if phase.error != nil {
|
|
Image(systemName: "person.circle")
|
|
.resizable()
|
|
.clipShape(Circle())
|
|
.aspectRatio(contentMode: .fit)
|
|
.foregroundColor(.mainTextColor)
|
|
} else {
|
|
Image(systemName: "person.circle")
|
|
.resizable()
|
|
.clipShape(Circle())
|
|
.aspectRatio(contentMode: .fit)
|
|
.foregroundColor(.mainTextColor)
|
|
}
|
|
}
|
|
.frame(width: self.width, height: self.height)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct UserAvatar_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
UserAvatar(accountId: "")
|
|
.previewLayout(.fixed(width: 128, height: 128))
|
|
}
|
|
}
|