Changelog-Added: Add dismiss button to wallet high balance reminders Closes: https://github.com/damus-io/damus/issues/2994 Signed-off-by: Daniel D’Aquino <daniel@daquino.me>
84 lines
3.7 KiB
Swift
84 lines
3.7 KiB
Swift
//
|
|
// WalletSettingsView.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2023-04-05.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Combine
|
|
|
|
struct ZapSettingsView: View {
|
|
@ObservedObject var settings: UserSettingsStore
|
|
|
|
@State var default_zap_amount: String
|
|
@Environment(\.dismiss) var dismiss
|
|
|
|
init(settings: UserSettingsStore) {
|
|
_default_zap_amount = State(initialValue: settings.default_zap_amount.formatted())
|
|
self._settings = ObservedObject(initialValue: settings)
|
|
}
|
|
|
|
var body: some View {
|
|
Form {
|
|
Section(
|
|
header: Text("OnlyZaps", comment: "Section header for enabling OnlyZaps mode (hide reactions)"),
|
|
footer: Text("Hide all 🤙's", comment: "Section footer describing OnlyZaps mode")
|
|
|
|
) {
|
|
Toggle(NSLocalizedString("OnlyZaps mode", comment: "Setting toggle to hide reactions."), isOn: $settings.onlyzaps_mode)
|
|
.toggleStyle(.switch)
|
|
.onChange(of: settings.onlyzaps_mode) { newVal in
|
|
notify(.onlyzaps_mode(newVal))
|
|
}
|
|
}
|
|
|
|
Section(NSLocalizedString("Wallet", comment: "Title for section in zap settings that controls the Lightning wallet selection.")) {
|
|
|
|
Toggle(NSLocalizedString("Show wallet selector", comment: "Toggle to show or hide selection of wallet."), isOn: $settings.show_wallet_selector).toggleStyle(.switch)
|
|
Picker(NSLocalizedString("Select default wallet", comment: "Prompt selection of user's default wallet"),
|
|
selection: $settings.default_wallet) {
|
|
ForEach(Wallet.allCases, id: \.self) { wallet in
|
|
Text(wallet.model.displayName)
|
|
.tag(wallet.model.tag)
|
|
}
|
|
}
|
|
}
|
|
|
|
Section(NSLocalizedString("Zaps", comment: "Title for section in zap settings that controls general zap preferences.")) {
|
|
Toggle(NSLocalizedString("Zap Vibration", comment: "Setting to enable vibration on zap"), isOn: $settings.zap_vibration)
|
|
.toggleStyle(.switch)
|
|
}
|
|
|
|
Section(NSLocalizedString("Default Zap Amount in sats", comment: "Title for section in zap settings that controls the default zap amount in sats.")) {
|
|
TextField(fallback_zap_amount.formatted(), text: $default_zap_amount)
|
|
.keyboardType(.numberPad)
|
|
.onReceive(Just(default_zap_amount)) { newValue in
|
|
if let parsed = handle_string_amount(new_value: newValue) {
|
|
self.default_zap_amount = parsed.formatted()
|
|
settings.default_zap_amount = parsed
|
|
} else {
|
|
self.default_zap_amount = ""
|
|
settings.default_zap_amount = 0
|
|
}
|
|
}
|
|
}
|
|
|
|
Section(NSLocalizedString("NWC wallet", comment: "Title for section in zap settings that controls general NWC wallet settings.")) {
|
|
Toggle(NSLocalizedString("Disable high balance warning", comment: "Setting to disable high balance warnings on the user's wallet"), isOn: $settings.dismiss_wallet_high_balance_warning)
|
|
.toggleStyle(.switch)
|
|
}
|
|
}
|
|
.navigationTitle(NSLocalizedString("Zaps", comment: "Navigation title for zap settings."))
|
|
.onReceive(handle_notify(.switched_timeline)) { _ in
|
|
dismiss()
|
|
}
|
|
}
|
|
}
|
|
|
|
struct WalletSettingsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ZapSettingsView(settings: UserSettingsStore())
|
|
}
|
|
}
|