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
|
//
// AccountContentView.swift
// MullvadVPN
//
// Created by pronebird on 08/07/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import UIKit
class AccountContentView: UIView {
let purchaseButton: InAppPurchaseButton = {
let button = InAppPurchaseButton()
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
let restorePurchasesButton: AppButton = {
let button = AppButton(style: .default)
button.translatesAutoresizingMaskIntoConstraints = false
button.setTitle(NSLocalizedString(
"RESTORE_PURCHASES_BUTTON_TITLE",
tableName: "Account",
value: "Restore purchases",
comment: ""
), for: .normal)
return button
}()
let logoutButton: AppButton = {
let button = AppButton(style: .danger)
button.translatesAutoresizingMaskIntoConstraints = false
button.accessibilityIdentifier = "LogoutButton"
button.setTitle(NSLocalizedString(
"LOGOUT_BUTTON_TITLE",
tableName: "Account",
value: "Log out",
comment: ""
), for: .normal)
return button
}()
let accountTokenRowView: AccountTokenRow = {
let view = AccountTokenRow()
view.translatesAutoresizingMaskIntoConstraints = false
return view
}()
let accountExpiryRowView: AccountExpiryRow = {
let view = AccountExpiryRow()
view.translatesAutoresizingMaskIntoConstraints = false
return view
}()
lazy var contentStackView: UIStackView = {
let stackView = UIStackView(arrangedSubviews: [accountTokenRowView, accountExpiryRowView])
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.axis = .vertical
stackView.spacing = UIMetrics.sectionSpacing
return stackView
}()
lazy var buttonStackView: UIStackView = {
let stackView = UIStackView(arrangedSubviews: [purchaseButton, restorePurchasesButton, logoutButton])
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.axis = .vertical
stackView.spacing = UIMetrics.interButtonSpacing
stackView.setCustomSpacing(UIMetrics.interButtonSpacing, after: restorePurchasesButton)
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 AccountTokenRow: UIView {
var value: String? {
didSet {
valueButton.setTitle(value, for: .normal)
accessibilityValue = value
}
}
var actionHandler: (() -> Void)?
private let textLabel: UILabel = {
let textLabel = UILabel()
textLabel.translatesAutoresizingMaskIntoConstraints = false
textLabel.text = NSLocalizedString("ACCOUNT_TOKEN_LABEL", tableName: "Account", 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("ACCOUNT_TOKEN_ACCESSIBILITY_HINT", tableName: "Account", comment: "")
return button
}()
override init(frame: CGRect) {
super.init(frame: frame)
addSubview(textLabel)
addSubview(valueButton)
NSLayoutConstraint.activate([
textLabel.topAnchor.constraint(equalTo: topAnchor),
textLabel.leadingAnchor.constraint(equalTo: leadingAnchor),
textLabel.trailingAnchor.constraint(greaterThanOrEqualTo: 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
accessibilityLabel = textLabel.text
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")
}
@objc private func handleTap() {
self.actionHandler?()
}
@objc private func performAccessibilityAction() {
self.actionHandler?()
}
}
class AccountExpiryRow: UIView {
var value: Date? {
didSet {
let expiry = value.flatMap { AccountExpiry(date: $0) }
if let expiry = expiry, expiry.isExpired {
let localizedString = NSLocalizedString(
"ACCOUNT_OUT_OF_TIME_LABEL",
tableName: "Account",
value: "OUT OF TIME",
comment: "Label displayed in place of account expiration when account is out of time."
)
valueLabel.text = localizedString
accessibilityValue = localizedString
valueLabel.textColor = .dangerColor
} else {
let formattedDate = expiry?.formattedDate
valueLabel.text = formattedDate
accessibilityValue = formattedDate
valueLabel.textColor = .white
}
}
}
private let textLabel: UILabel = {
let textLabel = UILabel()
textLabel.translatesAutoresizingMaskIntoConstraints = false
textLabel.text = NSLocalizedString("ACCOUNT_EXPIRY_LABEL", tableName: "Account", 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
}()
let activityIndicator: SpinnerActivityIndicatorView = {
let activityIndicator = SpinnerActivityIndicatorView(style: .small)
activityIndicator.translatesAutoresizingMaskIntoConstraints = false
activityIndicator.tintColor = .white
activityIndicator.setContentHuggingPriority(.defaultHigh, for: .horizontal)
activityIndicator.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
return activityIndicator
}()
override init(frame: CGRect) {
super.init(frame: frame)
addSubview(textLabel)
addSubview(activityIndicator)
addSubview(valueLabel)
NSLayoutConstraint.activate([
textLabel.topAnchor.constraint(equalTo: topAnchor),
textLabel.leadingAnchor.constraint(equalTo: leadingAnchor),
textLabel.trailingAnchor.constraint(greaterThanOrEqualTo: activityIndicator.leadingAnchor, constant: -8),
activityIndicator.topAnchor.constraint(equalTo: textLabel.topAnchor),
activityIndicator.bottomAnchor.constraint(equalTo: textLabel.bottomAnchor),
activityIndicator.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")
}
}
|