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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
//
// WireguardKeysContentView.swift
// MullvadVPN
//
// Created by pronebird on 05/07/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import UIKit
class WireguardKeysContentView: UIView {
let regenerateKeyButton: AppButton = {
let button = AppButton(style: .success)
button.translatesAutoresizingMaskIntoConstraints = false
button.setTitle(
NSLocalizedString(
"REGENERATE_KEY_BUTTON_TITLE",
tableName: "WireguardKeys",
comment: ""
),
for: .normal
)
return button
}()
let verifyKeyButton: AppButton = {
let button = AppButton(style: .default)
button.translatesAutoresizingMaskIntoConstraints = false
button.setTitle(
NSLocalizedString(
"VERIFY_KEY_BUTTON_TITLE",
tableName: "WireguardKeys",
comment: ""
),
for: .normal
)
return button
}()
let publicKeyRowView: WireguardKeysPublicKeyRow = {
let view = WireguardKeysPublicKeyRow()
view.translatesAutoresizingMaskIntoConstraints = false
return view
}()
let creationRowView: WireguardKeysCreationRow = {
let view = WireguardKeysCreationRow()
view.translatesAutoresizingMaskIntoConstraints = false
return view
}()
lazy var contentStackView: UIStackView = {
let stackView = UIStackView(arrangedSubviews: [publicKeyRowView, creationRowView])
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.axis = .vertical
stackView.spacing = UIMetrics.sectionSpacing
return stackView
}()
lazy var buttonStackView: UIStackView = {
let stackView = UIStackView(arrangedSubviews: [regenerateKeyButton, verifyKeyButton])
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.axis = .vertical
stackView.spacing = UIMetrics.interButtonSpacing
return stackView
}()
override init(frame: CGRect) {
super.init(frame: frame)
layoutMargins = UIMetrics.contentLayoutMargins
addSubview(contentStackView)
addSubview(buttonStackView)
NSLayoutConstraint.activate([
contentStackView.topAnchor.constraint(equalTo: layoutMarginsGuide.topAnchor),
contentStackView.leadingAnchor.constraint(equalTo: layoutMarginsGuide.leadingAnchor),
contentStackView.trailingAnchor.constraint(equalTo: layoutMarginsGuide.trailingAnchor),
buttonStackView.topAnchor.constraint(greaterThanOrEqualTo: contentStackView.bottomAnchor, constant: UIMetrics.sectionSpacing),
buttonStackView.leadingAnchor.constraint(equalTo: layoutMarginsGuide.leadingAnchor),
buttonStackView.trailingAnchor.constraint(equalTo: layoutMarginsGuide.trailingAnchor),
buttonStackView.bottomAnchor.constraint(equalTo: layoutMarginsGuide.bottomAnchor)
])
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
class WireguardKeysPublicKeyRow: UIView {
var value: String? {
didSet {
valueButton.setTitle(value, for: .normal)
accessibilityValue = value
}
}
var status: WireguardKeyStatusView.Status = .default {
didSet {
statusView.status = status
updateAccessibilityLabel()
}
}
var actionHandler: (() -> Void)?
private let textLabel: UILabel = {
let textLabel = UILabel()
textLabel.translatesAutoresizingMaskIntoConstraints = false
textLabel.text = NSLocalizedString("PUBLIC_KEY_LABEL", tableName: "WireguardKeys", comment: "")
textLabel.font = UIFont.systemFont(ofSize: 14)
textLabel.textColor = UIColor(white: 1.0, alpha: 0.6)
return textLabel
}()
private let valueButton: UIButton = {
let button = UIButton(type: .system)
button.translatesAutoresizingMaskIntoConstraints = false
button.titleLabel?.font = UIFont.systemFont(ofSize: 17)
button.setTitleColor(.white, for: .normal)
button.contentHorizontalAlignment = .leading
button.contentEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 1)
button.accessibilityHint = NSLocalizedString("PUBLIC_KEY_ACCESSIBILITY_HINT", tableName: "WireguardKeys", comment: "")
return button
}()
private let statusView: WireguardKeyStatusView = {
let view = WireguardKeyStatusView()
view.translatesAutoresizingMaskIntoConstraints = false
view.setContentHuggingPriority(.defaultHigh, for: .horizontal)
view.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
return view
}()
override init(frame: CGRect) {
super.init(frame: frame)
[textLabel, valueButton, statusView].forEach { subview in
addSubview(subview)
}
NSLayoutConstraint.activate([
textLabel.topAnchor.constraint(equalTo: topAnchor),
textLabel.leadingAnchor.constraint(equalTo: leadingAnchor),
textLabel.trailingAnchor.constraint(greaterThanOrEqualTo: statusView.leadingAnchor, constant: -8),
statusView.topAnchor.constraint(equalTo: textLabel.topAnchor),
statusView.bottomAnchor.constraint(equalTo: textLabel.bottomAnchor),
statusView.trailingAnchor.constraint(equalTo: trailingAnchor),
valueButton.topAnchor.constraint(equalTo: textLabel.bottomAnchor, constant: 8),
valueButton.leadingAnchor.constraint(equalTo: leadingAnchor),
valueButton.trailingAnchor.constraint(equalTo: trailingAnchor),
valueButton.bottomAnchor.constraint(equalTo: bottomAnchor)
])
isAccessibilityElement = true
updateAccessibilityLabel()
let actionName = NSLocalizedString(
"ACCOUNT_TOKEN_ACCESSIBILITY_ACTION_TITLE",
tableName: "Account",
comment: ""
)
accessibilityCustomActions = [UIAccessibilityCustomAction(name: actionName, target: self, selector: #selector(performAccessibilityAction))]
valueButton.addTarget(self, action: #selector(handleTap), for: .touchUpInside)
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func updateAccessibilityLabel() {
var accessibilityLabelString = self.textLabel.text ?? ""
if case .verified(let isValid) = status {
accessibilityLabelString += ", "
if isValid {
accessibilityLabelString.append(
NSLocalizedString(
"KEY_STATUS_VALID",
tableName: "WireguardKeys",
comment: ""
)
)
} else {
accessibilityLabelString.append(
NSLocalizedString(
"KEY_STATUS_INVALID",
tableName: "WireguardKeys",
comment: ""
)
)
}
}
accessibilityLabel = accessibilityLabelString
}
@objc private func handleTap() {
actionHandler?()
}
@objc private func performAccessibilityAction() {
self.actionHandler?()
}
}
class WireguardKeysCreationRow: UIView {
var value: String? {
didSet {
accessibilityValue = value
valueLabel.text = value
}
}
private let textLabel: UILabel = {
let textLabel = UILabel()
textLabel.translatesAutoresizingMaskIntoConstraints = false
textLabel.text = NSLocalizedString("KEY_GENERATED_LABEL", tableName: "WireguardKeys", comment: "")
textLabel.font = UIFont.systemFont(ofSize: 14)
textLabel.textColor = UIColor(white: 1.0, alpha: 0.6)
return textLabel
}()
private let valueLabel: UILabel = {
let valueLabel = UILabel()
valueLabel.translatesAutoresizingMaskIntoConstraints = false
valueLabel.font = UIFont.systemFont(ofSize: 17)
valueLabel.textColor = .white
return valueLabel
}()
override init(frame: CGRect) {
super.init(frame: frame)
addSubview(textLabel)
addSubview(valueLabel)
NSLayoutConstraint.activate([
textLabel.topAnchor.constraint(equalTo: topAnchor),
textLabel.leadingAnchor.constraint(equalTo: leadingAnchor),
textLabel.trailingAnchor.constraint(equalTo: trailingAnchor),
valueLabel.topAnchor.constraint(equalTo: textLabel.bottomAnchor, constant: 8),
valueLabel.leadingAnchor.constraint(equalTo: leadingAnchor),
valueLabel.trailingAnchor.constraint(equalTo: trailingAnchor),
valueLabel.bottomAnchor.constraint(equalTo: bottomAnchor)
])
isAccessibilityElement = true
accessibilityLabel = textLabel.text
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
class WireguardKeyStatusView: UIView {
enum Status {
case `default`, verifying, verified(Bool), regenerating
}
let textLabel: UILabel = {
let textLabel = UILabel()
textLabel.translatesAutoresizingMaskIntoConstraints = false
textLabel.font = UIFont.systemFont(ofSize: 14)
textLabel.textColor = .successColor
return textLabel
}()
let activityIndicator: SpinnerActivityIndicatorView = {
let activityIndicator = SpinnerActivityIndicatorView(style: .small)
activityIndicator.translatesAutoresizingMaskIntoConstraints = false
activityIndicator.tintColor = .white
return activityIndicator
}()
lazy var stackView: UIStackView = {
let stackView = UIStackView(arrangedSubviews: [textLabel, activityIndicator])
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.spacing = 4
stackView.axis = .horizontal
stackView.distribution = .equalCentering
return stackView
}()
var status: Status = .default {
didSet {
updateView()
}
}
override init(frame: CGRect) {
super.init(frame: frame)
addSubview(stackView)
NSLayoutConstraint.activate([
stackView.topAnchor.constraint(equalTo: topAnchor),
stackView.leadingAnchor.constraint(equalTo: leadingAnchor),
stackView.bottomAnchor.constraint(equalTo: bottomAnchor),
stackView.trailingAnchor.constraint(equalTo: trailingAnchor)
])
updateView()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func updateView() {
switch status {
case .default:
textLabel.isHidden = true
activityIndicator.stopAnimating()
case .regenerating, .verifying:
startSpinner()
case .verified(let isValid):
textLabel.isHidden = false
activityIndicator.stopAnimating()
if isValid {
textLabel.text = NSLocalizedString(
"KEY_STATUS_VALID",
tableName: "WireguardKeys",
comment: ""
)
textLabel.textColor = .successColor
} else {
textLabel.text = NSLocalizedString(
"KEY_STATUS_INVALID",
tableName: "WireguardKeys",
comment: ""
)
textLabel.textColor = .dangerColor
}
}
}
private func startSpinner() {
textLabel.isHidden = true
activityIndicator.startAnimating()
}
}
|