2020-08-07 03:41:59 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import SwiftUI
|
2020-09-01 09:33:49 +02:00
|
|
|
import ViewModels
|
2020-08-07 03:41:59 +02:00
|
|
|
|
2020-08-07 12:59:48 +02:00
|
|
|
struct PreferencesView: View {
|
|
|
|
@StateObject var viewModel: PreferencesViewModel
|
2020-09-08 04:12:38 +02:00
|
|
|
@EnvironmentObject var identification: Identification
|
2020-08-07 12:59:48 +02:00
|
|
|
|
2020-08-07 03:41:59 +02:00
|
|
|
var body: some View {
|
2020-08-07 12:14:14 +02:00
|
|
|
Form {
|
2020-08-07 12:59:48 +02:00
|
|
|
Section(header: Text(viewModel.handle)) {
|
|
|
|
NavigationLink("preferences.posting-reading",
|
|
|
|
destination: PostingReadingPreferencesView(
|
2020-09-08 04:12:38 +02:00
|
|
|
viewModel: .init(identification: identification)))
|
2020-08-29 12:26:26 +02:00
|
|
|
NavigationLink("preferences.filters",
|
|
|
|
destination: FiltersView(
|
2020-09-08 04:12:38 +02:00
|
|
|
viewModel: .init(identification: identification)))
|
2020-08-16 22:30:28 +02:00
|
|
|
if viewModel.shouldShowNotificationTypePreferences {
|
|
|
|
NavigationLink("preferences.notification-types",
|
|
|
|
destination: NotificationTypesPreferencesView(
|
2020-09-08 04:12:38 +02:00
|
|
|
viewModel: .init(identification: identification)))
|
2020-08-16 22:30:28 +02:00
|
|
|
}
|
2020-12-02 00:23:47 +01:00
|
|
|
NavigationLink("preferences.muted-users",
|
2020-12-02 19:59:02 +01:00
|
|
|
destination: TableView(viewModelClosure: viewModel.mutedUsersViewModel)
|
2020-12-02 00:23:47 +01:00
|
|
|
.navigationTitle(Text("preferences.muted-users")))
|
|
|
|
NavigationLink("preferences.blocked-users",
|
2020-12-02 19:59:02 +01:00
|
|
|
destination: TableView(viewModelClosure: viewModel.blockedUsersViewModel)
|
2020-12-02 00:23:47 +01:00
|
|
|
.navigationTitle(Text("preferences.blocked-users")))
|
2020-12-04 04:13:18 +01:00
|
|
|
NavigationLink("preferences.blocked-domains",
|
|
|
|
destination: DomainBlocksView(viewModel: viewModel.domainBlocksViewModel()))
|
2020-08-07 12:14:14 +02:00
|
|
|
}
|
2020-10-15 09:44:01 +02:00
|
|
|
Section(header: Text("preferences.app")) {
|
|
|
|
NavigationLink("preferences.media",
|
|
|
|
destination: MediaPreferencesView(
|
|
|
|
viewModel: .init(identification: identification)))
|
2020-10-27 04:01:12 +01:00
|
|
|
NavigationLink("preferences.startup-and-syncing",
|
|
|
|
destination: StartupAndSyncingPreferencesView())
|
2020-10-15 09:44:01 +02:00
|
|
|
}
|
2020-08-07 12:14:14 +02:00
|
|
|
}
|
2020-08-07 12:59:48 +02:00
|
|
|
.navigationTitle("preferences")
|
2020-08-07 03:41:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 09:37:14 +02:00
|
|
|
#if DEBUG
|
2020-09-01 09:33:49 +02:00
|
|
|
import PreviewViewModels
|
|
|
|
|
2020-08-07 03:41:59 +02:00
|
|
|
struct PreferencesView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2020-09-08 04:12:38 +02:00
|
|
|
PreferencesView(viewModel: .init(identification: .preview))
|
2020-08-07 03:41:59 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-12 09:37:14 +02:00
|
|
|
#endif
|