133 lines
3.7 KiB
Swift
133 lines
3.7 KiB
Swift
import SwiftUI
|
|
import Timeline
|
|
import Env
|
|
import Network
|
|
import Account
|
|
import Models
|
|
import DesignSystem
|
|
|
|
struct SettingsTabs: View {
|
|
@EnvironmentObject private var client: Client
|
|
@EnvironmentObject private var currentInstance: CurrentInstance
|
|
@EnvironmentObject private var appAccountsManager: AppAccountsManager
|
|
@EnvironmentObject private var theme: Theme
|
|
|
|
@State private var addAccountSheetPresented = false
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
Form {
|
|
appSection
|
|
accountsSection
|
|
themeSection
|
|
instanceSection
|
|
}
|
|
.scrollContentBackground(.hidden)
|
|
.background(theme.secondaryBackgroundColor)
|
|
.navigationTitle(Text("Settings"))
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
}
|
|
.task {
|
|
if appAccountsManager.currentAccount.oauthToken != nil {
|
|
await currentInstance.fetchCurrentInstance()
|
|
}
|
|
}
|
|
}
|
|
|
|
private var accountsSection: some View {
|
|
Section("Accounts") {
|
|
ForEach(appAccountsManager.availableAccounts) { account in
|
|
HStack {
|
|
AppAccountView(viewModel: .init(appAccount: account))
|
|
}
|
|
.onTapGesture {
|
|
withAnimation {
|
|
appAccountsManager.currentAccount = account
|
|
}
|
|
}
|
|
}
|
|
.onDelete { indexSet in
|
|
if let index = indexSet.first {
|
|
let account = appAccountsManager.availableAccounts[index]
|
|
appAccountsManager.delete(account: account)
|
|
}
|
|
}
|
|
addAccountButton
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
}
|
|
|
|
private var themeSection: some View {
|
|
Section("Theme") {
|
|
Toggle("Prefer dark color scheme", isOn: .init(get: {
|
|
theme.colorScheme == "dark"
|
|
}, set: { newValue in
|
|
if newValue {
|
|
theme.colorScheme = "dark"
|
|
} else {
|
|
theme.colorScheme = "light"
|
|
}
|
|
}))
|
|
ColorPicker("Tint color", selection: $theme.tintColor)
|
|
ColorPicker("Background color", selection: $theme.primaryBackgroundColor)
|
|
ColorPicker("Secondary Background color", selection: $theme.secondaryBackgroundColor)
|
|
Button {
|
|
theme.colorScheme = "dark"
|
|
theme.tintColor = .brand
|
|
theme.primaryBackgroundColor = .primaryBackground
|
|
theme.secondaryBackgroundColor = .secondaryBackground
|
|
} label: {
|
|
Text("Restore default")
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var instanceSection: some View {
|
|
if let instanceData = currentInstance.instance {
|
|
InstanceInfoView(instance: instanceData)
|
|
}
|
|
}
|
|
|
|
private var appSection: some View {
|
|
Section("App") {
|
|
NavigationLink(destination: IconSelectorView()) {
|
|
Label {
|
|
Text("Icon selector")
|
|
} icon: {
|
|
if let icon = IconSelectorView.Icon(rawValue: UIApplication.shared.alternateIconName ?? "AppIcon") {
|
|
Image(uiImage: .init(named: icon.iconName)!)
|
|
.resizable()
|
|
.frame(width: 25, height: 25)
|
|
.cornerRadius(4)
|
|
}
|
|
}
|
|
}
|
|
Link(destination: URL(string: "https://github.com/Dimillian/IceCubesApp")!) {
|
|
Text("https://github.com/Dimillian/IceCubesApp")
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
}
|
|
|
|
private var addAccountButton: some View {
|
|
Button {
|
|
addAccountSheetPresented.toggle()
|
|
} label: {
|
|
Text("Add account")
|
|
}
|
|
.sheet(isPresented: $addAccountSheetPresented) {
|
|
AddAccountView()
|
|
}
|
|
}
|
|
|
|
private var signOutButton: some View {
|
|
Button {
|
|
appAccountsManager.delete(account: appAccountsManager.currentAccount)
|
|
} label: {
|
|
Text("Sign out").foregroundColor(.red)
|
|
}
|
|
}
|
|
}
|