mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-27 07:25:26 +01:00
af61ff7914
* Remove icons from settings * Add new toggle for using the theme tint * Localizations * Add icon style picker * Localizations --------- Co-authored-by: Thomas Ricouard <ricouard77@gmail.com>
83 lines
3.3 KiB
Swift
83 lines
3.3 KiB
Swift
import DesignSystem
|
|
import Env
|
|
import SwiftUI
|
|
|
|
struct SwipeActionsSettingsView: View {
|
|
@EnvironmentObject private var theme: Theme
|
|
@EnvironmentObject private var userPreferences: UserPreferences
|
|
|
|
var body: some View {
|
|
Form {
|
|
Section("settings.swipeactions.status") {
|
|
Label("settings.swipeactions.status.leading", systemImage: "arrow.right.circle")
|
|
Picker(selection: $userPreferences.swipeActionsStatusLeadingLeft, label: makeSwipeLabel(left: true, text: "settings.swipeactions.status.leading.left")) {
|
|
Section {
|
|
Text(StatusAction.none.displayName()).tag(StatusAction.none)
|
|
}
|
|
Section {
|
|
ForEach(StatusAction.allCases) { action in
|
|
if action != .none {
|
|
Text(action.displayName()).tag(action)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Picker(selection: $userPreferences.swipeActionsStatusLeadingRight, label: makeSwipeLabel(left: false, text: "settings.swipeactions.status.leading.right")) {
|
|
Section {
|
|
Text(StatusAction.none.displayName()).tag(StatusAction.none)
|
|
}
|
|
Section {
|
|
ForEach(StatusAction.allCases) { action in
|
|
if action != .none {
|
|
Text(action.displayName()).tag(action)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Label("settings.swipeactions.status.trailing", systemImage: "arrow.left.circle")
|
|
Picker(selection: $userPreferences.swipeActionsStatusTrailingLeft, label: makeSwipeLabel(left: true, text: "settings.swipeactions.status.trailing.left")) {
|
|
Section {
|
|
Text(StatusAction.none.displayName()).tag(StatusAction.none)
|
|
}
|
|
Section {
|
|
ForEach(StatusAction.allCases) { action in
|
|
if action != .none {
|
|
Text(action.displayName()).tag(action)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Picker(selection: $userPreferences.swipeActionsStatusTrailingRight, label: makeSwipeLabel(left: false, text: "settings.swipeactions.status.trailing.right")) {
|
|
Section {
|
|
Text(StatusAction.none.displayName()).tag(StatusAction.none)
|
|
}
|
|
Section {
|
|
ForEach(StatusAction.allCases) { action in
|
|
if action != .none {
|
|
Text(action.displayName()).tag(action)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Toggle(isOn: $userPreferences.swipeActionsUseThemeColor) {
|
|
Label("settings.swipeactions.status.use-theme-colors", systemImage: "paintbrush.pointed")
|
|
}
|
|
Picker(selection: $userPreferences.swipeActionsIconStyle, label: Label("settings.swipeactions.status.icon-style", systemImage: "text.below.photo")) {
|
|
ForEach(UserPreferences.SwipeActionsIconStyle.allCases, id: \.rawValue) { style in
|
|
Text(style.description).tag(style)
|
|
}
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
}
|
|
.navigationTitle("settings.swipeactions.navigation-title")
|
|
.scrollContentBackground(.hidden)
|
|
.background(theme.secondaryBackgroundColor)
|
|
}
|
|
|
|
private func makeSwipeLabel(left: Bool, text: LocalizedStringKey) -> some View {
|
|
return Label(text, systemImage: left ? "rectangle.lefthalf.filled" : "rectangle.righthalf.filled")
|
|
.padding(.leading, 16)
|
|
}
|
|
}
|