Tusker/Tusker/Screens/Preferences/BehaviorPrefsView.swift

61 lines
1.7 KiB
Swift
Raw Normal View History

2019-06-14 00:53:17 +00:00
// BehaviorPrefsView.swift
// Tusker
//
// Created by Shadowfacts on 6/13/19.
// Copyright © 2019 Shadowfacts. All rights reserved.
//
import SwiftUI
import Pachyderm
struct BehaviorPrefsView: View {
@ObservedObject var preferences = Preferences.shared
2019-06-14 00:53:17 +00:00
var body: some View {
List {
linksSection
contentWarningsSection
}
2021-02-06 18:47:45 +00:00
.listStyle(InsetGroupedListStyle())
.navigationBarTitle(Text("Behavior"))
2019-07-28 01:43:08 +00:00
}
2020-02-22 18:19:31 +00:00
var linksSection: some View {
2020-08-16 18:58:02 +00:00
Section(header: Text("Links")) {
Toggle(isOn: $preferences.openLinksInApps) {
2019-07-28 01:43:08 +00:00
Text("Open Links in Apps")
2019-06-14 00:53:17 +00:00
}
Toggle(isOn: $preferences.useInAppSafari) {
Text("Use In-App Safari")
}
Toggle(isOn: $preferences.inAppSafariAutomaticReaderMode) {
Text("Always Use Reader Mode in In-App Safari")
}.disabled(!preferences.useInAppSafari)
2019-06-14 00:53:17 +00:00
}
}
var contentWarningsSection: some View {
Section(header: Text("Content Warnings")) {
Toggle(isOn: $preferences.collapseLongPosts) {
Text("Collapse Long Posts")
}
Toggle(isOn: $preferences.expandAllContentWarnings) {
Text("Expand All Content Warnings")
}
NavigationLink(destination: OppositeCollapseKeywordsView()) {
Text(preferences.expandAllContentWarnings ? "Collapse Posts with Keywords in CWs" : "Expand Posts with Keywords in CWs")
}
}
}
2019-06-14 00:53:17 +00:00
}
#if DEBUG
struct BehaviorPrefsView_Previews : PreviewProvider {
static var previews: some View {
BehaviorPrefsView()
}
}
#endif