mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-25 01:31:02 +00:00
Center identity proof
This commit is contained in:
parent
a33a5607f8
commit
3eb3d2d91c
1 changed files with 14 additions and 5 deletions
|
@ -7,6 +7,8 @@ import UIKit
|
||||||
final class AccountFieldView: UIView {
|
final class AccountFieldView: UIView {
|
||||||
let nameLabel = UILabel()
|
let nameLabel = UILabel()
|
||||||
let valueTextView = TouchFallthroughTextView()
|
let valueTextView = TouchFallthroughTextView()
|
||||||
|
let checkButton = UIButton()
|
||||||
|
private var valueTextViewTrailingConstraint: NSLayoutConstraint?
|
||||||
private var cancellables = Set<AnyCancellable>()
|
private var cancellables = Set<AnyCancellable>()
|
||||||
|
|
||||||
// swiftlint:disable:next function_body_length
|
// swiftlint:disable:next function_body_length
|
||||||
|
@ -77,8 +79,6 @@ final class AccountFieldView: UIView {
|
||||||
valueTextView.attributedText = mutableValue
|
valueTextView.attributedText = mutableValue
|
||||||
valueTextView.textAlignment = .center
|
valueTextView.textAlignment = .center
|
||||||
|
|
||||||
let checkButton = UIButton()
|
|
||||||
|
|
||||||
checkButton.setImage(
|
checkButton.setImage(
|
||||||
UIImage(
|
UIImage(
|
||||||
systemName: "checkmark",
|
systemName: "checkmark",
|
||||||
|
@ -108,6 +108,9 @@ final class AccountFieldView: UIView {
|
||||||
let valueTextViewBottomConstraint = valueTextView.bottomAnchor.constraint(
|
let valueTextViewBottomConstraint = valueTextView.bottomAnchor.constraint(
|
||||||
lessThanOrEqualTo: bottomAnchor,
|
lessThanOrEqualTo: bottomAnchor,
|
||||||
constant: -.defaultSpacing)
|
constant: -.defaultSpacing)
|
||||||
|
valueTextViewTrailingConstraint = valueTextView.trailingAnchor.constraint(
|
||||||
|
equalTo: trailingAnchor,
|
||||||
|
constant: -.defaultSpacing)
|
||||||
|
|
||||||
for constraint in [nameLabelBottomConstraint, valueTextViewBottomConstraint] {
|
for constraint in [nameLabelBottomConstraint, valueTextViewBottomConstraint] {
|
||||||
constraint.priority = .justBelowMax
|
constraint.priority = .justBelowMax
|
||||||
|
@ -126,7 +129,7 @@ final class AccountFieldView: UIView {
|
||||||
equalTo: verifiedAt == nil ? dividerView.trailingAnchor : checkButton.trailingAnchor,
|
equalTo: verifiedAt == nil ? dividerView.trailingAnchor : checkButton.trailingAnchor,
|
||||||
constant: .defaultSpacing),
|
constant: .defaultSpacing),
|
||||||
valueTextView.topAnchor.constraint(greaterThanOrEqualTo: topAnchor, constant: .defaultSpacing),
|
valueTextView.topAnchor.constraint(greaterThanOrEqualTo: topAnchor, constant: .defaultSpacing),
|
||||||
valueTextView.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -.defaultSpacing),
|
valueTextViewTrailingConstraint!,
|
||||||
valueTextViewBottomConstraint,
|
valueTextViewBottomConstraint,
|
||||||
nameLabel.widthAnchor.constraint(equalTo: widthAnchor, multiplier: 1 / 3),
|
nameLabel.widthAnchor.constraint(equalTo: widthAnchor, multiplier: 1 / 3),
|
||||||
checkButton.centerYAnchor.constraint(equalTo: valueTextView.centerYAnchor),
|
checkButton.centerYAnchor.constraint(equalTo: valueTextView.centerYAnchor),
|
||||||
|
@ -141,8 +144,6 @@ final class AccountFieldView: UIView {
|
||||||
valueBackgroundView.bottomAnchor.constraint(equalTo: bottomAnchor)
|
valueBackgroundView.bottomAnchor.constraint(equalTo: bottomAnchor)
|
||||||
])
|
])
|
||||||
|
|
||||||
// isAccessibilityElement = true
|
|
||||||
|
|
||||||
let accessibilityAttributedLabel = NSMutableAttributedString(attributedString: mutableName)
|
let accessibilityAttributedLabel = NSMutableAttributedString(attributedString: mutableName)
|
||||||
|
|
||||||
accessibilityAttributedLabel.appendWithSeparator(mutableValue)
|
accessibilityAttributedLabel.appendWithSeparator(mutableValue)
|
||||||
|
@ -191,6 +192,14 @@ final class AccountFieldView: UIView {
|
||||||
required init?(coder: NSCoder) {
|
required init?(coder: NSCoder) {
|
||||||
fatalError("init(coder:) has not been implemented")
|
fatalError("init(coder:) has not been implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override func layoutSubviews() {
|
||||||
|
super.layoutSubviews()
|
||||||
|
|
||||||
|
if !checkButton.isHidden {
|
||||||
|
valueTextViewTrailingConstraint?.constant = -.defaultSpacing * 2 - checkButton.frame.width
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private extension AccountFieldView {
|
private extension AccountFieldView {
|
||||||
|
|
Loading…
Reference in a new issue