summaryrefslogtreecommitdiff
path: root/TalerWallet1/Views/Settings/SettingsItem.swift
blob: 3368ec459d8794b17e93dd000d95344d17ce4568 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
 * This file is part of GNU Taler, ©2022-23 Taler Systems S.A.
 * See LICENSE.md
 */
import SwiftUI

struct SettingsItem<Content: View>: View {
    var name: String
    var id1: String? = nil
    var description: String?
    var content: () -> Content
    
    init(name: String, id1: String, description: String? = nil, @ViewBuilder content: @escaping () -> Content) {
        self.name = name
        self.id1 = id1
        self.description = description
        self.content = content
    }
    
    var body: some View {
        HStack {
            VStack {
                Text(name)
                    .id(id1)
                    .frame(maxWidth: .infinity, alignment: .leading)
                    .accessibilityFont(.title2)
                    .padding([.bottom], 0.01)
                if let desc = description {
                    Text(desc)
                        .id(id1 == nil ? nil : id1! + "_T")
                        .frame(maxWidth: .infinity, alignment: .leading)
                        .accessibilityFont(.caption)
                }
            }.id(id1 == nil ? nil : id1! + "_V")
            content()
                .accessibilityFont(.body)
        }.id(id1 == nil ? nil : id1! + "_H")
            .accessibilityElement(children: .combine)
            .padding([.bottom], 4)
    }
}
// MARK: -
struct SettingsToggle: View {
    var name: String
    @Binding var value: Bool
    var id1: String? = nil
    var description: String?
    var action: () -> Void = {}

    var body: some View {
        let accLabel: String = if let description {
            name + ", " + description
        } else {
            name
        }
        VStack {
            Toggle(name, isOn: $value.animation())
                .id(id1)
//                .accessibilityLabel(name)
                .accessibility(sortPriority: 1)
                .accessibilityFont(.title2)
                .onChange(of: value) { value in
                    action()
                }

            if let desc = description {
                Text(desc)
                    .id(id1 == nil ? nil : id1! + "_T")
                    .frame(maxWidth: .infinity, alignment: .leading)
                    .accessibility(sortPriority: 0)
                    .accessibilityFont(.caption)
            }
        }
        .accessibilityElement(children: .combine)
        .accessibilityLabel(accLabel)
        .padding([.bottom], 4)
        .id(id1 == nil ? nil : id1! + "_V")
    }
}
// MARK: -
struct SettingsFont: View {
    let title: String
    let value: Int
    let action: (Int) -> Void

    @State private var selected = 0
    let fonts = [String(localized: "Standard iOS Font"), "Atkinson-Hyperlegible", "Nunito"]

    var body: some View {
        Picker(title, selection: $selected, content: {
            ForEach(0..<fonts.count, id: \.self, content: { index in
                Text(fonts[index]).tag(index)
            })
        })
            .accessibilityFont(.title2)
            .pickerStyle(.menu)
            .onAppear() {
                withAnimation { selected = value }
            }
            .onChange(of: selected) { selected in
                action(selected)
            }
    }
}
// MARK: -
struct SettingsStyle: View {
    let title: String
    @Binding var myListStyle: MyListStyle

    var body: some View {
        HStack {
            Text(title)
                .accessibilityFont(.title2)
            Spacer()
            Picker(selection: $myListStyle) {
                ForEach(MyListStyle.allCases, id: \.self) {
                    Text($0.displayName.capitalized).tag($0)
                        .accessibilityFont(.title2)
                }
            } label: {}
                .pickerStyle(.menu)
//                .frame(alignment: .trailing)
//                .background(WalletColors().buttonBackColor(pressed: false, disabled: false))  TODO: RoundRect
        }
        .accessibilityElement(children: .combine)
    }
}
// MARK: -
struct SettingsSpeaker: View {
    var name: String
    @Binding var value: Int
    var description: String?
    var action: (_ value: Int) -> Void = {value in }

    func imageName(_ value: Int) -> (String, String) {
        return (value == 0) ? ("speaker.slash", String(localized:"off", comment: "Accessibility String for Payment Sounds Off"))
             : (value == 1) ? ("speaker.fill", String(localized:"Taler Sounds", comment: "Accessibility String for Payment Sounds"))
                            : ("speaker", String(localized:"Apple Sounds", comment: "Accessibility String for Payment Sounds"))
    }
    var body: some View {
        let image = imageName(value)
        let accLabel = name + ", " + image.1
        let accHint = description ?? ""

        VStack {
            HStack {
                Text(name)
                    .accessibilityFont(.title2)
                Text(verbatim: " ")
                    .accessibilityFont(.largeTitle)
                Spacer()
                Button {
                    if value > 0 {
                        value = -1
                        Controller.shared.playSound(1)
                    } else {
                        value = value + 1
                        Controller.shared.playSound(value)
                    }
                } label: {
                    Image(systemName: image.0)
                        .accessibilityFont(.largeTitle)
                }
            }

            if let desc = description {
                Text(desc)
                    .frame(maxWidth: .infinity, alignment: .leading)
                    .accessibilityFont(.caption)
            }
        }
        .accessibilityElement(children: .combine)
        .accessibilityLabel(accLabel)
        .accessibilityHint(accHint)
        .padding([.bottom], 4)
    }
}
// MARK: -
#if DEBUG
struct SettingsItemPreview : View {
    @State var developerMode: Bool = false
    @State var playSounds: Int = 0

    var body: some View {
        VStack {
            SettingsToggle(name: "Developer Mode", value: $developerMode, id1: "dev1",
                    description: "More information intended for debugging")
            SettingsSpeaker(name: String(localized: "Play Payment Sounds"), value: $playSounds,
                     description: String(localized: "After a transaction finished"))

        }
    }
}

struct SettingsItem_Previews: PreviewProvider {
    static var previews: some View {
        List {
            SettingsItem (name: "Exchanges", id1: "list", description: "Manage list of exchanges known to this wallet") {}
            SettingsItemPreview()
            SettingsItem(name: "Save Logfile", id1: "save", description: "Help debugging wallet-core") {
                Button("Save") {
                }
                .buttonStyle(.bordered)
                .disabled(true)
            }
        }
    }
}
#endif