Merge pull request #2028 from Ranchero-Software/revert-2015-fix/remove-add-account-delegate
Revert "Removes AddAccountDismissDelegate"
This commit is contained in:
commit
8d77009c55
|
@ -20,6 +20,7 @@ class FeedWranglerAccountViewController: UITableViewController {
|
||||||
@IBOutlet weak var actionButton: UIButton!
|
@IBOutlet weak var actionButton: UIButton!
|
||||||
|
|
||||||
weak var account: Account?
|
weak var account: Account?
|
||||||
|
weak var delegate: AddAccountDismissDelegate?
|
||||||
|
|
||||||
override func viewDidLoad() {
|
override func viewDidLoad() {
|
||||||
super.viewDidLoad()
|
super.viewDidLoad()
|
||||||
|
@ -58,6 +59,7 @@ class FeedWranglerAccountViewController: UITableViewController {
|
||||||
|
|
||||||
@IBAction func cancel(_ sender: Any) {
|
@IBAction func cancel(_ sender: Any) {
|
||||||
dismiss(animated: true, completion: nil)
|
dismiss(animated: true, completion: nil)
|
||||||
|
delegate?.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
@IBAction func showHidePassword(_ sender: Any) {
|
@IBAction func showHidePassword(_ sender: Any) {
|
||||||
|
@ -118,7 +120,9 @@ class FeedWranglerAccountViewController: UITableViewController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
self.dismiss(animated: true, completion: nil)
|
self.dismiss(animated: true, completion: nil)
|
||||||
|
self.delegate?.dismiss()
|
||||||
|
|
||||||
} catch {
|
} catch {
|
||||||
self.showError(NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error"))
|
self.showError(NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error"))
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ class FeedbinAccountViewController: UITableViewController {
|
||||||
@IBOutlet weak var actionButton: UIButton!
|
@IBOutlet weak var actionButton: UIButton!
|
||||||
|
|
||||||
weak var account: Account?
|
weak var account: Account?
|
||||||
|
weak var delegate: AddAccountDismissDelegate?
|
||||||
|
|
||||||
override func viewDidLoad() {
|
override func viewDidLoad() {
|
||||||
super.viewDidLoad()
|
super.viewDidLoad()
|
||||||
|
@ -59,6 +60,7 @@ class FeedbinAccountViewController: UITableViewController {
|
||||||
|
|
||||||
@IBAction func cancel(_ sender: Any) {
|
@IBAction func cancel(_ sender: Any) {
|
||||||
dismiss(animated: true, completion: nil)
|
dismiss(animated: true, completion: nil)
|
||||||
|
delegate?.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
@IBAction func showHidePassword(_ sender: Any) {
|
@IBAction func showHidePassword(_ sender: Any) {
|
||||||
|
@ -116,6 +118,7 @@ class FeedbinAccountViewController: UITableViewController {
|
||||||
}
|
}
|
||||||
|
|
||||||
self.dismiss(animated: true, completion: nil)
|
self.dismiss(animated: true, completion: nil)
|
||||||
|
self.delegate?.dismiss()
|
||||||
} catch {
|
} catch {
|
||||||
self.showError(NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error"))
|
self.showError(NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error"))
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,8 @@ import Account
|
||||||
class LocalAccountViewController: UITableViewController {
|
class LocalAccountViewController: UITableViewController {
|
||||||
|
|
||||||
@IBOutlet weak var nameTextField: UITextField!
|
@IBOutlet weak var nameTextField: UITextField!
|
||||||
|
|
||||||
|
weak var delegate: AddAccountDismissDelegate?
|
||||||
|
|
||||||
override func viewDidLoad() {
|
override func viewDidLoad() {
|
||||||
super.viewDidLoad()
|
super.viewDidLoad()
|
||||||
|
@ -23,12 +25,14 @@ class LocalAccountViewController: UITableViewController {
|
||||||
|
|
||||||
@IBAction func cancel(_ sender: Any) {
|
@IBAction func cancel(_ sender: Any) {
|
||||||
dismiss(animated: true, completion: nil)
|
dismiss(animated: true, completion: nil)
|
||||||
|
delegate?.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
@IBAction func add(_ sender: Any) {
|
@IBAction func add(_ sender: Any) {
|
||||||
let account = AccountManager.shared.createAccount(type: .onMyMac)
|
let account = AccountManager.shared.createAccount(type: .onMyMac)
|
||||||
account.name = nameTextField.text
|
account.name = nameTextField.text
|
||||||
dismiss(animated: true, completion: nil)
|
dismiss(animated: true, completion: nil)
|
||||||
|
delegate?.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
|
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
|
||||||
|
|
|
@ -10,7 +10,11 @@ import Account
|
||||||
import UIKit
|
import UIKit
|
||||||
import RSCore
|
import RSCore
|
||||||
|
|
||||||
class AddAccountViewController: UITableViewController {
|
protocol AddAccountDismissDelegate: UIViewController {
|
||||||
|
func dismiss()
|
||||||
|
}
|
||||||
|
|
||||||
|
class AddAccountViewController: UITableViewController, AddAccountDismissDelegate {
|
||||||
|
|
||||||
@IBOutlet private weak var localAccountImageView: UIImageView!
|
@IBOutlet private weak var localAccountImageView: UIImageView!
|
||||||
@IBOutlet private weak var localAccountNameLabel: UILabel!
|
@IBOutlet private weak var localAccountNameLabel: UILabel!
|
||||||
|
@ -33,10 +37,14 @@ class AddAccountViewController: UITableViewController {
|
||||||
case 0:
|
case 0:
|
||||||
let navController = UIStoryboard.account.instantiateViewController(withIdentifier: "AddLocalAccountNavigationViewController") as! UINavigationController
|
let navController = UIStoryboard.account.instantiateViewController(withIdentifier: "AddLocalAccountNavigationViewController") as! UINavigationController
|
||||||
navController.modalPresentationStyle = .currentContext
|
navController.modalPresentationStyle = .currentContext
|
||||||
|
let addViewController = navController.topViewController as! LocalAccountViewController
|
||||||
|
addViewController.delegate = self
|
||||||
present(navController, animated: true)
|
present(navController, animated: true)
|
||||||
case 1:
|
case 1:
|
||||||
let navController = UIStoryboard.account.instantiateViewController(withIdentifier: "FeedbinAccountNavigationViewController") as! UINavigationController
|
let navController = UIStoryboard.account.instantiateViewController(withIdentifier: "FeedbinAccountNavigationViewController") as! UINavigationController
|
||||||
navController.modalPresentationStyle = .currentContext
|
navController.modalPresentationStyle = .currentContext
|
||||||
|
let addViewController = navController.topViewController as! FeedbinAccountViewController
|
||||||
|
addViewController.delegate = self
|
||||||
present(navController, animated: true)
|
present(navController, animated: true)
|
||||||
case 2:
|
case 2:
|
||||||
let addAccount = OAuthAccountAuthorizationOperation(accountType: .feedly)
|
let addAccount = OAuthAccountAuthorizationOperation(accountType: .feedly)
|
||||||
|
@ -46,6 +54,8 @@ class AddAccountViewController: UITableViewController {
|
||||||
case 3:
|
case 3:
|
||||||
let navController = UIStoryboard.account.instantiateViewController(withIdentifier: "FeedWranglerAccountNavigationViewController") as! UINavigationController
|
let navController = UIStoryboard.account.instantiateViewController(withIdentifier: "FeedWranglerAccountNavigationViewController") as! UINavigationController
|
||||||
navController.modalPresentationStyle = .currentContext
|
navController.modalPresentationStyle = .currentContext
|
||||||
|
let addViewController = navController.topViewController as! FeedWranglerAccountViewController
|
||||||
|
addViewController.delegate = self
|
||||||
present(navController, animated: true)
|
present(navController, animated: true)
|
||||||
default:
|
default:
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue