121 lines
4.0 KiB
Swift
121 lines
4.0 KiB
Swift
import Account
|
|
import AppAccount
|
|
import DesignSystem
|
|
import Env
|
|
import Models
|
|
import Network
|
|
import SwiftUI
|
|
import Timeline
|
|
|
|
struct AccountSettingsView: View {
|
|
@Environment(\.dismiss) private var dismiss
|
|
@Environment(\.openURL) private var openURL
|
|
|
|
@EnvironmentObject private var pushNotifications: PushNotificationsService
|
|
@EnvironmentObject private var currentAccount: CurrentAccount
|
|
@EnvironmentObject private var currentInstance: CurrentInstance
|
|
@EnvironmentObject private var theme: Theme
|
|
@EnvironmentObject private var appAccountsManager: AppAccountsManager
|
|
@EnvironmentObject private var client: Client
|
|
|
|
@State private var isEditingAccount: Bool = false
|
|
@State private var isEditingFilters: Bool = false
|
|
@State private var cachedPostsCount: Int = 0
|
|
|
|
let account: Account
|
|
let appAccount: AppAccount
|
|
|
|
var body: some View {
|
|
Form {
|
|
Section {
|
|
Button {
|
|
isEditingAccount = true
|
|
} label: {
|
|
Label("account.action.edit-info", systemImage: "pencil")
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
.contentShape(Rectangle())
|
|
}
|
|
.buttonStyle(.plain)
|
|
|
|
if currentInstance.isFiltersSupported {
|
|
Button {
|
|
isEditingFilters = true
|
|
} label: {
|
|
Label("account.action.edit-filters", systemImage: "line.3.horizontal.decrease.circle")
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
.contentShape(Rectangle())
|
|
}
|
|
.buttonStyle(.plain)
|
|
}
|
|
if let subscription = pushNotifications.subscriptions.first(where: { $0.account.token == appAccount.oauthToken }) {
|
|
NavigationLink(destination: PushNotificationsView(subscription: subscription)) {
|
|
Label("settings.general.push-notifications", systemImage: "bell.and.waves.left.and.right")
|
|
}
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
|
|
Section {
|
|
Label("settings.account.cached-posts-\(String(cachedPostsCount))", systemImage: "internaldrive")
|
|
Button("settings.account.action.delete-cache", role: .destructive) {
|
|
Task {
|
|
await TimelineCache.shared.clearCache(for: appAccountsManager.currentClient.id)
|
|
cachedPostsCount = await TimelineCache.shared.cachedPostsCount(for: appAccountsManager.currentClient.id)
|
|
}
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
|
|
Section {
|
|
Button {
|
|
openURL(URL(string: "https://\(client.server)/settings/profile")!)
|
|
} label: {
|
|
Text("account.action.more")
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
|
|
Section {
|
|
Button(role: .destructive) {
|
|
if let token = appAccount.oauthToken {
|
|
Task {
|
|
let client = Client(server: appAccount.server, oauthToken: token)
|
|
await TimelineCache.shared.clearCache(for: client.id)
|
|
if let sub = pushNotifications.subscriptions.first(where: { $0.account.token == token }) {
|
|
await sub.deleteSubscription()
|
|
}
|
|
appAccountsManager.delete(account: appAccount)
|
|
dismiss()
|
|
}
|
|
}
|
|
} label: {
|
|
Text("account.action.logout")
|
|
.frame(maxWidth: .infinity)
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
}
|
|
.sheet(isPresented: $isEditingAccount, content: {
|
|
EditAccountView()
|
|
})
|
|
.sheet(isPresented: $isEditingFilters, content: {
|
|
FiltersListView()
|
|
})
|
|
.toolbar {
|
|
ToolbarItem(placement: .principal) {
|
|
HStack {
|
|
AvatarView(url: account.avatar, size: .embed)
|
|
Text(account.safeDisplayName)
|
|
.font(.headline)
|
|
}
|
|
}
|
|
}
|
|
.task {
|
|
cachedPostsCount = await TimelineCache.shared.cachedPostsCount(for: appAccountsManager.currentClient.id)
|
|
}
|
|
.navigationTitle(account.safeDisplayName)
|
|
.scrollContentBackground(.hidden)
|
|
.background(theme.secondaryBackgroundColor)
|
|
}
|
|
}
|