Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make account number in welcome view copyable #7755

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ios/MullvadVPN/Classes/AccessbilityIdentifier.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public enum AccessibilityIdentifier: Equatable {
case revokedDeviceLoginButton
case dnsSettingsEditButton
case infoButton
case copyButton
case learnAboutPrivacyButton
case logOutDeviceConfirmButton
case logOutDeviceCancelButton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import UIKit
protocol WelcomeContentViewDelegate: AnyObject, Sendable {
func didTapPurchaseButton(welcomeContentView: WelcomeContentView, button: AppButton)
func didTapInfoButton(welcomeContentView: WelcomeContentView, button: UIButton)
func didTapCopyButton(welcomeContentView: WelcomeContentView, button: UIButton)
}

struct WelcomeViewModel: Sendable {
Expand All @@ -19,6 +20,8 @@ struct WelcomeViewModel: Sendable {
}

final class WelcomeContentView: UIView, Sendable {
private var revertCopyImageWorkItem: DispatchWorkItem?

private let titleLabel: UILabel = {
let label = UILabel()
label.font = .preferredFont(forTextStyle: .largeTitle, weight: .bold)
Expand Down Expand Up @@ -62,6 +65,14 @@ final class WelcomeContentView: UIView, Sendable {
return label
}()

private let copyButton: UIButton = {
let button = UIButton(type: .system)
button.setAccessibilityIdentifier(.copyButton)
button.tintColor = .white
button.setContentHuggingPriority(.defaultHigh, for: .horizontal)
return button
}()

private let deviceNameLabel: UILabel = {
let label = UILabel()
label.adjustsFontForContentSizeCategory = true
Expand Down Expand Up @@ -124,6 +135,14 @@ final class WelcomeContentView: UIView, Sendable {
return stackView
}()

private let accountRowStackView: UIStackView = {
let stackView = UIStackView()
stackView.axis = .horizontal
stackView.distribution = .fill
stackView.spacing = UIMetrics.padding8
return stackView
}()

private let deviceRowStackView: UIStackView = {
let stackView = UIStackView()
stackView.axis = .horizontal
Expand Down Expand Up @@ -175,12 +194,16 @@ final class WelcomeContentView: UIView, Sendable {
}

private func configureUI() {
accountRowStackView.addArrangedSubview(accountNumberLabel)
accountRowStackView.addArrangedSubview(copyButton)
accountRowStackView.addArrangedSubview(UIView()) // To push content to the left.

textsStackView.addArrangedSubview(titleLabel)
textsStackView.setCustomSpacing(UIMetrics.padding8, after: titleLabel)
textsStackView.addArrangedSubview(subtitleLabel)
textsStackView.setCustomSpacing(UIMetrics.padding16, after: subtitleLabel)
textsStackView.addArrangedSubview(accountNumberLabel)
textsStackView.setCustomSpacing(UIMetrics.padding16, after: accountNumberLabel)
textsStackView.addArrangedSubview(accountRowStackView)
textsStackView.setCustomSpacing(UIMetrics.padding16, after: accountRowStackView)

deviceRowStackView.addArrangedSubview(deviceNameLabel)
deviceRowStackView.setCustomSpacing(UIMetrics.padding8, after: deviceNameLabel)
Expand All @@ -196,6 +219,8 @@ final class WelcomeContentView: UIView, Sendable {
addSubview(textsStackView)
addSubview(buttonsStackView)
addConstraints()

showCheckmark(false)
}

private func addConstraints() {
Expand All @@ -209,7 +234,7 @@ final class WelcomeContentView: UIView, Sendable {
}

private func addActions() {
[purchaseButton, infoButton].forEach {
[purchaseButton, infoButton, copyButton].forEach {
$0.addTarget(self, action: #selector(tapped(button:)), for: .touchUpInside)
}
}
Expand All @@ -220,7 +245,40 @@ final class WelcomeContentView: UIView, Sendable {
delegate?.didTapPurchaseButton(welcomeContentView: self, button: button)
case AccessibilityIdentifier.infoButton.asString:
delegate?.didTapInfoButton(welcomeContentView: self, button: button)
case AccessibilityIdentifier.copyButton.asString:
didTapCopyAccountNumber()
default: return
}
}

private func showCheckmark(_ showCheckmark: Bool) {
if showCheckmark {
let tickIcon = UIImage(named: "IconTick")

copyButton.setImage(tickIcon, for: .normal)
copyButton.tintColor = .successColor
} else {
let copyIcon = UIImage(named: "IconCopy")

copyButton.setImage(copyIcon, for: .normal)
copyButton.tintColor = .white
}
}

@objc private func didTapCopyAccountNumber() {
let delayedWorkItem = DispatchWorkItem { [weak self] in
self?.showCheckmark(false)
}

revertCopyImageWorkItem?.cancel()
revertCopyImageWorkItem = delayedWorkItem

showCheckmark(true)
delegate?.didTapCopyButton(welcomeContentView: self, button: copyButton)

DispatchQueue.main.asyncAfter(
deadline: .now() + .seconds(2),
execute: delayedWorkItem
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,8 @@ extension WelcomeViewController: @preconcurrency WelcomeContentViewDelegate {
func didTapPurchaseButton(welcomeContentView: WelcomeContentView, button: AppButton) {
delegate?.didRequestToViewPurchaseOptions(accountNumber: interactor.accountNumber)
}

func didTapCopyButton(welcomeContentView: WelcomeContentView, button: UIButton) {
UIPasteboard.general.string = interactor.accountNumber
}
}
Loading