IceCubesApp/IceCubesApp/App/Tabs/Settings/SettingsTab.swift

221 lines
7.1 KiB
Swift
Raw Normal View History

2022-12-01 08:05:26 +00:00
import Account
import AppAccount
2023-01-17 10:36:01 +00:00
import DesignSystem
import Env
import Foundation
2023-01-17 10:36:01 +00:00
import Models
import Network
import SwiftUI
import Timeline
2022-12-01 08:05:26 +00:00
2022-12-29 16:22:07 +00:00
struct SettingsTabs: View {
@Environment(\.dismiss) private var dismiss
2023-01-27 19:36:40 +00:00
2023-01-08 13:16:43 +00:00
@EnvironmentObject private var pushNotifications: PushNotificationsService
2023-01-06 16:14:34 +00:00
@EnvironmentObject private var preferences: UserPreferences
2022-12-01 08:05:26 +00:00
@EnvironmentObject private var client: Client
@EnvironmentObject private var currentInstance: CurrentInstance
2022-12-01 08:05:26 +00:00
@EnvironmentObject private var appAccountsManager: AppAccountsManager
2022-12-24 13:55:04 +00:00
@EnvironmentObject private var theme: Theme
2023-01-17 10:36:01 +00:00
@StateObject private var routerPath = RouterPath()
2023-01-17 10:36:01 +00:00
2022-12-29 13:07:58 +00:00
@State private var addAccountSheetPresented = false
2023-01-17 10:36:01 +00:00
2023-01-10 05:58:50 +00:00
@Binding var popToRootTab: Tab
2023-01-17 10:36:01 +00:00
2022-12-01 08:05:26 +00:00
var body: some View {
NavigationStack(path: $routerPath.path) {
2022-12-01 08:05:26 +00:00
Form {
2022-12-04 08:50:25 +00:00
appSection
2022-12-29 06:00:00 +00:00
accountsSection
2023-01-06 16:14:34 +00:00
generalSection
otherSections
2022-12-01 08:05:26 +00:00
}
2022-12-29 09:39:34 +00:00
.scrollContentBackground(.hidden)
.background(theme.secondaryBackgroundColor)
.navigationTitle(Text("settings.title"))
2022-12-01 08:05:26 +00:00
.navigationBarTitleDisplayMode(.inline)
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), for: .navigationBar)
.toolbar {
if UIDevice.current.userInterfaceIdiom == .phone {
ToolbarItem {
Button("action.done") {
dismiss()
}
}
}
}
.withAppRouter()
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
2022-12-01 08:05:26 +00:00
}
2023-01-01 08:19:00 +00:00
.onAppear {
routerPath.client = client
2023-01-01 08:19:00 +00:00
}
2022-12-01 08:05:26 +00:00
.task {
if appAccountsManager.currentAccount.oauthToken != nil {
await currentInstance.fetchCurrentInstance()
2022-12-01 08:05:26 +00:00
}
}
.withSafariRouter()
.environmentObject(routerPath)
2023-01-10 05:58:50 +00:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .notifications {
routerPath.path = []
2023-01-10 05:58:50 +00:00
}
}
2022-12-01 08:05:26 +00:00
}
2023-01-17 10:36:01 +00:00
2022-12-29 06:00:00 +00:00
private var accountsSection: some View {
Section("settings.section.accounts") {
2022-12-30 07:36:22 +00:00
ForEach(appAccountsManager.availableAccounts) { account in
2023-01-10 05:58:50 +00:00
AppAccountView(viewModel: .init(appAccount: account))
2022-12-30 07:36:22 +00:00
}
.onDelete { indexSet in
if let index = indexSet.first {
let account = appAccountsManager.availableAccounts[index]
if let token = account.oauthToken,
2023-01-27 19:36:40 +00:00
let sub = pushNotifications.subscriptions.first(where: { $0.account.token == token })
{
2023-01-08 13:16:43 +00:00
Task {
await sub.deleteSubscription()
appAccountsManager.delete(account: account)
2023-01-08 13:16:43 +00:00
}
}
2022-12-30 07:36:22 +00:00
}
2022-12-04 08:50:25 +00:00
}
2022-12-29 13:07:58 +00:00
addAccountButton
2022-12-04 08:50:25 +00:00
}
2022-12-29 09:39:34 +00:00
.listRowBackground(theme.primaryBackgroundColor)
2022-12-04 08:50:25 +00:00
}
2023-01-17 10:36:01 +00:00
2023-01-06 16:14:34 +00:00
@ViewBuilder
private var generalSection: some View {
Section("settings.section.general") {
2023-01-06 16:14:34 +00:00
if let instanceData = currentInstance.instance {
NavigationLink(destination: InstanceInfoView(instance: instanceData)) {
Label("settings.general.instance", systemImage: "server.rack")
}
}
2023-01-06 16:14:34 +00:00
NavigationLink(destination: DisplaySettingsView()) {
Label("settings.general.display", systemImage: "paintpalette")
}
2023-01-06 16:14:34 +00:00
NavigationLink(destination: remoteLocalTimelinesView) {
Label("settings.general.remote-timelines", systemImage: "dot.radiowaves.right")
2022-12-24 13:55:04 +00:00
}
NavigationLink(destination: ContentSettingsView()) {
Label("settings.general.content", systemImage: "rectangle.fill.on.rectangle.fill")
}
Link(destination: URL(string: UIApplication.openSettingsURLString)!) {
Label("settings.system", systemImage: "gear")
}
.tint(theme.labelColor)
}
.listRowBackground(theme.primaryBackgroundColor)
}
private var otherSections: some View {
Section("settings.section.other") {
2023-01-19 10:59:12 +00:00
if !ProcessInfo.processInfo.isiOSAppOnMac {
Picker(selection: $preferences.preferredBrowser) {
ForEach(PreferredBrowser.allCases, id: \.rawValue) { browser in
switch browser {
case .inAppSafari:
Text("settings.general.browser.in-app").tag(browser)
2023-01-19 10:59:12 +00:00
case .safari:
Text("settings.general.browser.system").tag(browser)
2023-01-19 10:59:12 +00:00
}
}
2023-01-19 10:59:12 +00:00
} label: {
Label("settings.general.browser", systemImage: "network")
}
}
Toggle(isOn: $preferences.isOpenAIEnabled) {
Label("settings.other.hide-openai", systemImage: "faxmachine")
}
Toggle(isOn: $preferences.isSocialKeyboardEnabled) {
Label("settings.other.social-keyboard", systemImage: "keyboard")
}
Toggle(isOn: $preferences.autoPlayVideo) {
Label("settings.other.autoplay-video", systemImage: "play.square.stack")
}
2022-12-24 13:55:04 +00:00
}
2022-12-29 09:39:34 +00:00
.listRowBackground(theme.primaryBackgroundColor)
2022-12-24 13:55:04 +00:00
}
2023-01-17 10:36:01 +00:00
2022-12-04 08:50:25 +00:00
private var appSection: some View {
Section {
2023-01-17 20:08:05 +00:00
if !ProcessInfo.processInfo.isiOSAppOnMac {
NavigationLink(destination: IconSelectorView()) {
Label {
Text("settings.app.icon")
2023-01-17 20:08:05 +00:00
} icon: {
if let icon = IconSelectorView.Icon(string: UIApplication.shared.alternateIconName ?? "AppIcon") {
Image(uiImage: .init(named: icon.iconName)!)
.resizable()
.frame(width: 25, height: 25)
.cornerRadius(4)
}
2022-12-27 20:35:41 +00:00
}
2022-12-04 08:50:25 +00:00
}
}
2023-01-17 10:36:01 +00:00
Link(destination: URL(string: "https://github.com/Dimillian/IceCubesApp")!) {
Label("settings.app.source", systemImage: "link")
}
.tint(theme.labelColor)
2023-01-17 10:36:01 +00:00
2023-01-07 12:44:13 +00:00
NavigationLink(destination: SupportAppView()) {
Label("settings.app.support", systemImage: "wand.and.stars")
2022-12-23 15:21:31 +00:00
}
2023-01-22 05:38:30 +00:00
if let reviewURL = URL(string: "https://apps.apple.com/app/id\(AppInfo.appStoreAppId)?action=write-review") {
Link(destination: reviewURL) {
Label("settings.rate", systemImage: "link")
}
.tint(theme.labelColor)
}
} header: {
2023-01-22 05:38:30 +00:00
Text("settings.section.app")
} footer: {
2023-01-22 05:38:30 +00:00
if let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String {
Text("settings.section.app.footer \(appVersion)").frame(maxWidth: .infinity, alignment: .center)
2023-01-22 05:38:30 +00:00
}
2022-12-04 08:50:25 +00:00
}
2022-12-29 09:39:34 +00:00
.listRowBackground(theme.primaryBackgroundColor)
2022-12-04 08:50:25 +00:00
}
2023-01-17 10:36:01 +00:00
2022-12-29 13:07:58 +00:00
private var addAccountButton: some View {
2022-12-01 08:05:26 +00:00
Button {
2022-12-29 13:07:58 +00:00
addAccountSheetPresented.toggle()
2022-12-01 08:05:26 +00:00
} label: {
Text("settings.account.add")
2022-12-29 13:07:58 +00:00
}
.sheet(isPresented: $addAccountSheetPresented) {
AddAccountView()
2022-12-01 08:05:26 +00:00
}
}
2023-01-17 10:36:01 +00:00
2023-01-06 16:14:34 +00:00
private var remoteLocalTimelinesView: some View {
Form {
ForEach(preferences.remoteLocalTimelines, id: \.self) { server in
Text(server)
}.onDelete { indexes in
if let index = indexes.first {
_ = preferences.remoteLocalTimelines.remove(at: index)
}
}
.listRowBackground(theme.primaryBackgroundColor)
Button {
routerPath.presentedSheet = .addRemoteLocalTimeline
} label: {
Label("settings.timeline.add", systemImage: "badge.plus.radiowaves.right")
}
2023-01-06 16:14:34 +00:00
.listRowBackground(theme.primaryBackgroundColor)
}
.navigationTitle("settings.general.remote-timelines")
2023-01-06 16:14:34 +00:00
.scrollContentBackground(.hidden)
.background(theme.secondaryBackgroundColor)
2022-12-01 08:05:26 +00:00
}
}