|
| 1 | +// |
| 2 | +// StepsViewController.swift |
| 3 | +// Lockdown |
| 4 | +// |
| 5 | +// Created by Pavel Vilbik on 21.06.23. |
| 6 | +// Copyright © 2023 Confirmed Inc. All rights reserved. |
| 7 | +// |
| 8 | + |
| 9 | +import UIKit |
| 10 | + |
| 11 | +class StepsViewController: UIViewController, StepsViewProtocol { |
| 12 | + |
| 13 | + // MARK: - models |
| 14 | + var viewModel: StepsViewModel! |
| 15 | + |
| 16 | + // MARK: - views |
| 17 | + |
| 18 | + private lazy var navigationView: ConfiguredNavigationView = { |
| 19 | + let view = ConfiguredNavigationView(accentColor: .darkText) |
| 20 | + view.leftNavButton.setImage(UIImage(systemName: "chevron.left"), for: .normal) |
| 21 | + view.leftNavButton.addTarget(self, action: #selector(backButtonClicked), for: .touchUpInside) |
| 22 | + view.rightNavButton.setTitle(NSLocalizedString("Skip", comment: ""), for: .normal) |
| 23 | + view.rightNavButton.addTarget(self, action: #selector(skipClicked), for: .touchUpInside) |
| 24 | + return view |
| 25 | + }() |
| 26 | + |
| 27 | + private lazy var stepsView: StepsView = { |
| 28 | + let view = StepsView() |
| 29 | + view.steps = viewModel.stepsCount |
| 30 | + return view |
| 31 | + }() |
| 32 | + |
| 33 | + private lazy var actionButton: UIButton = { |
| 34 | + let button = UIButton() |
| 35 | + button.anchors.height.equal(56) |
| 36 | + button.backgroundColor = .tunnelsBlue |
| 37 | + button.layer.cornerRadius = 29 |
| 38 | + button.titleLabel?.font = .semiboldLockdownFont(size: 17) |
| 39 | + button.addTarget(self, action: #selector(actionClicked), for: .touchUpInside) |
| 40 | + button.setTitle(viewModel.actionTitle, for: .normal) |
| 41 | + return button |
| 42 | + }() |
| 43 | + |
| 44 | + private var contentView: UIView? |
| 45 | + |
| 46 | + // MARK: - life cycle |
| 47 | + override func viewDidLoad() { |
| 48 | + super.viewDidLoad() |
| 49 | + |
| 50 | + configureUI() |
| 51 | + viewModel.bind(self) |
| 52 | + } |
| 53 | + |
| 54 | + // MARK: - Configure UI |
| 55 | + private func configureUI() { |
| 56 | + view.backgroundColor = .white |
| 57 | + |
| 58 | + view.addSubview(navigationView) |
| 59 | + navigationView.anchors.leading.pin() |
| 60 | + navigationView.anchors.trailing.pin() |
| 61 | + navigationView.anchors.top.safeAreaPin() |
| 62 | + |
| 63 | + view.addSubview(stepsView) |
| 64 | + stepsView.anchors.top.spacing(0, to: navigationView.anchors.bottom) |
| 65 | + stepsView.anchors.leading.pin(inset: 18) |
| 66 | + stepsView.anchors.trailing.pin(inset: 18) |
| 67 | + |
| 68 | + view.addSubview(actionButton) |
| 69 | + actionButton.anchors.leading.pin(inset: 24) |
| 70 | + actionButton.anchors.trailing.pin(inset: 24) |
| 71 | + actionButton.anchors.bottom.safeAreaPin(inset: 14) |
| 72 | + |
| 73 | + view.addGestureRecognizer( |
| 74 | + UITapGestureRecognizer(target: self, action: #selector(tapped)) |
| 75 | + ) |
| 76 | + } |
| 77 | + |
| 78 | + func changeContent() { |
| 79 | + contentView?.removeFromSuperview() |
| 80 | + |
| 81 | + let staticTableView = viewModel.stepViewModel.contentView() |
| 82 | + addTableView(staticTableView) { tableView in |
| 83 | + staticTableView.anchors.top.spacing(0, to: stepsView.anchors.bottom) |
| 84 | + staticTableView.anchors.leading.pin() |
| 85 | + staticTableView.anchors.trailing.pin() |
| 86 | + staticTableView.anchors.bottom.spacing(18, to: actionButton.anchors.top) |
| 87 | + } |
| 88 | + contentView = staticTableView |
| 89 | + stepsView.currentStep = viewModel.currentStepIndex |
| 90 | + navigationView.rightNavButton.isHidden = !viewModel.showSkipButton |
| 91 | + } |
| 92 | + |
| 93 | + func close(completion: (() -> Void)?) { |
| 94 | + dismiss(animated: true, completion: completion) |
| 95 | + } |
| 96 | + |
| 97 | + func showSelectCountry(with viewModel: SelectCountryViewModelProtocol) { |
| 98 | + let viewController = SelectCountryViewController() |
| 99 | + viewController.viewModel = viewModel |
| 100 | + present(viewController, animated: true) |
| 101 | + } |
| 102 | + |
| 103 | + // MARK: - actions |
| 104 | + |
| 105 | + @objc private func backButtonClicked() { |
| 106 | + viewModel.backPressed() |
| 107 | + } |
| 108 | + |
| 109 | + @objc private func skipClicked() { |
| 110 | + viewModel.skipStep() |
| 111 | + } |
| 112 | + |
| 113 | + @objc private func actionClicked() { |
| 114 | + viewModel.performStepAction() |
| 115 | + } |
| 116 | + |
| 117 | + @objc private func tapped() { |
| 118 | + view.endEditing(true) |
| 119 | + } |
| 120 | +} |
0 commit comments