|
| 1 | +// |
| 2 | +// AddCustomListViewController.swift |
| 3 | +// MullvadVPN |
| 4 | +// |
| 5 | +// Created by Jon Petersson on 2024-02-14. |
| 6 | +// Copyright © 2024 Mullvad VPN AB. All rights reserved. |
| 7 | +// |
| 8 | + |
| 9 | +import Combine |
| 10 | +import UIKit |
| 11 | + |
| 12 | +class AddCustomListViewController: UITableViewController { |
| 13 | +// private let interactor: EditAccessMethodInteractorProtocol |
| 14 | + private let subject: CurrentValueSubject<CustomListViewModel, Never> |
| 15 | + private var cancellables = Set<AnyCancellable>() |
| 16 | + private var dataSource: CustomListDataSource? |
| 17 | + |
| 18 | + private lazy var cellConfiguration: CustomListCellConfiguration = { |
| 19 | + return CustomListCellConfiguration(tableView: tableView, subject: subject) |
| 20 | + }() |
| 21 | + |
| 22 | + lazy var saveBarButton: UIBarButtonItem = { |
| 23 | + let barButtonItem = UIBarButtonItem( |
| 24 | + title: NSLocalizedString("SAVE_NAVIGATION_BUTTON", tableName: "CustomLists", value: "Create", comment: ""), |
| 25 | + primaryAction: UIAction { [weak self] _ in |
| 26 | + self?.onSave() |
| 27 | + } |
| 28 | + ) |
| 29 | + barButtonItem.style = .done |
| 30 | + return barButtonItem |
| 31 | + }() |
| 32 | + |
| 33 | +// weak var delegate: MethodSettingsViewControllerDelegate? |
| 34 | + |
| 35 | + init( |
| 36 | + subject: CurrentValueSubject<CustomListViewModel, Never> |
| 37 | +// interactor: EditAccessMethodInteractorProtocol |
| 38 | + ) { |
| 39 | + self.subject = subject |
| 40 | +// self.interactor = interactor |
| 41 | + |
| 42 | + super.init(style: .insetGrouped) |
| 43 | + } |
| 44 | + |
| 45 | + required init?(coder: NSCoder) { |
| 46 | + fatalError("init(coder:) has not been implemented") |
| 47 | + } |
| 48 | + |
| 49 | + override func viewDidLoad() { |
| 50 | + super.viewDidLoad() |
| 51 | + |
| 52 | + view.directionalLayoutMargins = UIMetrics.contentLayoutMargins |
| 53 | + view.backgroundColor = .secondaryColor |
| 54 | + |
| 55 | + navigationItem.rightBarButtonItem = saveBarButton |
| 56 | + isModalInPresentation = true |
| 57 | + |
| 58 | + configureTableView() |
| 59 | + configureDataSource() |
| 60 | + } |
| 61 | + |
| 62 | + // MARK: - UITableViewDelegate |
| 63 | + |
| 64 | + override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { |
| 65 | + UIMetrics.SettingsCell.customListsCellHeight |
| 66 | + } |
| 67 | + |
| 68 | + override func tableView(_ tableView: UITableView, shouldHighlightRowAt indexPath: IndexPath) -> Bool { |
| 69 | + guard let itemIdentifier = dataSource?.itemIdentifier(for: indexPath) else { return false } |
| 70 | + return itemIdentifier.isSelectable |
| 71 | + } |
| 72 | + |
| 73 | + override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { |
| 74 | + tableView.deselectRow(at: indexPath, animated: false) |
| 75 | + |
| 76 | + let itemIdentifier = dataSource?.itemIdentifier(for: indexPath) |
| 77 | + |
| 78 | + switch itemIdentifier { |
| 79 | + case .locations: |
| 80 | + showLocations() |
| 81 | + default: |
| 82 | + break |
| 83 | + } |
| 84 | + } |
| 85 | + |
| 86 | + // MARK: - Pickers handling |
| 87 | + |
| 88 | + private func showLocations() { |
| 89 | + view.endEditing(false) |
| 90 | +// delegate?.controllerShouldShowProtocolPicker(self) |
| 91 | + } |
| 92 | + |
| 93 | + // MARK: - Data source handling |
| 94 | + |
| 95 | + private func configureDataSource() { |
| 96 | + tableView.registerReusableViews(from: CustomListItemIdentifier.CellIdentifier.self) |
| 97 | + |
| 98 | + dataSource = CustomListDataSource( |
| 99 | + tableView: tableView, |
| 100 | + cellProvider: { [weak self] _, indexPath, itemIdentifier in |
| 101 | + guard let self else { return nil } |
| 102 | + |
| 103 | + return cellConfiguration.dequeueCell( |
| 104 | + at: indexPath, |
| 105 | + for: itemIdentifier, |
| 106 | + validationErrors: [.name] |
| 107 | + ) |
| 108 | + } |
| 109 | + ) |
| 110 | + |
| 111 | + dataSource?.update( |
| 112 | + newValue: subject.value, |
| 113 | + animated: false |
| 114 | + ) |
| 115 | + |
| 116 | + |
| 117 | + |
| 118 | +// subject.withPreviousValue() |
| 119 | +// .sink { [weak self] previousValue, newValue in |
| 120 | +// print(newValue) |
| 121 | +// } |
| 122 | +// .store(in: &cancellables) |
| 123 | + } |
| 124 | + |
| 125 | + private func configureTableView() { |
| 126 | + tableView.delegate = self |
| 127 | + tableView.backgroundColor = .secondaryColor |
| 128 | + tableView.separatorColor = .secondaryColor |
| 129 | +// tableView.separatorInset.left = UIMetrics.SettingsCell.apiAccessInsetLayoutMargins.leading |
| 130 | + } |
| 131 | + |
| 132 | + // MARK: - Misc |
| 133 | + |
| 134 | + private func onSave() { |
| 135 | +// interactor.saveAccessMethod() |
| 136 | +// |
| 137 | +// DispatchQueue.main.asyncAfter(deadline: .now() + transitionDelay.timeInterval) { [weak self] in |
| 138 | +// guard |
| 139 | +// let self, |
| 140 | +// let accessMethod = try? subject.value.intoPersistentAccessMethod() |
| 141 | +// else { return } |
| 142 | +// |
| 143 | +// delegate?.accessMethodDidSave(accessMethod) |
| 144 | +// } |
| 145 | + } |
| 146 | +} |
0 commit comments