mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-13 07:07:12 +01:00
29 lines
600 B
Swift
29 lines
600 B
Swift
import SwiftUI
|
|
import Models
|
|
import Network
|
|
|
|
@MainActor
|
|
public class AppAccountViewModel: ObservableObject {
|
|
let appAccount: AppAccount
|
|
let client: Client
|
|
|
|
@Published var account: Account?
|
|
|
|
var acct: String {
|
|
"@\(account?.acct ?? "...")@\(appAccount.server)"
|
|
}
|
|
|
|
init(appAccount: AppAccount) {
|
|
self.appAccount = appAccount
|
|
self.client = .init(server: appAccount.server, oauthToken: appAccount.oauthToken)
|
|
}
|
|
|
|
func fetchAccount() async {
|
|
do {
|
|
account = try await client.get(endpoint: Accounts.verifyCredentials)
|
|
} catch {
|
|
print(error)
|
|
}
|
|
}
|
|
}
|