92 lines
3.3 KiB
Swift
92 lines
3.3 KiB
Swift
import DesignSystem
|
|
import Models
|
|
import Status
|
|
import SwiftUI
|
|
import Env
|
|
|
|
struct DisplaySettingsView: View {
|
|
@EnvironmentObject private var theme: Theme
|
|
@EnvironmentObject private var userPreferences: UserPreferences
|
|
|
|
@State private var isThemeSelectorPresented = false
|
|
|
|
var body: some View {
|
|
Form {
|
|
Section("settings.display.section.theme") {
|
|
Toggle("settings.display.theme.systemColor", isOn: $theme.followSystemColorScheme)
|
|
themeSelectorButton
|
|
ColorPicker("settings.display.theme.tint", selection: $theme.tintColor)
|
|
.onChange(of: theme.tintColor) { newValue in
|
|
theme.followSystemColorScheme = false
|
|
}
|
|
ColorPicker("settings.display.theme.background", selection: $theme.primaryBackgroundColor)
|
|
.onChange(of: theme.primaryBackgroundColor) { newValue in
|
|
theme.followSystemColorScheme = false
|
|
}
|
|
ColorPicker("settings.display.theme.secondary-background", selection: $theme.secondaryBackgroundColor)
|
|
.onChange(of: theme.primaryBackgroundColor) { newValue in
|
|
theme.followSystemColorScheme = false
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
|
|
Section("settings.display.section.display") {
|
|
Picker("settings.display.avatar.position", selection: $theme.avatarPosition) {
|
|
ForEach(Theme.AvatarPosition.allCases, id: \.rawValue) { position in
|
|
Text(position.description).tag(position)
|
|
}
|
|
}
|
|
Picker("settings.display.avatar.shape", selection: $theme.avatarShape) {
|
|
ForEach(Theme.AvatarShape.allCases, id: \.rawValue) { shape in
|
|
Text(shape.description).tag(shape)
|
|
}
|
|
}
|
|
Picker("settings.display.status.action-buttons", selection: $theme.statusActionsDisplay) {
|
|
ForEach(Theme.StatusActionsDisplay.allCases, id: \.rawValue) { buttonStyle in
|
|
Text(buttonStyle.description).tag(buttonStyle)
|
|
}
|
|
}
|
|
|
|
Picker("settings.display.status.media-style", selection: $theme.statusDisplayStyle) {
|
|
ForEach(Theme.StatusDisplayStyle.allCases, id: \.rawValue) { buttonStyle in
|
|
Text(buttonStyle.description).tag(buttonStyle)
|
|
}
|
|
}
|
|
if ProcessInfo.processInfo.isiOSAppOnMac {
|
|
VStack {
|
|
Slider(value: $userPreferences.fontSizeScale, in: 0.5...1.5, step: 0.1)
|
|
Text("Font scaling: \(String(format: "%.1f", userPreferences.fontSizeScale))")
|
|
.font(.scaledBody)
|
|
}
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
|
|
Section {
|
|
Button {
|
|
theme.selectedSet = .iceCubeDark
|
|
theme.avatarShape = .rounded
|
|
theme.avatarPosition = .top
|
|
theme.statusActionsDisplay = .full
|
|
} label: {
|
|
Text("settings.display.restore")
|
|
}
|
|
}
|
|
.listRowBackground(theme.primaryBackgroundColor)
|
|
}
|
|
.navigationTitle("settings.display.navigation-title")
|
|
.scrollContentBackground(.hidden)
|
|
.background(theme.secondaryBackgroundColor)
|
|
}
|
|
|
|
private var themeSelectorButton: some View {
|
|
NavigationLink(destination: ThemePreviewView()) {
|
|
HStack {
|
|
Text("settings.display.section.theme")
|
|
Spacer()
|
|
Text(theme.selectedSet.rawValue)
|
|
}
|
|
}
|
|
}
|
|
}
|