Newer
Older
import DependencyInjection
public final class RestoreListController: UIViewController {
@Dependency private var hud: HUDType
@Dependency private var coordinator: RestoreCoordinating
lazy private var screenView = RestoreListView()
private let ndf: String
private let viewModel = RestoreListViewModel()
private var cancellables = Set<AnyCancellable>()
private var drawerCancellables = Set<AnyCancellable>()
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
public override func loadView() {
view = screenView
presentWarning()
}
public init(_ ndf: String) {
self.ndf = ndf
super.init(nibName: nil, bundle: nil)
}
public required init?(coder: NSCoder) { nil }
public override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
navigationController?.navigationBar.customize(translucent: true)
}
public override func viewDidLoad() {
super.viewDidLoad()
setupNavigationBar()
setupBindings()
}
private func setupNavigationBar() {
navigationItem.backButtonTitle = ""
let back = UIButton.back()
back.addTarget(self, action: #selector(didTapBack), for: .touchUpInside)
navigationItem.leftBarButtonItem = UIBarButtonItem(
customView: UIStackView(arrangedSubviews: [back])
)
}
private func setupBindings() {
.receive(on: DispatchQueue.main)
.sink { [hud] in hud.update(with: $0) }
.store(in: &cancellables)
.sink { [unowned self] in
coordinator.toRestore(using: ndf, with: $0, from: self)
}.store(in: &cancellables)
screenView.cancelButton
.publisher(for: .touchUpInside)
.sink { [unowned self] in didTapBack() }
.store(in: &cancellables)
screenView.driveButton
.publisher(for: .touchUpInside)
.sink { [unowned self] in
viewModel.didTapCloud(.drive, from: self)
}.store(in: &cancellables)
screenView.icloudButton
.publisher(for: .touchUpInside)
.sink { [unowned self] in
viewModel.didTapCloud(.icloud, from: self)
}.store(in: &cancellables)
screenView.dropboxButton
.publisher(for: .touchUpInside)
.sink { [unowned self] in
viewModel.didTapCloud(.dropbox, from: self)
}.store(in: &cancellables)
screenView.sftpButton
.publisher(for: .touchUpInside)
}
@objc private func didTapBack() {
navigationController?.popViewController(animated: true)
}
}
extension RestoreListController {
private func presentWarning() {
let actionButton = DrawerCapsuleButton(model: .init(
let drawer = DrawerController(with: [
DrawerText(
drawer.dismiss(animated: true) { [weak self] in
coordinator.toDrawer(drawer, from: self)