import UIKit import Shared import Combine import Defaults import Dependencies import AppResources import AppNavigation import DrawerFeature import ScrollViewController public final class SettingsDeleteController: UIViewController { @Dependency(\.navigator) var navigator @KeyObject(.username, defaultValue: "") var username: String private lazy var screenView = SettingsDeleteView() private lazy var scrollViewController = ScrollViewController() private let viewModel = SettingsDeleteViewModel() private var cancellables = Set<AnyCancellable>() private var drawerCancellables = Set<AnyCancellable>() public override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) navigationController?.navigationBar .customize(backgroundColor: Asset.neutralWhite.color) } public override func viewDidLoad() { super.viewDidLoad() setupScrollView() setupBindings() screenView.update(username: username) screenView.setInfoClosure { [weak self] in guard let self else { return } self.presentInfo( title: Localized.Settings.Delete.Info.title, subtitle: Localized.Settings.Delete.Info.subtitle ) } } private func setupScrollView() { addChild(scrollViewController) view.addSubview(scrollViewController.view) scrollViewController.view.snp.makeConstraints { $0.edges.equalToSuperview() } scrollViewController.didMove(toParent: self) scrollViewController.contentView = screenView scrollViewController.scrollView.backgroundColor = Asset.neutralWhite.color } private func setupBindings() { screenView .cancelButton .publisher(for: .touchUpInside) .receive(on: DispatchQueue.main) .sink { [unowned self] in dismiss(animated: true) }.store(in: &cancellables) screenView .inputField .textPublisher .sink { [unowned self] in screenView.update( status: $0 == username ? .valid("") : .invalid("") ) }.store(in: &cancellables) screenView .confirmButton .publisher(for: .touchUpInside) .sink { [unowned self] in viewModel.didTapDelete() }.store(in: &cancellables) screenView .cancelButton .publisher(for: .touchUpInside) .sink { [unowned self] in navigationController?.popViewController(animated: true) }.store(in: &cancellables) } private func presentInfo(title: String, subtitle: String) { let actionButton = CapsuleButton() actionButton.set( style: .seeThrough, title: Localized.Settings.InfoDrawer.action ) actionButton .publisher(for: .touchUpInside) .receive(on: DispatchQueue.main) .sink { [unowned self] in navigator.perform(DismissModal(from: self)) { [weak self] in guard let self else { return } self.drawerCancellables.removeAll() } }.store(in: &drawerCancellables) navigator.perform(PresentDrawer(items: [ DrawerText( font: Fonts.Mulish.bold.font(size: 26.0), text: title, color: Asset.neutralActive.color, alignment: .left, spacingAfter: 19 ), DrawerText( font: Fonts.Mulish.regular.font(size: 16.0), text: subtitle, color: Asset.neutralBody.color, alignment: .left, lineHeightMultiple: 1.1, spacingAfter: 37 ), DrawerStack(views: [ actionButton, FlexibleSpace() ]) ], isDismissable: true, from: self)) } }