mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
96 lines
3.4 KiB
Swift
96 lines
3.4 KiB
Swift
//
|
|
// PreferencesView.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by Evgeny on 13/11/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct PreferencesView: View {
|
|
@EnvironmentObject var chatModel: ChatModel
|
|
@State var profile: LocalProfile
|
|
@State var preferences: FullPreferences
|
|
@State var currentPreferences: FullPreferences
|
|
|
|
var body: some View {
|
|
VStack {
|
|
List {
|
|
timedMessagesFeatureSection($preferences.timedMessages.allow)
|
|
featureSection(.fullDelete, $preferences.fullDelete.allow)
|
|
featureSection(.voice, $preferences.voice.allow)
|
|
|
|
Section {
|
|
Button("Reset") { preferences = currentPreferences }
|
|
Button("Save (and notify contacts)") { savePreferences() }
|
|
}
|
|
.disabled(currentPreferences == preferences)
|
|
}
|
|
}
|
|
}
|
|
|
|
private func featureSection(_ feature: ChatFeature, _ allowFeature: Binding<FeatureAllowed>) -> some View {
|
|
Section {
|
|
settingsRow(feature.icon) {
|
|
Picker(feature.text, selection: allowFeature) {
|
|
ForEach(FeatureAllowed.values) { allow in
|
|
Text(allow.text)
|
|
}
|
|
}
|
|
.frame(height: 36)
|
|
}
|
|
}
|
|
footer: { featureFooter(feature, allowFeature) }
|
|
|
|
}
|
|
|
|
private func timedMessagesFeatureSection(_ allowFeature: Binding<FeatureAllowed>) -> some View {
|
|
Section {
|
|
let allow = Binding(
|
|
get: { allowFeature.wrappedValue == .always || allowFeature.wrappedValue == .yes },
|
|
set: { yes, _ in allowFeature.wrappedValue = yes ? .yes : .no }
|
|
)
|
|
settingsRow(ChatFeature.timedMessages.icon) {
|
|
Toggle(ChatFeature.timedMessages.text, isOn: allow)
|
|
}
|
|
}
|
|
footer: { featureFooter(.timedMessages, allowFeature) }
|
|
}
|
|
|
|
private func featureFooter(_ feature: ChatFeature, _ allowFeature: Binding<FeatureAllowed>) -> some View {
|
|
Text(feature.allowDescription(allowFeature.wrappedValue))
|
|
.frame(height: 36, alignment: .topLeading)
|
|
}
|
|
|
|
private func savePreferences() {
|
|
Task {
|
|
do {
|
|
var p = fromLocalProfile(profile)
|
|
p.preferences = fullPreferencesToPreferences(preferences)
|
|
if let newProfile = try await apiUpdateProfile(profile: p) {
|
|
await MainActor.run {
|
|
if let profileId = chatModel.currentUser?.profile.profileId {
|
|
chatModel.currentUser?.profile = toLocalProfile(profileId, newProfile, "")
|
|
chatModel.currentUser?.fullPreferences = preferences
|
|
}
|
|
currentPreferences = preferences
|
|
}
|
|
}
|
|
} catch {
|
|
logger.error("PreferencesView apiUpdateProfile error: \(responseError(error))")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
struct PreferencesView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
PreferencesView(
|
|
profile: LocalProfile(profileId: 1, displayName: "alice", fullName: "", localAlias: ""),
|
|
preferences: FullPreferences.sampleData,
|
|
currentPreferences: FullPreferences.sampleData
|
|
)
|
|
}
|
|
}
|