Git Product home page Git Product logo

eureka's Introduction

Eureka: Elegant form builder in Swift

Build status Platform iOS Swift 5 compatible Carthage compatible CocoaPods compatible License: MIT codebeat badge

Made with ❤️ by XMARTLABS. This is the re-creation of XLForm in Swift.

简体中文

Overview

Contents

For more information look at our blog post that introduces Eureka.

Requirements (for latest release)

  • Xcode 11+
  • Swift 5.0+

Example project

You can clone and run the Example project to see examples of most of Eureka's features.

Usage

How to create a form

By extending FormViewController you can then simply add sections and rows to the form variable.

import Eureka

class MyFormViewController: FormViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        form +++ Section("Section1")
            <<< TextRow(){ row in
                row.title = "Text Row"
                row.placeholder = "Enter text here"
            }
            <<< PhoneRow(){
                $0.title = "Phone Row"
                $0.placeholder = "And numbers here"
            }
        +++ Section("Section2")
            <<< DateRow(){
                $0.title = "Date Row"
                $0.value = Date(timeIntervalSinceReferenceDate: 0)
            }
    }
}

In the example we create two sections with standard rows, the result is this:

Screenshot of Custom Cells

You could create a form by just setting up the form property by yourself without extending from FormViewController but this method is typically more convenient.

Configuring the keyboard navigation accesory

To change the behaviour of this you should set the navigation options of your controller. The FormViewController has a navigationOptions variable which is an enum and can have one or more of the following values:

  • disabled: no view at all
  • enabled: enable view at the bottom
  • stopDisabledRow: if the navigation should stop when the next row is disabled
  • skipCanNotBecomeFirstResponderRow: if the navigation should skip the rows that return false to canBecomeFirstResponder()

The default value is enabled & skipCanNotBecomeFirstResponderRow

To enable smooth scrolling to off-screen rows, enable it via the animateScroll property. By default, the FormViewController jumps immediately between rows when the user hits the next or previous buttons in the keyboard navigation accesory, including when the next row is off screen.

To set the amount of space between the keyboard and the highlighted row following a navigation event, set the rowKeyboardSpacing property. By default, when the form scrolls to an offscreen view no space will be left between the top of the keyboard and the bottom of the row.

class MyFormViewController: FormViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        form = ...

	// Enables the navigation accessory and stops navigation when a disabled row is encountered
	navigationOptions = RowNavigationOptions.Enabled.union(.StopDisabledRow)
	// Enables smooth scrolling on navigation to off-screen rows
	animateScroll = true
	// Leaves 20pt of space between the keyboard and the highlighted row after scrolling to an off screen row
	rowKeyboardSpacing = 20
    }
}

If you want to change the whole navigation accessory view, you will have to override the navigationAccessoryView variable in your subclass of FormViewController.

Getting row values

The Row object holds a value of a specific type. For example, a SwitchRow holds a Bool value, while a TextRow holds a String value.

// Get the value of a single row
let row: TextRow? = form.rowBy(tag: "MyRowTag")
let value = row.value

// Get the value of all rows which have a Tag assigned
// The dictionary contains the 'rowTag':value pairs.
let valuesDictionary = form.values()

Operators

Eureka includes custom operators to make form creation easy:

+++       Add a section

form +++ Section()

// Chain it to add multiple Sections
form +++ Section("First Section") +++ Section("Another Section")

// Or use it with rows and get a blank section for free
form +++ TextRow()
     +++ TextRow()  // Each row will be on a separate section

<<<       Insert a row

form +++ Section()
        <<< TextRow()
        <<< DateRow()

// Or implicitly create the Section
form +++ TextRow()
        <<< DateRow()

+=        Append an array

// Append Sections into a Form
form += [Section("A"), Section("B"), Section("C")]

// Append Rows into a Section
section += [TextRow(), DateRow()]

Result builders

Eureka includes result builders to make form creation easy:

@SectionBuilder

// Section + Section
form = (Section("A") +++ {
    URLRow("UrlRow_f1") { $0.title = "Url" }
    if something {
        TwitterRow("TwitterRow_f2") { $0.title = "Twitter" }
    } else {
        TwitterRow("TwitterRow_f1") { $0.title = "Twitter" }
    }
    AccountRow("AccountRow_f1") { $0.title = "Account" }
})

// Form + Section
form +++ {
    if something {
        PhoneRow("PhoneRow_f1") { $0.title = "Phone" }
    } else {
        PhoneRow("PhoneRow_f2") { $0.title = "Phone" }
    }
    PasswordRow("PasswordRow_f1") { $0.title = "Password" }
}

@FormBuilder

@FormBuilder
var form: Form {
    Section("Section A") { section in
        section.tag = "Section_A"
    }
    if true {
        Section("Section B") { section in
            section.tag = "Section_B"
        }
    }
    NameRow("NameRow_f1") { $0.title = "Name" }
}

Using the callbacks

Eureka includes callbacks to change the appearance and behavior of a row.

Understanding Row and Cell

A Row is an abstraction Eureka uses which holds a value and contains the view Cell. The Cell manages the view and subclasses UITableViewCell.

Here is an example:

let row  = SwitchRow("SwitchRow") { row in      // initializer
                        row.title = "The title"
                    }.onChange { row in
                        row.title = (row.value ?? false) ? "The title expands when on" : "The title"
                        row.updateCell()
                    }.cellSetup { cell, row in
                        cell.backgroundColor = .lightGray
                    }.cellUpdate { cell, row in
                        cell.textLabel?.font = .italicSystemFont(ofSize: 18.0)
                }

Screenshot of Disabled Row

Callbacks list

  • onChange()

    Called when the value of a row changes. You might be interested in adjusting some parameters here or even make some other rows appear or disappear.

  • onCellSelection()

    Called each time the user taps on the row and it gets selected. Note that this will also get called for disabled rows so you should start your code inside this callback with something like guard !row.isDisabled else { return }

  • cellSetup()

    Called only once when the cell is first configured. Set permanent settings here.

  • cellUpdate()

    Called each time the cell appears on screen. You can change the appearance here using variables that may not be present on cellSetup().

  • onCellHighlightChanged()

    Called whenever the cell or any subview become or resign the first responder.

  • onRowValidationChanged()

    Called whenever the the validation errors associated with a row changes.

  • onExpandInlineRow()

    Called before expanding the inline row. Applies to rows conforming InlineRowType protocol.

  • onCollapseInlineRow()

    Called before collapsing the inline row. Applies to rows conforming InlineRowType protocol.

  • onPresent()

    Called by a row just before presenting another view controller. Applies to rows conforming PresenterRowType protocol. Use it to set up the presented controller.

Section Header and Footer

You can set a title String or a custom View as the header or footer of a Section.

String title

Section("Title")

Section(header: "Title", footer: "Footer Title")

Section(footer: "Footer Title")

Custom view

You can use a Custom View from a .xib file:

Section() { section in
    var header = HeaderFooterView<MyHeaderNibFile>(.nibFile(name: "MyHeaderNibFile", bundle: nil))

    // Will be called every time the header appears on screen
    header.onSetupView = { view, _ in
        // Commonly used to setup texts inside the view
        // Don't change the view hierarchy or size here!
    }
    section.header = header
}

Or a custom UIView created programmatically

Section(){ section in
    var header = HeaderFooterView<MyCustomUIView>(.class)
    header.height = {100}
    header.onSetupView = { view, _ in
        view.backgroundColor = .red
    }
    section.header = header
}

Or just build the view with a Callback

Section(){ section in
    section.header = {
          var header = HeaderFooterView<UIView>(.callback({
              let view = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
              view.backgroundColor = .red
              return view
          }))
          header.height = { 100 }
          return header
        }()
}

Dynamically hide and show rows (or sections)

Screenshot of Hidden Rows

In this case we are hiding and showing whole sections.

To accomplish this each row has a hidden variable of optional type Condition which can be set using a function or NSPredicate.

Hiding using a function condition

Using the function case of Condition:

Condition.function([String], (Form)->Bool)

The array of String to pass should contain the tags of the rows this row depends on. Each time the value of any of those rows changes the function is reevaluated. The function then takes the Form and returns a Bool indicating whether the row should be hidden or not. This the most powerful way of setting up the hidden property as it has no explicit limitations of what can be done.

form +++ Section()
            <<< SwitchRow("switchRowTag"){
                $0.title = "Show message"
            }
            <<< LabelRow(){

                $0.hidden = Condition.function(["switchRowTag"], { form in
                    return !((form.rowBy(tag: "switchRowTag") as? SwitchRow)?.value ?? false)
                })
                $0.title = "Switch is on!"
        }

Screenshot of Hidden Rows

public enum Condition {
    case function([String], (Form)->Bool)
    case predicate(NSPredicate)
}

Hiding using an NSPredicate

The hidden variable can also be set with a NSPredicate. In the predicate string you can reference values of other rows by their tags to determine if a row should be hidden or visible. This will only work if the values of the rows the predicate has to check are NSObjects (String and Int will work as they are bridged to their ObjC counterparts, but enums won't work). Why could it then be useful to use predicates when they are more limited? Well, they can be much simpler, shorter and readable than functions. Look at this example:

$0.hidden = Condition.predicate(NSPredicate(format: "$switchTag == false"))

And we can write it even shorter since Condition conforms to ExpressibleByStringLiteral:

$0.hidden = "$switchTag == false"

Note: we will substitute the value of the row whose tag is 'switchTag' instead of '$switchTag'

For all of this to work, all of the implicated rows must have a tag as the tag will identify them.

We can also hide a row by doing:

$0.hidden = true

as Condition conforms to ExpressibleByBooleanLiteral.

Not setting the hidden variable will leave the row always visible.

If you manually set the hidden (or disabled) condition after the form has been displayed you may have to call row.evaluateHidden() to force Eureka to reevaluate the new condition. See this FAQ section for more info.

Sections

For sections this works just the same. That means we can set up section hidden property to show/hide it dynamically.

Disabling rows

To disable rows, each row has an disabled variable which is also an optional Condition type property. This variable also works the same as the hidden variable so that it requires the rows to have a tag.

Note that if you want to disable a row permanently you can also set disabled variable to true.

List Sections

To display a list of options, Eureka includes a special section called SelectableSection. When creating one you need to pass the type of row to use in the options and the selectionType. The selectionType is an enum which can be either multipleSelection or singleSelection(enableDeselection: Bool) where the enableDeselection parameter determines if the selected rows can be deselected or not.

form +++ SelectableSection<ListCheckRow<String>>("Where do you live", selectionType: .singleSelection(enableDeselection: true))

let continents = ["Africa", "Antarctica", "Asia", "Australia", "Europe", "North America", "South America"]
for option in continents {
    form.last! <<< ListCheckRow<String>(option){ listRow in
        listRow.title = option
        listRow.selectableValue = option
        listRow.value = nil
    }
}
What kind of rows can be used?

To create such a section you have to create a row that conforms the SelectableRowType protocol.

public protocol SelectableRowType : RowType {
    var selectableValue : Value? { get set }
}

This selectableValue is where the value of the row will be permanently stored. The value variable will be used to determine if the row is selected or not, being 'selectableValue' if selected or nil otherwise. Eureka includes the ListCheckRow which is used for example. In the custom rows of the Examples project you can also find the ImageCheckRow.

Getting the selected rows

To easily get the selected row/s of a SelectableSection there are two methods: selectedRow() and selectedRows() which can be called to get the selected row in case it is a SingleSelection section or all the selected rows if it is a MultipleSelection section.

Grouping options in sections

Additionally you can setup list of options to be grouped by sections using following properties of SelectorViewController:

  • sectionKeyForValue - a closure that should return key for particular row value. This key is later used to break options by sections.

  • sectionHeaderTitleForKey - a closure that returns header title for a section for particular key. By default returns the key itself.

  • sectionFooterTitleForKey - a closure that returns footer title for a section for particular key.

Multivalued Sections

Eureka supports multiple values for a certain field (such as telephone numbers in a contact) by using Multivalued sections. It allows us to easily create insertable, deletable and reorderable sections.

Screenshot of Multivalued Section

How to create a multivalued section

In order to create a multivalued section we have to use MultivaluedSection type instead of the regular Section type. MultivaluedSection extends Section and has some additional properties to configure multivalued section behavior.

let's dive into a code example...

form +++
    MultivaluedSection(multivaluedOptions: [.Reorder, .Insert, .Delete],
                       header: "Multivalued TextField",
                       footer: ".Insert adds a 'Add Item' (Add New Tag) button row as last cell.") {
        $0.addButtonProvider = { section in
            return ButtonRow(){
                $0.title = "Add New Tag"
            }
        }
        $0.multivaluedRowToInsertAt = { index in
            return NameRow() {
                $0.placeholder = "Tag Name"
            }
        }
        $0 <<< NameRow() {
            $0.placeholder = "Tag Name"
        }
    }

Previous code snippet shows how to create a multivalued section. In this case we want to insert, delete and reorder rows as multivaluedOptions argument indicates.

addButtonProvider allows us to customize the button row which inserts a new row when tapped and multivaluedOptions contains .Insert value.

multivaluedRowToInsertAt closure property is called by Eureka each time a new row needs to be inserted. In order to provide the row to add into multivalued section we should set this property. Eureka passes the index as closure parameter. Notice that we can return any kind of row, even custom rows, even though in most cases multivalued section rows are of the same type.

Eureka automatically adds a button row when we create a insertable multivalued section. We can customize how the this button row looks like as we explained before. showInsertIconInAddButton property indicates if plus button (insert style) should appear in the left of the button, true by default.

There are some considerations we need to have in mind when creating insertable sections. Any row added to the insertable multivalued section should be placed above the row that Eureka automatically adds to insert new rows. This can be easily achieved by adding these additional rows to the section from inside the section's initializer closure (last parameter of section initializer) so then Eureka adds the adds insert button at the end of the section.

Editing mode

By default Eureka will set the tableView's isEditing to true only if there is a MultivaluedSection in the form. This will be done in viewWillAppear the first time a form is presented.

For more information on how to use multivalued sections please take a look at Eureka example project which contains several usage examples.

Custom add button

If you want to use an add button which is not a ButtonRow then you can use GenericMultivaluedSection<AddButtonType>, where AddButtonType is the type of the row you want to use as add button. This is useful if you want to use a custom row to change the UI of the button.

Example:

GenericMultivaluedSection<LabelRow>(multivaluedOptions: [.Reorder, .Insert, .Delete], {
    $0.addButtonProvider = { section in
        return LabelRow(){
            $0.title = "A Label row as add button"
        }
    }
    // ...
}

Validations

Eureka 2.0.0 introduces the much requested built-in validations feature.

A row has a collection of Rules and a specific configuration that determines when validation rules should be evaluated.

There are some rules provided by default, but you can also create new ones on your own.

The provided rules are:

  • RuleRequired
  • RuleEmail
  • RuleURL
  • RuleGreaterThan, RuleGreaterOrEqualThan, RuleSmallerThan, RuleSmallerOrEqualThan
  • RuleMinLength, RuleMaxLength
  • RuleClosure

Let's see how to set up the validation rules.

override func viewDidLoad() {
        super.viewDidLoad()
        form
          +++ Section(header: "Required Rule", footer: "Options: Validates on change")

            <<< TextRow() {
                $0.title = "Required Rule"
                $0.add(rule: RuleRequired())

		// This could also have been achieved using a closure that returns nil if valid, or a ValidationError otherwise.
		/*
		let ruleRequiredViaClosure = RuleClosure<String> { rowValue in
		return (rowValue == nil || rowValue!.isEmpty) ? ValidationError(msg: "Field required!") : nil
		}
		$0.add(rule: ruleRequiredViaClosure)
		*/

                $0.validationOptions = .validatesOnChange
            }
            .cellUpdate { cell, row in
                if !row.isValid {
                    cell.titleLabel?.textColor = .systemRed
                }
            }

          +++ Section(header: "Email Rule, Required Rule", footer: "Options: Validates on change after blurred")

            <<< TextRow() {
                $0.title = "Email Rule"
                $0.add(rule: RuleRequired())
                $0.add(rule: RuleEmail())
                $0.validationOptions = .validatesOnChangeAfterBlurred
            }
            .cellUpdate { cell, row in
                if !row.isValid {
                    cell.titleLabel?.textColor = .systemRed
                }
            }

As you can see in the previous code snippet we can set up as many rules as we want in a row by invoking row's add(rule:) function.

Row also provides func remove(ruleWithIdentifier identifier: String) to remove a rule. In order to use it we must assign an id to the rule after creating it.

Sometimes the collection of rules we want to use on a row is the same we want to use on many other rows. In this case we can set up all validation rules using a RuleSet which is a collection of validation rules.

var rules = RuleSet<String>()
rules.add(rule: RuleRequired())
rules.add(rule: RuleEmail())

let row = TextRow() {
            $0.title = "Email Rule"
            $0.add(ruleSet: rules)
            $0.validationOptions = .validatesOnChangeAfterBlurred
        }

Eureka allows us to specify when validation rules should be evaluated. We can do it by setting up validationOptions row's property, which can have the following values:

  • .validatesOnChange - Validates whenever a row value changes.
  • .validatesOnBlur - (Default value) validates right after the cell resigns first responder. Not applicable for all rows.
  • .validatesOnChangeAfterBlurred - Validates whenever the row value changes after it resigns first responder for the first time.
  • .validatesOnDemand - We should manually validate the row or form by invoking validate() method.

If you want to validate the entire form (all the rows) you can manually invoke Form validate() method.

How to get validation errors

Each row has the validationErrors property that can be used to retrieve all validation errors. This property just holds the validation error list of the latest row validation execution, which means it doesn't evaluate the validation rules of the row.

Note on types

As expected, the Rules must use the same types as the Row object. Be extra careful to check the row type used. You might see a compiler error ("Incorrect arugment label in call (have 'rule:' expected 'ruleSet:')" that is not pointing to the problem when mixing types.

Swipe Actions

By using swipe actions we can define multiple leadingSwipe and trailingSwipe actions per row. As swipe actions depend on iOS system features, leadingSwipe is available on iOS 11.0+ only.

Let's see how to define swipe actions.

let row = TextRow() {
            let deleteAction = SwipeAction(
                style: .destructive,
                title: "Delete",
                handler: { (action, row, completionHandler) in
                    //add your code here.
                    //make sure you call the completionHandler once done.
                    completionHandler?(true)
                })
            deleteAction.image = UIImage(named: "icon-trash")

            $0.trailingSwipe.actions = [deleteAction]
            $0.trailingSwipe.performsFirstActionWithFullSwipe = true

            //please be aware: `leadingSwipe` is only available on iOS 11+ only
            let infoAction = SwipeAction(
                style: .normal,
                title: "Info",
                handler: { (action, row, completionHandler) in
                    //add your code here.
                    //make sure you call the completionHandler once done.
                    completionHandler?(true)
                })
            infoAction.actionBackgroundColor = .blue
            infoAction.image = UIImage(named: "icon-info")

            $0.leadingSwipe.actions = [infoAction]
            $0.leadingSwipe.performsFirstActionWithFullSwipe = true
        }

Swipe Actions need tableView.isEditing be set to false. Eureka will set this to true if there is a MultivaluedSection in the form (in the viewWillAppear). If you have both MultivaluedSections and swipe actions in the same form you should set isEditing according to your needs.

Custom rows

It is very common that you need a row that is different from those included in Eureka. If this is the case you will have to create your own row but this should not be difficult. You can read this tutorial on how to create custom rows to get started. You might also want to have a look at EurekaCommunity which includes some extra rows ready to be added to Eureka.

Basic custom rows

To create a row with custom behaviour and appearance you'll probably want to create subclasses of Row and Cell.

Remember that Row is the abstraction Eureka uses, while the Cell is the actual UITableViewCell in charge of the view. As the Row contains the Cell, both Row and Cell must be defined for the same value type.

// Custom Cell with value type: Bool
// The cell is defined using a .xib, so we can set outlets :)
public class CustomCell: Cell<Bool>, CellType {
    @IBOutlet weak var switchControl: UISwitch!
    @IBOutlet weak var label: UILabel!

    public override func setup() {
        super.setup()
        switchControl.addTarget(self, action: #selector(CustomCell.switchValueChanged), for: .valueChanged)
    }

    func switchValueChanged(){
        row.value = switchControl.on
        row.updateCell() // Re-draws the cell which calls 'update' bellow
    }

    public override func update() {
        super.update()
        backgroundColor = (row.value ?? false) ? .white : .black
    }
}

// The custom Row also has the cell: CustomCell and its correspond value
public final class CustomRow: Row<CustomCell>, RowType {
    required public init(tag: String?) {
        super.init(tag: tag)
        // We set the cellProvider to load the .xib corresponding to our cell
        cellProvider = CellProvider<CustomCell>(nibName: "CustomCell")
    }
}

The result:
Screenshot of Disabled Row


Custom rows need to subclass `Row` and conform to `RowType` protocol. Custom cells need to subclass `Cell` and conform to `CellType` protocol.

Just like the callbacks cellSetup and CellUpdate, the Cell has the setup and update methods where you can customize it.

Custom inline rows

An inline row is a specific type of row that shows dynamically a row below it, normally an inline row changes between an expanded and collapsed mode whenever the row is tapped.

So to create an inline row we need 2 rows, the row that is "always" visible and the row that will expand/collapse.

Another requirement is that the value type of these 2 rows must be the same. This means if one row holds a String value then the other must have a String value too.

Once we have these 2 rows, we should make the top row type conform to InlineRowType. This protocol requires you to define an InlineRow typealias and a setupInlineRow function. The InlineRow type will be the type of the row that will expand/collapse. Take this as an example:

class PickerInlineRow<T> : Row<PickerInlineCell<T>> where T: Equatable {

    public typealias InlineRow = PickerRow<T>
    open var options = [T]()

    required public init(tag: String?) {
        super.init(tag: tag)
    }

    public func setupInlineRow(_ inlineRow: InlineRow) {
        inlineRow.options = self.options
        inlineRow.displayValueFor = self.displayValueFor
        inlineRow.cell.height = { UITableViewAutomaticDimension }
    }
}

The InlineRowType will also add some methods to your inline row:

func expandInlineRow()
func collapseInlineRow()
func toggleInlineRow()

These methods should work fine but should you want to override them keep in mind that it is toggleInlineRow that has to call expandInlineRow and collapseInlineRow.

Finally you must invoke toggleInlineRow() when the row is selected, for example overriding customDidSelect:

public override func customDidSelect() {
    super.customDidSelect()
    if !isDisabled {
        toggleInlineRow()
    }
}

Custom Presenter rows

Note: A Presenter row is a row that presents a new UIViewController.

To create a custom Presenter row you must create a class that conforms the PresenterRowType protocol. It is highly recommended to subclass SelectorRow as it does conform to that protocol and adds other useful functionality.

The PresenterRowType protocol is defined as follows:

public protocol PresenterRowType: TypedRowType {

     associatedtype PresentedControllerType : UIViewController, TypedRowControllerType

     /// Defines how the view controller will be presented, pushed, etc.
     var presentationMode: PresentationMode<PresentedControllerType>? { get set }

     /// Will be called before the presentation occurs.
     var onPresentCallback: ((FormViewController, PresentedControllerType) -> Void)? { get set }
}

The onPresentCallback will be called when the row is about to present another view controller. This is done in the SelectorRow so if you do not subclass it you will have to call it yourself.

The presentationMode is what defines how the controller is presented and which controller is presented. This presentation can be using a Segue identifier, a segue class, presenting a controller modally or pushing to a specific view controller. For example a CustomPushRow can be defined like this:

Let's see an example..

/// Generic row type where a user must select a value among several options.
open class SelectorRow<Cell: CellType>: OptionsRow<Cell>, PresenterRowType where Cell: BaseCell {


    /// Defines how the view controller will be presented, pushed, etc.
    open var presentationMode: PresentationMode<SelectorViewController<SelectorRow<Cell>>>?

    /// Will be called before the presentation occurs.
    open var onPresentCallback: ((FormViewController, SelectorViewController<SelectorRow<Cell>>) -> Void)?

    required public init(tag: String?) {
        super.init(tag: tag)
    }

    /**
     Extends `didSelect` method
     */
    open override func customDidSelect() {
        super.customDidSelect()
        guard let presentationMode = presentationMode, !isDisabled else { return }
        if let controller = presentationMode.makeController() {
            controller.row = self
            controller.title = selectorTitle ?? controller.title
            onPresentCallback?(cell.formViewController()!, controller)
            presentationMode.present(controller, row: self, presentingController: self.cell.formViewController()!)
        } else {
            presentationMode.present(nil, row: self, presentingController: self.cell.formViewController()!)
        }
    }

    /**
     Prepares the pushed row setting its title and completion callback.
     */
    open override func prepare(for segue: UIStoryboardSegue) {
        super.prepare(for: segue)
        guard let rowVC = segue.destination as Any as? SelectorViewController<SelectorRow<Cell>> else { return }
        rowVC.title = selectorTitle ?? rowVC.title
        rowVC.onDismissCallback = presentationMode?.onDismissCallback ?? rowVC.onDismissCallback
        onPresentCallback?(cell.formViewController()!, rowVC)
        rowVC.row = self
    }
}


// SelectorRow conforms to PresenterRowType
public final class CustomPushRow<T: Equatable>: SelectorRow<PushSelectorCell<T>>, RowType {

    public required init(tag: String?) {
        super.init(tag: tag)
        presentationMode = .show(controllerProvider: ControllerProvider.callback {
            return SelectorViewController<T>(){ _ in }
            }, onDismiss: { vc in
                _ = vc.navigationController?.popViewController(animated: true)
        })
    }
}

Subclassing cells using the same row

Sometimes we want to change the UI look of one of our rows but without changing the row type and all the logic associated to one row. There is currently one way to do this if you are using cells that are instantiated from nib files. Currently, none of Eureka's core rows are instantiated from nib files but some of the custom rows in EurekaCommunity are, in particular the PostalAddressRow which was moved there.

What you have to do is:

  • Create a nib file containing the cell you want to create.
  • Then set the class of the cell to be the existing cell you want to modify (if you want to change something more apart from pure UI then you should subclass that cell). Make sure the module of that class is correctly set
  • Connect the outlets to your class
  • Tell your row to use the new nib file. This is done by setting the cellProvider variable to use this nib. You should do this in the initialiser, either in each concrete instantiation or using the defaultRowInitializer. For example:
<<< PostalAddressRow() {
     $0.cellProvider = CellProvider<PostalAddressCell>(nibName: "CustomNib", bundle: Bundle.main)
}

You could also create a new row for this. In that case try to inherit from the same superclass as the row you want to change to inherit its logic.

There are some things to consider when you do this:

  • If you want to see an example have a look at the PostalAddressRow or the CreditCardRow which have use a custom nib file in their examples.
  • If you get an error saying Unknown class <YOUR_CLASS_NAME> in Interface Builder file, it might be that you have to instantiate that new type somewhere in your code to load it in the runtime. Calling let t = YourClass.self helped in my case.

Row catalog

Controls Rows

Label Row


Button Row


Check Row


Switch Row


Slider Row


Stepper Row


Text Area Row


Field Rows

These rows have a textfield on the right side of the cell. The difference between each one of them consists in a different capitalization, autocorrection and keyboard type configuration.

TextRow

NameRow

URLRow

IntRow

PhoneRow

PasswordRow

EmailRow

DecimalRow

TwitterRow

AccountRow

ZipCodeRow

All of the FieldRow subtypes above have a formatter property of type NSFormatter which can be set to determine how that row's value should be displayed. A custom formatter for numbers with two digits after the decimal mark is included with Eureka (DecimalFormatter). The Example project also contains a CurrencyFormatter which displays a number as currency according to the user's locale.

By default, setting a row's formatter only affects how a value is displayed when it is not being edited. To also format the value while the row is being edited, set useFormatterDuringInput to true when initializing the row. Formatting the value as it is being edited may require updating the cursor position and Eureka provides the following protocol that your formatter should conform to in order to handle cursor position:

public protocol FormatterProtocol {
    func getNewPosition(forPosition forPosition: UITextPosition, inTextInput textInput: UITextInput, oldValue: String?, newValue: String?) -> UITextPosition
}

Additionally, FieldRow subtypes have a useFormatterOnDidBeginEditing property. When using a DecimalRow with a formatter that allows decimal values and conforms to the user's locale (e.g. DecimalFormatter), if useFormatterDuringInput is false, useFormatterOnDidBeginEditing must be set to true so that the decimal mark in the value being edited matches the decimal mark on the keyboard.

Date Rows

Date Rows hold a Date and allow us to set up a new value through UIDatePicker control. The mode of the UIDatePicker and the way how the date picker view is shown is what changes between them.

Date Row
Picker shown in the keyboard.
Date Row (Inline)
The row expands.
Date Row (Picker)
The picker is always visible.

With those 3 styles (Normal, Inline & Picker), Eureka includes:

  • DateRow
  • TimeRow
  • DateTimeRow
  • CountDownRow

Option Rows

These are rows with a list of options associated from which the user must choose.

<<< ActionSheetRow<String>() {
                $0.title = "ActionSheetRow"
                $0.selectorTitle = "Pick a number"
                $0.options = ["One","Two","Three"]
                $0.value = "Two"    // initially selected
            }
Alert Row

Will show an alert with the options to choose from.
ActionSheet Row

Will show an action sheet with the options to choose from.
Push Row

Will push to a new controller from where to choose options listed using Check rows.
Multiple Selector Row

Like PushRow but allows the selection of multiple options.
Segmented Row
Segmented Row (w/Title)
Picker Row

Presents options of a generic type through a picker view
(There is also Picker Inline Row)

Built your own custom row?

Let us know about it, we would be glad to mention it here. :)

  • LocationRow (Included as custom row in the example project)

Screenshot of Location Row

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects.

Specify Eureka into your project's Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

pod 'Eureka'

Then run the following command:

$ pod install

Swift Package Manager

Swift Package Manager is a tool for managing the distribution of Swift code.

After you set up your Package.swift manifest file, you can add Eureka as a dependency by adding it to the dependencies value of your Package.swift.

dependencies: [ .package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.5.0") ]

Carthage

Carthage is a simple, decentralized dependency manager for Cocoa.

Specify Eureka into your project's Cartfile:

github "xmartlabs/Eureka" ~> 5.5

Manually as Embedded Framework

  • Clone Eureka as a git submodule by running the following command from your project root git folder.
$ git submodule add https://github.com/xmartlabs/Eureka.git
  • Open Eureka folder that was created by the previous git submodule command and drag the Eureka.xcodeproj into the Project Navigator of your application's Xcode project.

  • Select the Eureka.xcodeproj in the Project Navigator and verify the deployment target matches with your application deployment target.

  • Select your project in the Xcode Navigation and then select your application target from the sidebar. Next select the "General" tab and click on the + button under the "Embedded Binaries" section.

  • Select Eureka.framework and we are done!

Getting involved

  • If you want to contribute please feel free to submit pull requests.
  • If you have a feature request please open an issue.
  • If you found a bug check older issues before submitting an issue.
  • If you need help or would like to ask general question, use StackOverflow. (Tag eureka-forms).

Before contribute check the CONTRIBUTING file for more info.

If you use Eureka in your app We would love to hear about it! Drop us a line on twitter.

Authors

FAQ

How to change the text representation of the row value shown in the cell.

Every row has the following property:

/// Block variable used to get the String that should be displayed for the value of this row.
public var displayValueFor: ((T?) -> String?)? = {
    return $0.map { String(describing: $0) }
}

You can set displayValueFor according the string value you want to display.

How to get a Row using its tag value

We can get a particular row by invoking any of the following functions exposed by the Form class:

public func rowBy<T: Equatable>(tag: String) -> RowOf<T>?
public func rowBy<Row: RowType>(tag: String) -> Row?
public func rowBy(tag: String) -> BaseRow?

For instance:

let dateRow : DateRow? = form.rowBy(tag: "dateRowTag")
let labelRow: LabelRow? = form.rowBy(tag: "labelRowTag")

let dateRow2: Row<DateCell>? = form.rowBy(tag: "dateRowTag")

let labelRow2: BaseRow? = form.rowBy(tag: "labelRowTag")

How to get a Section using its tag value

let section: Section?  = form.sectionBy(tag: "sectionTag")

How to set the form values using a dictionary

Invoking setValues(values: [String: Any?]) which is exposed by Form class.

For example:

form.setValues(["IntRowTag": 8, "TextRowTag": "Hello world!", "PushRowTag": Company(name:"Xmartlabs")])

Where "IntRowTag", "TextRowTag", "PushRowTag" are row tags (each one uniquely identifies a row) and 8, "Hello world!", Company(name:"Xmartlabs") are the corresponding row value to assign.

The value type of a row must match with the value type of the corresponding dictionary value otherwise nil will be assigned.

If the form was already displayed we have to reload the visible rows either by reloading the table view tableView.reloadData() or invoking updateCell() to each visible row.

Row does not update after changing hidden or disabled condition

After setting a condition, this condition is not automatically evaluated. If you want it to do so immediately you can call .evaluateHidden() or .evaluateDisabled().

This functions are just called when a row is added to the form and when a row it depends on changes. If the condition is changed when the row is being displayed then it must be reevaluated manually.

onCellUnHighlight doesn't get called unless onCellHighlight is also defined

Look at this issue.

How to update a Section header/footer

  • Set up a new header/footer data ....
section.header = HeaderFooterView(title: "Header title \(variable)") // use String interpolation
//or
var header = HeaderFooterView<UIView>(.class) // most flexible way to set up a header using any view type
header.height = { 60 }  // height can be calculated
header.onSetupView = { view, section in  // each time the view is about to be displayed onSetupView is invoked.
    view.backgroundColor = .orange
}
section.header = header
  • Reload the Section to perform the changes
section.reload()

How to customize Selector and MultipleSelector option cells

selectableRowSetup, selectableRowCellUpdate and selectableRowCellSetup properties are provided to be able to customize SelectorViewController and MultipleSelectorViewController selectable cells.

let row = PushRow<Emoji>() {
              $0.title = "PushRow"
              $0.options = [💁🏻, 🍐, 👦🏼, 🐗, 🐼, 🐻]
              $0.value = 👦🏼
              $0.selectorTitle = "Choose an Emoji!"
          }.onPresent { from, to in
              to.dismissOnSelection = false
              to.dismissOnChange = false
              to.selectableRowSetup = { row in
                  row.cellProvider = CellProvider<ListCheckCell<Emoji>>(nibName: "EmojiCell", bundle: Bundle.main)
              }
              to.selectableRowCellUpdate = { cell, row in
                  cell.textLabel?.text = "Text " + row.selectableValue!  // customization
                  cell.detailTextLabel?.text = "Detail " +  row.selectableValue!
              }
          }

Don't want to use Eureka custom operators?

As we've said Form and Section types conform to MutableCollection and RangeReplaceableCollection. A Form is a collection of Sections and a Section is a collection of Rows.

RangeReplaceableCollection protocol extension provides many useful methods to modify collection.

extension RangeReplaceableCollection {
    public mutating func append(_ newElement: Self.Element)
    public mutating func append<S>(contentsOf newElements: S) where S : Sequence, Self.Element == S.Element
    public mutating func insert(_ newElement: Self.Element, at i: Self.Index)
    public mutating func insert<S>(contentsOf newElements: S, at i: Self.Index) where S : Collection, Self.Element == S.Element
    public mutating func remove(at i: Self.Index) -> Self.Element
    public mutating func removeSubrange(_ bounds: Range<Self.Index>)
    public mutating func removeFirst(_ n: Int)
    public mutating func removeFirst() -> Self.Element
    public mutating func removeAll(keepingCapacity keepCapacity: Bool)
    public mutating func reserveCapacity(_ n: Self.IndexDistance)
}

These methods are used internally to implement the custom operators as shown bellow:

public func +++(left: Form, right: Section) -> Form {
    left.append(right)
    return left
}

public func +=<C : Collection>(inout lhs: Form, rhs: C) where C.Element == Section {
    lhs.append(contentsOf: rhs)
}

public func <<<(left: Section, right: BaseRow) -> Section {
    left.append(right)
    return left
}

public func +=<C : Collection>(inout lhs: Section, rhs: C) where C.Element == BaseRow {
    lhs.append(contentsOf: rhs)
}

You can see how the rest of custom operators are implemented here.

It's up to you to decide if you want to use Eureka custom operators or not.

How to set up your form from a storyboard

The form is always displayed in a UITableView. You can set up your view controller in a storyboard and add a UITableView where you want it to be and then connect the outlet to FormViewController's tableView variable. This allows you to define a custom frame (possibly with constraints) for your form.

All of this can also be done by programmatically changing frame, margins, etc. of the tableView of your FormViewController.

Donate to Eureka

So we can make Eureka even better!

Change Log

This can be found in the CHANGELOG.md file.

eureka's People

Contributors

aaronbrethorst avatar akabab avatar andrewbennet avatar anlaital avatar banjun avatar cecipirotto avatar chaoscoder avatar charlymr avatar davidrothera avatar hiromichiyamada avatar ilyapuchka avatar m-revetria avatar mats-claassen avatar mikaoj avatar mlorenze avatar mtnbarreto avatar othomas1984 avatar pnre avatar rcrsv2n avatar romanpodymov avatar siarheifedartsou avatar spencerc avatar svedm avatar thecoordinator avatar tomaslize avatar txaiwieser avatar yannickl avatar yunhao avatar yuuki1224 avatar zigzag968 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

eureka's Issues

Appearance proxies

Hello,

I've been using XLForm for quite a while and it does save a lot of time while making forms. While you are developing Eureka I would like to suggest including Appearance proxies and global appearance methods in to it.

While it is possible to change to for example font of most elements in XLForm, it's a bit tedious to do element by element. Rarely do I have cases where I want to have multiple different fonts and colours inside one app (rather have unified look and feel).

Fix Usage in readme

The Usage part in the readme is wrong.

It should explain that you must create a ViewController with a tableview inside (style grouped) and a referencing outlet to the FormViewController owned by the UIViewController.

Moreover, example rows (WeekdayRow, FloatLabelRow) are non standard rows, the should be replaced by IntRow and TextRow for instance.

Unnecessary abstraction in _XRow and XRow classes?

I'm confused on why there is a extra layer of abstraction between the actual Row classes and their final versions. For example:

public class _DateInlineRow: _DateInlineFieldRow, InlineRowType {

    public typealias InlineRow = DatePickerRow

    public required init(tag: String?) {
        super.init(tag: tag)
        dateFormatter = NSDateFormatter()
        dateFormatter?.timeStyle = .NoStyle
        dateFormatter?.dateStyle = .MediumStyle
        dateFormatter?.locale = .currentLocale()
    }

    public override func customDidSelect() {
        toggleInlineRow()
    }
}
public final class DateInlineRow: _DateInlineRow, RowType {
    required public init(tag: String?) {
        super.init(tag: tag)
        onShowInlineRow { cell, row, _ in
            let color = cell.detailTextLabel?.textColor
            row.onHideInlineRow { cell, _, _ in
                cell.detailTextLabel?.textColor = color
            }
            cell.detailTextLabel?.textColor = cell.tintColor
        }
    }
}

It seems to me that having _DateInlineRow is superfluous to DateInlineRow, especially since the DateInlineRow overrides the initialiser with something that apparently could have been put in _DateInlineRow instead.

And most of the other version are just variations of;

public final class xRow : _xRow, RowType {
    public required init(tag: String?) {
        super.init(tag: tag)
    }
}

… where the override of the initialiser could have been omitted.

Just wondering what the rationale is.

TextAreaRow does not hide placeholder when value is setted

First of all thanks for this awesome library!

I am not 100% sure if I am doing it right. But when I set a value on a TextAreaRow the placeholder is still beeing shown and a strange overlay with the value is also displayed.

screen shot 2015-10-02 at 13 45 48

Here is the code I use to set the value form the TextAreaRow:

<<< TextAreaRow("textEN") {
    $0.placeholder = "Text EN"
    $0.value = self.report?.textEN
}

Use PushRow on CustomRow xib

Hi, i'm trying to create a customRow with 2 fields and a pushRow inside it. Is this possible? How can i import pushrow inside my customCell.xib, its extended from UiView? Thanks in advance.

CurrencyFormatter sample issue

This doesn't seem to work at all when the cell is in useFormatterDuringInput = true. Can you update this to work so you see the format change while you are typing?

It would be nice to see working sample on how to create your own formatter that works.

Also a nice to have would be a MaxLength on the TextField Input.

cannot use ButtonRow title in condition

            $0.hidden = .Function(["login"], { form -> Bool in
                let row: ButtonRow! = form.rowByTag("login")
                return row.title == "Register"   <- this returns EXC_BAD_INSTRUCTION
            })

When trying the above code, i resulted in EXC_BAD_INSTRUCTION

Popover Selection Field

Is there a way to replicate the XLFormRowDescriptorTypeSelectorPopover field type using eureka? Does this need to be done as a custom field, are there examples?

Thanks so much.

Form data validation

Hi, is there any way of validating the data of the rows like the validations in XLForm?

It would be nice to e.g. only activate a specific ButtonRow if the whole form is valid and this depends upon the validations of each row (e.g. row 1,2 and 3 must not be empty)

FloatLabelTextField formatter

Hi, i would like to use FloatLabelTextField on my projects. I'm trying to add the formatter thats present on DecimalRow but the FloatLabel extends from UITextField direct.

How can i implement formatter on FloatLabelTextField? Thanks in advance.

How to get all row rows from one section ?

Say we got a section "Loans" with multiple rows.

Section 1 tag: Loans

  • row Loan 1 value: 10000
  • row Loan 2 value: 20000
  • row Loan 3 value: 30000

Would it be possible to do that kind of stuff ?

var section: Section?  = form.sectionByTag("Loans")
//Get all rows / values in this section ?

Anyway, Thanks for this great library !

navigationOptions = .None not working

Hi,

You can also see this in "Accessory View Navigation" of the example project. When I switched off navigation accessory view, I still get the navigation view as seen in the screenshot below.

simulator screen shot 15 oct 2015 14 32 51

I expected to have no view above the keyboard when I set navigationOptions to None.

TextArea pre filled information weird behavior (TextArea #1)

1st of all thank you so much for this fantastic library!!

I'm experience a strange bug. So for this app I'm developing the user submits data to the server with each picture taken. To speed up future submissions is the app saves the previous user input. Everything works fine except for the TextArea row. Here's a screenshot of the behavior.

Here is how I'm instantiating the row:

let notesRow = TextAreaRow() {
   $0.placeholder = "Your notes goes here..."
   if let v = self.defaults.valueForKey(Const.D_NOTES) as? String {
       $0.value = v
       self.data.notes = v
   }
}

Any ideas how to fix?

img

Changing the value of an ActionSheetRow from another row ( rowByTag )

Hello!
I’m Trying to change a value of a ActionSheetRow based on the value of a DateTimeRow from inside the OnChange() function.
When I try to create a constant “mycell” using the rowByTag function the compiler throws: 'Cannot convert value of type 'BaseRow?' to specified type 'ActionSheetRow!’
But if I change the type to DateTimeRow it compiles fine. See example below.
How can I make it work?
Thanks!

...
<<< DateTimeRow() { $0.value = NSDate(); $0.title = "DateRow"

        }.onChange(){ [weak self] row in
    // this will not work
            let mycell: ActionSheetRow! = self?.form.rowByTag("myth”)

    // this will work - changed type to DateTimeRow
            let mycell2: DateTimeRow! = self?.form.rowByTag("mytag")

          }

Supply values dictionary for form

There is a function to pull all values from the form in a dictionary by calling form.values(includeHidden: Bool).

Is there a simple way to submit values by using a modified dictionary?

EDIT: This would serve as a means to save a form and reload them as they were left.

rowByTag("myTag").hidden doesn't work?

Here's the bit of code, I'm running this after an async http fetch. Though I'll just hardcode it for now.

How come the button isn't being hidden?

if let buttonRow = self.form.rowByTag(self.kDeleteRowTag) {
                buttonRow.hidden = true
                buttonRow.updateCell()
            }

Text is duplicated with TextAreaRow

I've found a graphic bug that occurs with TextAreaRow ;

I want to use that row to display non editable disclaimer text.
But when I do using the value property, a label is present with a duplicated version of the text.

I tried to force to an empty string the title and the placeholder with the same result.
Here is a screenshot of what happens. I've scrolled a little to be sure that the text is visible. It doesn't scroll and stay at the center.

simulator screen shot 30 sept 2015 11 58 59

Here is the code I use for this particular row :

<<< TextAreaRow("disclaimer") {
            $0.value = NSLocalizedString("DISCLAIMER", comment: "")
            $0.disabled = true
        }

How to use the ButtonCell

There are some samples for other rows but ButtonRow is not well explained in the sample project. Would be super nice to have a bit betted documentation for use cases. E.g how I call an action on a button row.

FloatLabelRow onChange event not triggered

.....
<<< FloatLabelRow() {
$0.title = "My Title"
}.onChange { row in
print(row.value)
}
......
in this code onChange is not triggered. When i use TextRow its triggered. is there any solution for this?

regards

Multiple check forms in a 'row' (custom row, custom cell)

I want to have multiple check boxes in the same 'row' or same 'UI control'. I think this is similar to the Weekdays checkbox in the examples, but is there a default control which will sit several checkboxes next to each other?

multchoice

Disable selected cell title highlighting

Is it possible to disable the highlighting of the title of the currently selected cell? I don't see it in the documentation, and a quick browse through the code seems to indicate you'd need to manually set the highlight colour to be the same as the default text colour. It would be great if there was a way you could disable it completely.

Issue when Eureka rows come into view

I am experiencing an issue at runtime.
Which is throwing:

Could not cast value of type 'Eureka.BaseRow -> ()' (0x10f2b6030) to 'Eureka.SwitchRow -> ()' (0x10f2b6080).

I have experienced this issue even with forms only containing a single standard section and row.
This is most likely an issue with external setup but if you could give me any pointers it would be a great help.

Crash on attempt to show/hide rows in a hidden Section

The crash is occurring at call delegateValue.rowsHaveBeenRemoved(oldRows, atIndexPaths: indexSet.map { NSIndexPath(forRow: $0, inSection: section!.index! ) } )
As section index is nil when the section is hidden.

This can be replicated with the following example:

class HiddenRowsExample : FormViewController {
  override func viewDidLoad() {
    super.viewDidLoad()
    form =
      Section()
      <<< SwitchRow("Show Next Section"){
        $0.title = $0.tag
      }
      <<< SwitchRow("Show Row in Next Section"){
        $0.title = $0.tag
      }
      +++ Section("Hideable Section"){
        $0.hidden = .Function(["Show Next Section"], { form -> Bool in
          let row: RowOf<Bool>! = form.rowByTag("Show Next Section")
          return row.value ?? false == false
        })
      }
      // hiding / showing the following row while it's section is hidden will cause a crash.
      <<< LabelRow("Bug Row") {
        $0.title = "Hideable Row"
        $0.hidden = .Function(["Show Row in Next Section"], { form -> Bool in
          let row: RowOf<Bool>! = form.rowByTag("Show Row in Next Section")
          return row.value ?? false == false
        })
    }
  }
}

While I don't have any experience with the internals of this library and have not done much testing on this it appears that this can be fixed by simply optionally unwrapping section.index in update methods.
Starting at line 668 in core.swift:

switch changeType.unsignedLongValue {
    case NSKeyValueChange.Setting.rawValue:
        delegateValue.rowsHaveBeenAdded(newRows, atIndexPaths:[NSIndexPath(index: 0)])
    case NSKeyValueChange.Insertion.rawValue:
        let indexSet = change![NSKeyValueChangeIndexesKey] as! NSIndexSet
        if let _index = section!.index {
            delegateValue.rowsHaveBeenAdded(newRows, atIndexPaths: indexSet.map { NSIndexPath(forRow: $0, inSection: _index ) } )
        }
    case NSKeyValueChange.Removal.rawValue:
        let indexSet = change![NSKeyValueChangeIndexesKey] as! NSIndexSet
        if let _index = section!.index {
            delegateValue.rowsHaveBeenRemoved(oldRows, atIndexPaths: indexSet.map { NSIndexPath(forRow: $0, inSection: _index ) } )
        }
    case NSKeyValueChange.Replacement.rawValue:
        let indexSet = change![NSKeyValueChangeIndexesKey] as! NSIndexSet
        if let _index = section!.index {
          delegateValue.rowsHaveBeenReplaced(oldRows: oldRows, newRows: newRows, atIndexPaths: indexSet.map { NSIndexPath(forRow: $0, inSection: _index)})
        }
    default:
        assertionFailure()
}

Display an edit version of the form

Is it possible to reuse the same form when you want to allow the user to edit data that was previously submitted? If so, can a code example be provided of how to create the form with pre-populated field?

Cannot reference TextAreaRow

        form +++ Section("URL")
            <<< TextAreaRow("URL") {
                $0.tag = "theURL"
                $0.value = self.entry.url
                }.onChange{ [weak self] row in
                    //do something
            }

        let urltextrow: TextAreaRow = self.form.rowByTag("theURL")!
        urltextrow.value = url.absoluteString

the value of the TextAreaRow cannot be changed after referencing by let urltextrow: TextAreaRow = self.form.rowByTag("theURL")!

Customize row after creation (cellUpdate)

I have a field that I would like to highlight after a validation error. From looking at the documentation I'm not sure where I would customize it after the field has already been initialized. For example, I'd like to change the color of the label when there is an error.

Automatically assign first responder when view is displayed

Is it possible to automatically assign the first responder when the form is created/displayed? For example, the first enabled input should open the keyboard and be open to input from the user.

I'm coming across from XLForm (which I just found out was also created by you guys, great work!) which has the assignFirstResponderOnShow property.

Custom datePicker ( picker view )

Hello, is there any way to the datePicker shows only year? This is a constraint in UIDatePicker class and maybe would be a great functionality for Eureka.

Button Cell is Not Deselected

I created a simple button with the following code, but when I select the button it is not deselected. Is this supposed to be handled automatically by the library, or do I have to call a specific method?

<<< ButtonRow() { $0.title = "Sign Up" }.onCellSelection{ cell, row in //Custom code}

In onCellSelection I tried calling cell.unhighlight(), but that did not have any effect.

How do I add margin/padding directly to an existing cell?

Hi, I have a custom form style, which looks like this:
comments

I'd like all of my forms to have a similar look, so I'm not sure if this should be a custom Xib, or whether I can just override a cell format.

My thought was just to alter the text color, background color, and margins of existing cells.. However, I'm not sure how to alter the margin of a cell.

Readonly mode as opposed to disabled

What do you think of a read-only mode that does not change the appearance to light grey, but does not allow editing either?

The use-case I have in mind is a global "Edit" button, that just enables editing on the form without it changing its appearance.

OptionsRow like HTML's radio control - dispayValueFor

I want to set the form's values and labels separately.
Now, the value of OptionsRow is set to be the same as the label. So, it's hard to set enum values in the OptionsRow or SegmentRow.

It would be like below. I added $0.labels
Is there some other way to achieve this already?
Please let me know.

enum SortTypes : Int {
        case Creation = 0, Update = 1
        static let allValues = [Creation, Update]
        static let allLabels = ["by Creation", "by Update"]
}

SegmentedRow<String>("sortType") {
                $0.options = SortTypes.allValues
                $0.labels = SortTypes.allLabels
            }

Custom Class for PushRow

PushRow does not seem to have the .action attribute found in XLForm. I'm guessing this is a feature that's in the works?

How to launch an action from a value selected in Actionsheet row

I have the following requirement and trying to see how best to achieve it using Eureka Form..any inputs would be great.

  1. User clicks on the "Select File from" row. The value of the row is thumbnail of a file selected with a UILabel appended to it describing the file name

  2. Selecting the row launches an Actionsheet with various file selection options "example: select from camera roll, select from Google Drive, etc.".

  3. Selecting a specific action leads to a custom logic to retrieve the file from the data source and download into the App and create a low-res image of the file.

  4. Once action is completed, the actionsheet is dismissed and the Eureka Form Row updated.

I tried the following but it didn't work:
a) Actionsheet Row - however, don't see an custom call back that is called on selecting a specific actionsheet option value that can be in turn used to present a viewcontroller
b) creating an new actionsheet in onCellSelection method call on a row - however that didn't pop up any actionsheet on clicking the cell.

Thanks in advance

Change row value after an unwind segue

I have a row that when pushed segues to another view controller. How do I change the value of the row in prepareForSegue when I'm unwinding back to my original view controller?

Could not cast value of type 'Eureka.BaseRow -> ()' (0x53e3108) to 'Eureka.ButtonRowOf<Swift.String> -> ()' (0x53e3130).

I'm having this error while executing this simple code:

        if section==nil
        {
            section=Section()
            form +++ self.section
        }
        section! <<< ButtonRow() {
            $0.title="some string"
            $0.presentationMode = .SegueName(segueName: "calendario",
                completionCallback: nil)
        }

the code is being executed on the main thread, and i get the fatal error even before the initialization closure is ran. I am running Xcode Version 7.1 (7B91b) and eureka 1.0.0 installed via cocoapods.
I'm trying to update to the last version now to see if it helps

How do I change the height of a SegmentedRow<String>() controller?

Hello: maybe a silly question, but how do I change the height of a SegmentedRow() controller? I try a lot of things, like:
...
<<< SegmentedRow() {
$0.options = ["Cancel Edit", "Skip", "Done"]
let frame = UIScreen.mainScreen().bounds
$0.cell.segmentedControl.frame = CGRectMake(frame.minX + 10, frame.minY + 50,frame.width - 20, frame.height*0.5)
}
...
Can you help me? Thanks!

Section's title and description with NSLocalizedString

Section(NSLocalizedString("Title", comment: "Title"))

I want to create section with NSLocalizedString but it doesn't allow to do it.
The error is below
Cannot invoke initializer for type 'Section' with an argument list of type '(String)'

Generic Inline picker crash in Example project

In the example project, there is a crash (Sigabrt) when selecting values from PickerInlineRow cell and then following up with selecting of an Inline Date Picker from other section. The crash occurs only when one expanded view for inline picker is allowed.

Error details below:
Could not cast value of type '(Eureka.LabelCellOf, Eureka._PickerInlineRow, Eureka.PickerRow) -> ()' (0x1191bf260) to '(Eureka.LabelCellOf, Eureka.PickerInlineRow, Eureka.PickerRow) -> ()' (0x1191bf2b0).

Evaluate hidden/disabled at onCellSelection callback

Maybe I'm doing it wrong, but is it possible to evaluate if a row/section should be hidden based on if another row is selected?

I can get it to work when the value of the other row changes, but not when it is selected.

EDIT:
Is there no possibility to set the hidden status of a row from another function? I'm trying to set one rows hidden status from another rows onCellSelection handler, but it doesn't work. I can hide the CELL, but not the row. Any ideas?

Regards,
Jens

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.