2023-12-29 11:17:37 +01:00
|
|
|
//Made by Lumaa
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct AccountView: View {
|
2024-01-02 14:23:36 +01:00
|
|
|
@Environment(AccountManager.self) private var accountManager: AccountManager
|
2023-12-29 11:17:37 +01:00
|
|
|
|
|
|
|
@Namespace var accountAnims
|
|
|
|
@Namespace var animPicture
|
|
|
|
@State private var biggerPicture: Bool = false
|
|
|
|
|
2024-01-02 14:23:36 +01:00
|
|
|
@State var isCurrent: Bool = false
|
2023-12-29 11:17:37 +01:00
|
|
|
@State var account: Account
|
2024-01-02 14:23:36 +01:00
|
|
|
@State var navigator: Navigator = Navigator()
|
|
|
|
|
|
|
|
@State private var canFollow: Bool? = nil
|
|
|
|
@State private var initialFollowing: Bool = false
|
|
|
|
@State private var isFollowing: Bool = false
|
|
|
|
@State private var accountFollows: Bool = false
|
|
|
|
|
2024-01-06 02:50:54 +01:00
|
|
|
@State private var loadingStatuses: Bool = false
|
2024-01-02 14:23:36 +01:00
|
|
|
@State private var statuses: [Status]?
|
|
|
|
@State private var statusesPinned: [Status]?
|
2024-01-06 02:50:54 +01:00
|
|
|
@State private var lastSeen: Int?
|
2024-01-02 14:23:36 +01:00
|
|
|
|
2023-12-29 11:17:37 +01:00
|
|
|
private let animPicCurve = Animation.smooth(duration: 0.25, extraBounce: 0.0)
|
|
|
|
|
|
|
|
var body: some View {
|
2024-01-02 14:23:36 +01:00
|
|
|
if isCurrent {
|
2024-01-06 02:50:54 +01:00
|
|
|
if accountManager.getClient() != nil {
|
|
|
|
NavigationStack(path: $navigator.path) {
|
|
|
|
accountView
|
|
|
|
.withSheets(sheetDestination: $navigator.presentedSheet)
|
|
|
|
.onAppear {
|
|
|
|
account = accountManager.forceAccount()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ZStack {
|
|
|
|
Color.appBackground
|
|
|
|
|
|
|
|
ProgressView()
|
|
|
|
.progressViewStyle(.circular)
|
|
|
|
}
|
2024-01-02 14:23:36 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
accountView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var accountView: some View {
|
2023-12-29 11:17:37 +01:00
|
|
|
ZStack (alignment: .center) {
|
|
|
|
if account != Account.placeholder() {
|
|
|
|
if biggerPicture {
|
|
|
|
big
|
2024-01-02 14:23:36 +01:00
|
|
|
.navigationBarBackButtonHidden()
|
|
|
|
.toolbar(.hidden, for: .navigationBar)
|
2023-12-29 11:17:37 +01:00
|
|
|
} else {
|
|
|
|
wholeSmall
|
2024-01-02 14:23:36 +01:00
|
|
|
.offset(y: isCurrent ? 50 : 0)
|
|
|
|
.overlay(alignment: .top) {
|
|
|
|
if isCurrent {
|
|
|
|
HStack {
|
|
|
|
Button {
|
|
|
|
navigator.navigate(to: .privacy)
|
|
|
|
} label: {
|
|
|
|
Image(systemName: "globe")
|
|
|
|
.font(.title2)
|
|
|
|
}
|
|
|
|
|
|
|
|
Spacer() // middle seperation
|
|
|
|
|
|
|
|
Button {
|
|
|
|
navigator.navigate(to: .settings)
|
|
|
|
} label: {
|
|
|
|
Image(systemName: "text.alignright")
|
|
|
|
.font(.title2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.tint(Color(uiColor: UIColor.label))
|
|
|
|
.safeAreaPadding()
|
|
|
|
.background(Color.appBackground)
|
|
|
|
}
|
|
|
|
}
|
2023-12-29 11:17:37 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
loading
|
|
|
|
}
|
|
|
|
}
|
2024-01-02 14:23:36 +01:00
|
|
|
.task {
|
|
|
|
await updateRelationship()
|
|
|
|
initialFollowing = isFollowing
|
|
|
|
}
|
2023-12-29 11:17:37 +01:00
|
|
|
.refreshable {
|
2024-01-02 14:23:36 +01:00
|
|
|
if let client = accountManager.getClient() {
|
|
|
|
if let ref: Account = try? await client.get(endpoint: Accounts.accounts(id: account.id)) {
|
|
|
|
account = ref
|
|
|
|
|
|
|
|
await updateRelationship()
|
2024-01-06 02:50:54 +01:00
|
|
|
loadingStatuses = true
|
2024-01-02 14:23:36 +01:00
|
|
|
statuses = try? await client.get(endpoint: Accounts.statuses(id: account.id, sinceId: nil, tag: nil, onlyMedia: nil, excludeReplies: nil, pinned: nil))
|
|
|
|
statusesPinned = try? await client.get(endpoint: Accounts.statuses(id: account.id, sinceId: nil, tag: nil, onlyMedia: nil, excludeReplies: nil, pinned: true))
|
2024-01-06 02:50:54 +01:00
|
|
|
loadingStatuses = false
|
2024-01-02 14:23:36 +01:00
|
|
|
}
|
2023-12-29 11:17:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.background(Color.appBackground)
|
|
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
|
|
.toolbarBackground(Color.appBackground, for: .navigationBar)
|
|
|
|
.toolbarBackground(.automatic, for: .navigationBar)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Headers
|
|
|
|
|
|
|
|
var wholeSmall: some View {
|
|
|
|
ScrollView {
|
|
|
|
VStack {
|
2024-01-02 14:23:36 +01:00
|
|
|
VStack (alignment: .leading) {
|
|
|
|
unbig
|
|
|
|
|
2023-12-29 11:17:37 +01:00
|
|
|
Text(account.note.asRawText)
|
2024-01-02 14:23:36 +01:00
|
|
|
.font(.callout)
|
2023-12-29 11:17:37 +01:00
|
|
|
.multilineTextAlignment(.leading)
|
2024-01-02 14:23:36 +01:00
|
|
|
.padding(.vertical, 5)
|
2023-12-29 11:17:37 +01:00
|
|
|
|
2024-01-02 14:23:36 +01:00
|
|
|
let followCount = (account.followersCount ?? 0 - (initialFollowing ? 1 : 0)) + (isFollowing ? 1 : 0)
|
|
|
|
Text("account.followers-\(followCount)")
|
|
|
|
.foregroundStyle(Color.gray)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
.font(.callout)
|
|
|
|
|
|
|
|
if canFollow != nil && (canFollow ?? true) == true {
|
|
|
|
HStack (spacing: 5) {
|
|
|
|
Button {
|
|
|
|
Task {
|
|
|
|
await followAccount()
|
|
|
|
}
|
|
|
|
} label: {
|
|
|
|
HStack {
|
|
|
|
Spacer()
|
|
|
|
Text(isFollowing ? "account.unfollow" : accountFollows ? "account.follow-back" : "account.follow")
|
|
|
|
.font(.callout)
|
|
|
|
Spacer()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.buttonStyle(LargeButton(filled: true, height: 10))
|
|
|
|
|
|
|
|
Button {
|
|
|
|
if let server = account.acct.split(separator: "@").last {
|
|
|
|
navigator.presentedSheet = .post(content: "@\(account.username)@\(server)")
|
|
|
|
} else {
|
|
|
|
let client = accountManager.getClient()
|
|
|
|
navigator.presentedSheet = .post(content: "@\(account.username)@\(client?.server ?? "???")")
|
|
|
|
}
|
|
|
|
} label: {
|
|
|
|
HStack {
|
|
|
|
Spacer()
|
|
|
|
Text("account.mention")
|
|
|
|
.font(.callout)
|
|
|
|
Spacer()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.buttonStyle(LargeButton(filled: false, height: 10))
|
|
|
|
}
|
|
|
|
}
|
2023-12-29 11:17:37 +01:00
|
|
|
}
|
2024-01-02 14:23:36 +01:00
|
|
|
.padding(.horizontal)
|
2023-12-31 03:03:35 +01:00
|
|
|
|
2024-01-02 14:23:36 +01:00
|
|
|
VStack {
|
|
|
|
Rectangle()
|
|
|
|
.fill(Color.gray.opacity(0.2))
|
|
|
|
.frame(width: .infinity, height: 1)
|
|
|
|
.padding(.bottom, 3)
|
|
|
|
|
|
|
|
statusesList
|
|
|
|
}
|
2023-12-29 11:17:37 +01:00
|
|
|
}
|
|
|
|
.safeAreaPadding(.vertical)
|
|
|
|
.padding(.horizontal)
|
|
|
|
}
|
2024-01-02 14:23:36 +01:00
|
|
|
.withAppRouter(navigator)
|
2023-12-29 11:17:37 +01:00
|
|
|
}
|
|
|
|
|
2023-12-31 03:03:35 +01:00
|
|
|
var statusesList: some View {
|
2024-01-06 02:50:54 +01:00
|
|
|
LazyVStack {
|
2023-12-31 03:03:35 +01:00
|
|
|
if statuses != nil {
|
|
|
|
if !(statusesPinned?.isEmpty ?? true) {
|
|
|
|
ForEach(statusesPinned!, id: \.id) { status in
|
|
|
|
CompactPostView(status: status, navigator: navigator, pinned: true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !statuses!.isEmpty {
|
|
|
|
ForEach(statuses!, id: \.id) { status in
|
|
|
|
CompactPostView(status: status, navigator: navigator)
|
2024-01-06 02:50:54 +01:00
|
|
|
.onDisappear() {
|
|
|
|
lastSeen = statuses!.firstIndex(where: { $0.id == status.id })
|
|
|
|
}
|
2023-12-31 03:03:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ProgressView()
|
|
|
|
.progressViewStyle(.circular)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.onAppear {
|
|
|
|
if statuses == nil {
|
2024-01-02 14:23:36 +01:00
|
|
|
if let client = accountManager.getClient() {
|
|
|
|
Task {
|
2024-01-06 02:50:54 +01:00
|
|
|
loadingStatuses = true
|
2024-01-02 14:23:36 +01:00
|
|
|
statuses = try await client.get(endpoint: Accounts.statuses(id: account.id, sinceId: nil, tag: nil, onlyMedia: nil, excludeReplies: nil, pinned: nil))
|
|
|
|
statusesPinned = try await client.get(endpoint: Accounts.statuses(id: account.id, sinceId: nil, tag: nil, onlyMedia: nil, excludeReplies: nil, pinned: true))
|
2024-01-06 02:50:54 +01:00
|
|
|
loadingStatuses = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.onChange(of: lastSeen ?? 0) { _, new in
|
|
|
|
guard statuses != nil && new >= statuses!.count - 6 && !loadingStatuses else { return }
|
|
|
|
if let client = accountManager.getClient(), let lastStatus = statuses!.last {
|
|
|
|
Task {
|
|
|
|
loadingStatuses = true
|
|
|
|
if let newStatuses: [Status] = try await client.get(endpoint: Accounts.statuses(id: account.id, sinceId: lastStatus.id, tag: nil, onlyMedia: nil, excludeReplies: nil, pinned: nil)) {
|
|
|
|
statuses?.append(contentsOf: newStatuses)
|
2024-01-02 14:23:36 +01:00
|
|
|
}
|
2024-01-06 02:50:54 +01:00
|
|
|
loadingStatuses = false
|
2023-12-31 03:03:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-02 14:23:36 +01:00
|
|
|
func followAccount() async {
|
|
|
|
if let client = accountManager.getClient() {
|
|
|
|
Task {
|
|
|
|
let endpoint: Endpoint = isFollowing ? Accounts.unfollow(id: account.id) : Accounts.follow(id: account.id, notify: false, reblogs: true)
|
|
|
|
HapticManager.playHaptics(haptics: Haptic.tap)
|
|
|
|
try await client.post(endpoint: endpoint) // Notify off until APNs? | Reblogs on by default (later changeable)
|
|
|
|
isFollowing = !isFollowing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateRelationship() async {
|
|
|
|
if let client = accountManager.getClient() {
|
|
|
|
if let currentAccount: Account = try? await client.get(endpoint: Accounts.verifyCredentials) {
|
|
|
|
canFollow = currentAccount.id != account.id
|
|
|
|
guard canFollow == true else { return }
|
|
|
|
if let relationship: [Relationship] = try? await client.get(endpoint: Accounts.relationships(ids: [account.id])) {
|
|
|
|
isFollowing = relationship.first!.following
|
|
|
|
accountFollows = relationship.first!.followedBy
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
canFollow = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-29 11:17:37 +01:00
|
|
|
var loading: some View {
|
|
|
|
ScrollView {
|
|
|
|
VStack {
|
|
|
|
unbig
|
|
|
|
.redacted(reason: .placeholder)
|
|
|
|
|
|
|
|
HStack {
|
|
|
|
Text(account.note.asRawText)
|
|
|
|
.font(.body)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
.redacted(reason: .placeholder)
|
|
|
|
|
|
|
|
Spacer()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.safeAreaPadding(.vertical)
|
|
|
|
.padding(.horizontal)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var unbig: some View {
|
|
|
|
HStack {
|
|
|
|
if account.displayName != nil {
|
|
|
|
VStack(alignment: .leading) {
|
|
|
|
Text(account.displayName!)
|
|
|
|
.font(.title2.bold())
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
.lineLimit(1)
|
|
|
|
|
|
|
|
let server = account.acct.split(separator: "@").last
|
2024-01-02 14:23:36 +01:00
|
|
|
let client = accountManager.getClient()
|
2023-12-29 11:17:37 +01:00
|
|
|
|
|
|
|
HStack(alignment: .center) {
|
|
|
|
if server != nil {
|
|
|
|
if server! != account.username {
|
|
|
|
Text("\(account.username)")
|
|
|
|
.font(.body)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
|
|
|
|
Text("\(server!.description)")
|
|
|
|
.font(.caption)
|
|
|
|
.foregroundStyle(Color.gray)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
.pill()
|
|
|
|
} else {
|
|
|
|
Text("\(account.username)")
|
|
|
|
.font(.body)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
|
2024-01-02 14:23:36 +01:00
|
|
|
Text("\(client?.server ?? "???")")
|
2023-12-29 11:17:37 +01:00
|
|
|
.font(.caption)
|
|
|
|
.foregroundStyle(Color.gray)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
.pill()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Text("\(account.username)")
|
|
|
|
.font(.body)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
|
2024-01-02 14:23:36 +01:00
|
|
|
Text("\(client?.server ?? "???")")
|
2023-12-29 11:17:37 +01:00
|
|
|
.font(.caption)
|
|
|
|
.foregroundStyle(Color.gray)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
.pill()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Text(account.acct)
|
|
|
|
.font(.headline)
|
|
|
|
}
|
|
|
|
|
|
|
|
Spacer()
|
|
|
|
|
|
|
|
profilePicture
|
|
|
|
.frame(width: 75, height: 75)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var big: some View {
|
|
|
|
ZStack (alignment: .center) {
|
|
|
|
Rectangle()
|
|
|
|
.fill(Material.ultraThin)
|
|
|
|
.ignoresSafeArea()
|
|
|
|
.onTapGesture {
|
|
|
|
withAnimation(animPicCurve) {
|
|
|
|
biggerPicture.toggle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
profilePicture
|
|
|
|
.frame(width: 300, height: 300)
|
|
|
|
}
|
|
|
|
.zIndex(20)
|
|
|
|
}
|
|
|
|
|
|
|
|
var profilePicture: some View {
|
2024-01-02 14:23:36 +01:00
|
|
|
OnlineImage(url: account.avatar, size: biggerPicture ? 300 : 50, useNuke: true)
|
2023-12-29 11:17:37 +01:00
|
|
|
.clipShape(.circle)
|
|
|
|
.matchedGeometryEffect(id: animPicture, in: accountAnims)
|
|
|
|
.onTapGesture {
|
|
|
|
withAnimation(animPicCurve) {
|
|
|
|
biggerPicture.toggle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension View {
|
|
|
|
func pill() -> some View {
|
|
|
|
self
|
|
|
|
.padding([.horizontal], 10)
|
|
|
|
.padding([.vertical], 5)
|
|
|
|
.background(Color(uiColor: UIColor.label).opacity(0.1))
|
|
|
|
.clipShape(.capsule)
|
|
|
|
}
|
|
|
|
}
|