blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
5.0 KiB
129 lines
5.0 KiB
// Copyright SIX DAY LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
protocol AccountsCoordinatorDelegate: class {
|
|
func didCancel(in coordinator: AccountsCoordinator)
|
|
func didSelectAccount(account: Account, in coordinator: AccountsCoordinator)
|
|
func didAddAccount(account: Account, in coordinator: AccountsCoordinator)
|
|
func didDeleteAccount(account: Account, in coordinator: AccountsCoordinator)
|
|
}
|
|
|
|
class AccountsCoordinator: Coordinator {
|
|
|
|
let navigationController: UINavigationController
|
|
let keystore: Keystore
|
|
var coordinators: [Coordinator] = []
|
|
|
|
lazy var accountsViewController: AccountsViewController = {
|
|
let controller = AccountsViewController(keystore: keystore)
|
|
controller.navigationItem.leftBarButtonItem = UIBarButtonItem(barButtonSystemItem: .done, target: self, action: #selector(dismiss))
|
|
controller.navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(add))
|
|
controller.allowsAccountDeletion = true
|
|
controller.delegate = self
|
|
return controller
|
|
}()
|
|
|
|
weak var delegate: AccountsCoordinatorDelegate?
|
|
|
|
init(
|
|
navigationController: UINavigationController,
|
|
keystore: Keystore
|
|
) {
|
|
self.navigationController = navigationController
|
|
self.navigationController.modalPresentationStyle = .formSheet
|
|
self.keystore = keystore
|
|
}
|
|
|
|
func start() {
|
|
navigationController.pushViewController(accountsViewController, animated: false)
|
|
}
|
|
|
|
@objc func dismiss() {
|
|
delegate?.didCancel(in: self)
|
|
}
|
|
|
|
@objc func add() {
|
|
showCreateWallet()
|
|
}
|
|
|
|
func showCreateWallet() {
|
|
let coordinator = WalletCoordinator(keystore: keystore)
|
|
coordinator.delegate = self
|
|
addCoordinator(coordinator)
|
|
coordinator.start(.welcome)
|
|
navigationController.present(coordinator.navigationController, animated: true, completion: nil)
|
|
}
|
|
|
|
func showInfoSheet(for account: Account, sender: UIView) {
|
|
let controller = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
|
|
controller.popoverPresentationController?.sourceView = sender
|
|
controller.popoverPresentationController?.sourceRect = sender.centerRect
|
|
let actionTitle = NSLocalizedString("wallets.backup.alertSheet.title", value: "Backup Keystore", comment: "The title of the backup button in the wallet's action sheet")
|
|
let action = UIAlertAction(title: actionTitle, style: .default) { _ in
|
|
let coordinator = BackupCoordinator(
|
|
navigationController: self.navigationController,
|
|
keystore: self.keystore,
|
|
account: account
|
|
)
|
|
coordinator.delegate = self
|
|
coordinator.start()
|
|
self.addCoordinator(coordinator)
|
|
}
|
|
let copyAction = UIAlertAction(
|
|
title: NSLocalizedString("Copy Address", value: "Copy Address", comment: ""),
|
|
style: .default
|
|
) { _ in
|
|
UIPasteboard.general.string = account.address.address
|
|
}
|
|
let cancelAction = UIAlertAction(title: NSLocalizedString("Cancel", value: "Cancel", comment: ""), style: .cancel) { _ in }
|
|
controller.addAction(action)
|
|
controller.addAction(copyAction)
|
|
controller.addAction(cancelAction)
|
|
navigationController.present(controller, animated: true, completion: nil)
|
|
}
|
|
}
|
|
|
|
extension AccountsCoordinator: AccountsViewControllerDelegate {
|
|
func didSelectAccount(account: Account, in viewController: AccountsViewController) {
|
|
delegate?.didSelectAccount(account: account, in: self)
|
|
}
|
|
|
|
func didDeleteAccount(account: Account, in viewController: AccountsViewController) {
|
|
delegate?.didDeleteAccount(account: account, in: self)
|
|
}
|
|
|
|
func didSelectInfoForAccount(account: Account, sender: UIView, in viewController: AccountsViewController) {
|
|
showInfoSheet(for: account, sender: sender)
|
|
}
|
|
}
|
|
|
|
extension AccountsCoordinator: WalletCoordinatorDelegate {
|
|
func didFinish(with account: Account, in coordinator: WalletCoordinator) {
|
|
delegate?.didAddAccount(account: account, in: self)
|
|
accountsViewController.fetch()
|
|
coordinator.navigationController.dismiss(animated: true, completion: nil)
|
|
removeCoordinator(coordinator)
|
|
}
|
|
|
|
func didFail(with error: Error, in coordinator: WalletCoordinator) {
|
|
coordinator.navigationController.dismiss(animated: true, completion: nil)
|
|
removeCoordinator(coordinator)
|
|
}
|
|
|
|
func didCancel(in coordinator: WalletCoordinator) {
|
|
coordinator.navigationController.dismiss(animated: true, completion: nil)
|
|
removeCoordinator(coordinator)
|
|
}
|
|
}
|
|
|
|
extension AccountsCoordinator: BackupCoordinatorDelegate {
|
|
func didCancel(coordinator: BackupCoordinator) {
|
|
removeCoordinator(coordinator)
|
|
}
|
|
|
|
func didFinish(account: Account, in coordinator: BackupCoordinator) {
|
|
removeCoordinator(coordinator)
|
|
}
|
|
}
|
|
|