106 lines
2.9 KiB
Swift
106 lines
2.9 KiB
Swift
//
|
|
// AddFolderViewController.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Maurice Parker on 4/16/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import Account
|
|
import RSCore
|
|
|
|
class AddFolderViewController: UITableViewController, AddContainerViewControllerChild {
|
|
|
|
@IBOutlet private weak var nameTextField: UITextField!
|
|
@IBOutlet private weak var accountLabel: UILabel!
|
|
@IBOutlet private weak var accountPickerView: UIPickerView!
|
|
|
|
private var shouldDisplayPicker: Bool {
|
|
return accounts.count > 1
|
|
}
|
|
|
|
private var accounts: [Account]!
|
|
|
|
weak var delegate: AddContainerViewControllerChildDelegate?
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
accounts = AccountManager.shared.sortedActiveAccounts
|
|
|
|
nameTextField.delegate = self
|
|
nameTextField.becomeFirstResponder()
|
|
|
|
accountLabel.text = (accounts[0] as DisplayNameProvider).nameForDisplay
|
|
|
|
if shouldDisplayPicker {
|
|
accountPickerView.dataSource = self
|
|
accountPickerView.delegate = self
|
|
} else {
|
|
accountPickerView.isHidden = true
|
|
}
|
|
|
|
// I couldn't figure out the gap at the top of the UITableView, so I took a hammer to it.
|
|
tableView.contentInset = UIEdgeInsets(top: -28, left: 0, bottom: 0, right: 0)
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(textDidChange(_:)), name: UITextField.textDidChangeNotification, object: nameTextField)
|
|
|
|
}
|
|
|
|
func cancel() {
|
|
delegate?.processingDidEnd()
|
|
}
|
|
|
|
func add() {
|
|
let account = accounts[accountPickerView.selectedRow(inComponent: 0)]
|
|
if let folderName = nameTextField.text {
|
|
account.ensureFolder(with: folderName)
|
|
}
|
|
delegate?.processingDidEnd()
|
|
}
|
|
|
|
@objc func textDidChange(_ note: Notification) {
|
|
delegate?.readyToAdd(state: !(nameTextField.text?.isEmpty ?? false))
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
|
let defaultNumberOfRows = super.tableView(tableView, numberOfRowsInSection: section)
|
|
if section == 1 && !shouldDisplayPicker {
|
|
return defaultNumberOfRows - 1
|
|
}
|
|
|
|
return defaultNumberOfRows
|
|
}
|
|
}
|
|
|
|
extension AddFolderViewController: UIPickerViewDataSource, UIPickerViewDelegate {
|
|
|
|
func numberOfComponents(in pickerView: UIPickerView) ->Int {
|
|
return 1
|
|
}
|
|
|
|
func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
|
|
return accounts.count
|
|
}
|
|
|
|
func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
|
|
return (accounts[row] as DisplayNameProvider).nameForDisplay
|
|
}
|
|
|
|
func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
|
|
accountLabel.text = (accounts[row] as DisplayNameProvider).nameForDisplay
|
|
}
|
|
|
|
}
|
|
|
|
extension AddFolderViewController: UITextFieldDelegate {
|
|
|
|
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
|
|
textField.resignFirstResponder()
|
|
return true
|
|
}
|
|
|
|
}
|