127 lines
4.7 KiB
Swift
127 lines
4.7 KiB
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import SwiftUI
|
|
import MastodonKit
|
|
|
|
struct UserProfileHeader: View {
|
|
@EnvironmentObject private var applicationState: ApplicationState
|
|
@EnvironmentObject private var routerPath: RouterPath
|
|
|
|
@State var account: Account
|
|
@State var relationship: Relationship? = nil
|
|
|
|
var body: some View {
|
|
VStack(alignment: .leading) {
|
|
HStack(alignment: .center) {
|
|
UserAvatar(accountId: account.id, accountAvatar: account.avatar, width: 96, height: 96)
|
|
|
|
Spacer()
|
|
|
|
VStack(alignment: .center) {
|
|
Text("\(account.statusesCount)")
|
|
.font(.title3)
|
|
Text("Posts")
|
|
.font(.subheadline)
|
|
.opacity(0.6)
|
|
}
|
|
|
|
Spacer()
|
|
|
|
NavigationLink(value: RouteurDestinations.accounts(entityId: account.id, listType: .followers)) {
|
|
VStack(alignment: .center) {
|
|
Text("\(account.followersCount)")
|
|
.font(.title3)
|
|
Text("Followers")
|
|
.font(.subheadline)
|
|
.opacity(0.6)
|
|
}
|
|
}.foregroundColor(.mainTextColor)
|
|
|
|
Spacer()
|
|
|
|
NavigationLink(value: RouteurDestinations.accounts(entityId: account.id, listType: .following)) {
|
|
VStack(alignment: .center) {
|
|
Text("\(account.followingCount)")
|
|
.font(.title3)
|
|
Text("Following")
|
|
.font(.subheadline)
|
|
.opacity(0.6)
|
|
}
|
|
}.foregroundColor(.mainTextColor)
|
|
}
|
|
|
|
HStack (alignment: .center) {
|
|
VStack(alignment: .leading) {
|
|
Text(account.displayNameWithoutEmojis)
|
|
.foregroundColor(.mainTextColor)
|
|
.font(.footnote)
|
|
.fontWeight(.bold)
|
|
Text("@\(account.acct)")
|
|
.foregroundColor(.lightGrayColor)
|
|
.font(.footnote)
|
|
}
|
|
|
|
Spacer()
|
|
|
|
if self.applicationState.accountData?.id != self.account.id {
|
|
self.otherAccountActionButtons()
|
|
}
|
|
}
|
|
|
|
if let note = account.note, !note.isEmpty {
|
|
MarkdownFormattedText(note.asMarkdown, withFontSize: 14, andWidth: Int(UIScreen.main.bounds.width) - 16)
|
|
.environment(\.openURL, OpenURLAction { url in
|
|
routerPath.handle(url: url, accountData: self.applicationState.accountData)
|
|
})
|
|
}
|
|
|
|
Text("Joined \(account.createdAt.toRelative(.isoDateTimeMilliSec))")
|
|
.foregroundColor(.lightGrayColor.opacity(0.5))
|
|
.font(.footnote)
|
|
|
|
}
|
|
.padding()
|
|
}
|
|
|
|
@ViewBuilder
|
|
private func otherAccountActionButtons() -> some View {
|
|
ActionButton {
|
|
await onRelationshipButtonTap()
|
|
} label: {
|
|
HStack {
|
|
Image(systemName: relationship?.following == true ? "person.badge.minus" : "person.badge.plus")
|
|
Text(relationship?.following == true ? "Unfollow" : (relationship?.followedBy == true ? "Follow back" : "Follow"))
|
|
}
|
|
}
|
|
.buttonStyle(.borderedProminent)
|
|
.tint(relationship?.following == true ? .dangerColor : .accentColor)
|
|
}
|
|
|
|
private func onRelationshipButtonTap() async {
|
|
do {
|
|
if self.relationship?.following == true {
|
|
if let relationship = try await AccountService.shared.unfollow(
|
|
forAccountId: self.account.id,
|
|
andContext: self.applicationState.accountData
|
|
) {
|
|
self.relationship = relationship
|
|
}
|
|
} else {
|
|
if let relationship = try await AccountService.shared.follow(
|
|
forAccountId: self.account.id,
|
|
andContext: self.applicationState.accountData
|
|
) {
|
|
self.relationship = relationship
|
|
}
|
|
}
|
|
} catch {
|
|
ErrorService.shared.handle(error, message: "Relationship action failed.", showToastr: true)
|
|
}
|
|
}
|
|
}
|
|
|