Files
lockdown-iOS-mirror/LockdowniOS/EditDomainsViewController.swift

242 lines
8.4 KiB
Swift

//
// EditDomainsViewController.swift
// LockdownSandbox
//
// Created by Aliaksandr Dvoineu on 4.04.23.
//
import UIKit
import SwiftCSV
final class EditDomainsViewController: UIViewController {
// MARK: - Properties
var updateCompletion: (() -> ())?
private var didMakeChange = false
var customBlockedDomains: [(String, Bool)] = []
var selectedDomains: Dictionary<String, Bool> = [:] {
didSet {
if selectedDomains.filter({ $0.value == true }).count == 0 {
bottomMenu.middleButton.isEnabled = false
bottomMenu.rightButton.isEnabled = false
} else {
bottomMenu.middleButton.isEnabled = true
bottomMenu.rightButton.isEnabled = true
}
}
}
private var titleName = NSLocalizedString("Edit Domains", comment: "")
private lazy var navigationView: ConfiguredNavigationView = {
let view = ConfiguredNavigationView()
view.titleLabel.text = NSLocalizedString(titleName, comment: "")
view.leftNavButton.setTitle(NSLocalizedString("CLOSE", comment: ""), for: .normal)
view.leftNavButton.addTarget(self, action: #selector(closeButtonClicked), for: .touchUpInside)
return view
}()
private lazy var domainsLabel: UILabel = {
let label = UILabel()
label.text = NSLocalizedString("Domains", comment: "")
label.textColor = .label
label.font = fontBold18
return label
}()
private lazy var bottomMenu: BottomMenu = {
let view = BottomMenu()
view.leftButton.addTarget(self, action: #selector(selectAllddDomains), for: .touchUpInside)
view.middleButton.addTarget(self, action: #selector(moveToList), for: .touchUpInside)
view.middleButton.isHidden = true
view.middleButton.isEnabled = false
view.rightButton.addTarget(self, action: #selector(deleteDomains), for: .touchUpInside)
view.rightButton.isEnabled = false
return view
}()
private let customBlockedDomainsTableView = CustomTableView()
// MARK: - Lifecycle
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .secondarySystemBackground
if UserDefaults.hasSeenAdvancedPaywall || UserDefaults.hasSeenAnonymousPaywall || UserDefaults.hasSeenUniversalPaywall {
bottomMenu.middleButton.isHidden = false }
configureDomainsTableView()
configureUI()
}
// MARK: - Configure UI
private func configureUI() {
view.addSubview(bottomMenu)
bottomMenu.anchors.bottom.pin()
bottomMenu.anchors.height.equal(60)
bottomMenu.anchors.leading.pin()
bottomMenu.anchors.trailing.pin()
}
private func configureDomainsTableView() {
view.addSubview(navigationView)
navigationView.anchors.leading.pin()
navigationView.anchors.trailing.pin()
navigationView.anchors.top.safeAreaPin()
addTableView(customBlockedDomainsTableView) { tableView in
tableView.anchors.top.spacing(24, to: navigationView.anchors.bottom)
tableView.anchors.leading.pin()
tableView.anchors.trailing.pin()
tableView.anchors.bottom.pin(inset: 60)
}
reloadCustomBlockedDomains()
}
}
// MARK: - Functions
private extension EditDomainsViewController {
func reloadCustomBlockedDomains() {
customBlockedDomainsTableView.clear()
customBlockedDomains = {
let lists = getUserBlockedDomains()
return lists.sorted(by: { $0.key < $1.key }).map { (key, value) -> (String, Bool) in
if let status = value as? NSNumber {
return (key, status.boolValue)
} else {
return (key, false)
}
}
}()
createUserBlockedDomainsRows()
customBlockedDomainsTableView.reloadData()
updateLeftButton()
}
func createUserBlockedDomainsRows() {
let tableView = customBlockedDomainsTableView
tableView.separatorStyle = .singleLine
let tableTitle = domainsLabel
tableView.addHeader { view in
view.addSubview(tableTitle)
tableTitle.anchors.top.marginsPin()
tableTitle.anchors.leading.marginsPin()
tableTitle.anchors.bottom.marginsPin()
}
for (domain, isBlocked) in customBlockedDomains {
let blockListView = EditDomainsCell()
blockListView.contents = .userBlocked(
domain: domain,
isSelected: self.selectedDomains[domain] ?? false,
isBlocked: isBlocked
)
let cell = tableView.addRow { (contentView) in
contentView.addSubview(blockListView)
blockListView.anchors.edges.pin()
}.onSelect { [unowned blockListView, unowned self] in
self.didMakeChange = true
let isChecked = self.selectedDomains[domain] ?? false
blockListView.contents = .userBlocked(
domain: domain,
isSelected: !isChecked,
isBlocked: isBlocked
)
self.selectedDomains[domain] = !isChecked
self.updateLeftButton()
}
cell.accessoryType = .none
}
}
private func isAllDomainSelected() -> Bool {
guard !customBlockedDomains.isEmpty else { return false }
for (domain, _) in customBlockedDomains {
if (selectedDomains[domain] ?? false) == false {
return false
}
}
return true
}
@objc func closeButtonClicked() {
updateCompletion?()
navigationController?.popViewController(animated: true)
}
@objc func selectAllddDomains() {
let wasAllSelected = isAllDomainSelected()
for (domain, _) in customBlockedDomains {
selectedDomains[domain] = !wasAllSelected
}
reloadCustomBlockedDomains()
updateLeftButton()
}
@objc func moveToList() {
let sortedDomains = selectedDomains.filter({ $0.value == true })
let vc = MoveToListViewController()
vc.selectedDomains = sortedDomains
vc.moveToListCompletion = { [unowned self] in
self.refreshSelectedDomainsAndReloadCustomBlockedDomains()
}
present(vc, animated: true)
}
@objc func deleteDomains() {
let alert = UIAlertController(title: NSLocalizedString("Delete Entries?", comment: ""),
message: NSLocalizedString("Are you sure you want to remove these domains?", comment: ""),
preferredStyle: .alert)
alert.addAction(UIAlertAction(title: NSLocalizedString("No, Return", comment: ""),
style: UIAlertAction.Style.default,
handler: nil))
alert.addAction(UIAlertAction(title: NSLocalizedString("Yes, Delete", comment: ""),
style: UIAlertAction.Style.destructive,
handler: { [weak self] (_) in
guard let self else { return }
let sortedDomains = self.selectedDomains.filter({ $0.value == true })
for domain in sortedDomains.keys {
deleteUserBlockedDomain(domain: domain)
}
self.refreshSelectedDomainsAndReloadCustomBlockedDomains()
}))
self.present(alert, animated: true, completion: nil)
}
private func refreshSelectedDomainsAndReloadCustomBlockedDomains() {
let sortedDomains = self.selectedDomains.filter { $0.value == false }
self.selectedDomains = sortedDomains
self.reloadCustomBlockedDomains()
}
private func updateLeftButton() {
bottomMenu.leftButton.setTitle(
isAllDomainSelected() ? NSLocalizedString("Deselect All", comment: "") : NSLocalizedString("Select All", comment: ""),
for: .normal
)
bottomMenu.leftButton.isEnabled = !customBlockedDomains.isEmpty
}
}