// PickerRow.swift // Eureka ( https://github.com/xmartlabs/Eureka ) // // Copyright (c) 2016 Xmartlabs SRL ( http://xmartlabs.com ) // // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import Foundation import UIKit // MARK: PickerCell open class _PickerCell : Cell, CellType, UIPickerViewDataSource, UIPickerViewDelegate where T: Equatable { @IBOutlet public weak var picker: UIPickerView! fileprivate var pickerRow: _PickerRow? { return row as? _PickerRow } public required init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { let pickerView = UIPickerView() self.picker = pickerView self.picker?.translatesAutoresizingMaskIntoConstraints = false super.init(style: style, reuseIdentifier: reuseIdentifier) self.contentView.addSubview(pickerView) self.contentView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|-0-[picker]-0-|", options: [], metrics: nil, views: ["picker": pickerView])) self.contentView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|-0-[picker]-0-|", options: [], metrics: nil, views: ["picker": pickerView])) } required public init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) } open override func setup() { super.setup() accessoryType = .none editingAccessoryType = .none height = { UITableView.automaticDimension } picker.delegate = self picker.dataSource = self } open override func update() { super.update() textLabel?.text = nil detailTextLabel?.text = nil picker.reloadAllComponents() } deinit { picker?.delegate = nil picker?.dataSource = nil } open var pickerTextAttributes: [NSAttributedString.Key: Any]? open func numberOfComponents(in pickerView: UIPickerView) -> Int { return 1 } open func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { return pickerRow?.options.count ?? 0 } open func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? { return pickerRow?.displayValueFor?(pickerRow?.options[row]) } open func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) { if let picker = pickerRow, !picker.options.isEmpty { picker.value = picker.options[row] } } open func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? { guard let pickerTextAttributes = pickerTextAttributes, let text = self.pickerView(pickerView, titleForRow: row, forComponent: component) else { return nil } return NSAttributedString(string: text, attributes: pickerTextAttributes) } } open class PickerCell : _PickerCell where T: Equatable { required public init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) } public required init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) } open override func update() { super.update() if let selectedValue = pickerRow?.value, let index = pickerRow?.options.firstIndex(of: selectedValue) { picker.selectRow(index, inComponent: 0, animated: true) } } } // MARK: PickerRow open class _PickerRow : Row> where T: Equatable { open var options = [T]() required public init(tag: String?) { super.init(tag: tag) } } /// A generic row where the user can pick an option from a picker view public final class PickerRow: _PickerRow, RowType where T: Equatable { required public init(tag: String?) { super.init(tag: tag) } }