mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-06 00:39:31 +00:00
43 lines
1.6 KiB
Swift
43 lines
1.6 KiB
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import SwiftUI
|
|
import ViewModels
|
|
|
|
struct PreferencesView: View {
|
|
@StateObject var viewModel: PreferencesViewModel
|
|
@EnvironmentObject var identification: Identification
|
|
|
|
var body: some View {
|
|
Form {
|
|
Section(header: Text(viewModel.handle)) {
|
|
NavigationLink("preferences.posting-reading",
|
|
destination: PostingReadingPreferencesView(
|
|
viewModel: .init(identification: identification)))
|
|
NavigationLink("preferences.filters",
|
|
destination: FiltersView(
|
|
viewModel: .init(identification: identification)))
|
|
if viewModel.shouldShowNotificationTypePreferences {
|
|
NavigationLink("preferences.notification-types",
|
|
destination: NotificationTypesPreferencesView(
|
|
viewModel: .init(identification: identification)))
|
|
}
|
|
}
|
|
Section(header: Text("preferences.app")) {
|
|
NavigationLink("preferences.media",
|
|
destination: MediaPreferencesView(
|
|
viewModel: .init(identification: identification)))
|
|
}
|
|
}
|
|
.navigationTitle("preferences")
|
|
}
|
|
}
|
|
|
|
#if DEBUG
|
|
import PreviewViewModels
|
|
|
|
struct PreferencesView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
PreferencesView(viewModel: .init(identification: .preview))
|
|
}
|
|
}
|
|
#endif
|