Giter Club home page Giter Club logo

forms's People

Contributors

brescia123 avatar claudiopaccone 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

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

1072258106

forms's Issues

Introduce Section rules

  • Add error: String? to SectionViewModel.
  • Introduce a configuration also for SectionModel (as for FieldModel) that contains the title (previously a field of SectionModel) and the rules (use FieldRulesValidator interface modified to be general and not field specific).
  • Modify hasErrors() logic from FormModel to take into account also section errors.

Missing License file

Hi Giacomo,
This library would be really useful to anyone frequently developing forms on Android. Is it possible to add an open source licence to use the forms library ?
Thanks,
Abhi

Fix logI, logE...

Make the various logI, logE... extension functions private to the library.

Improve Form definition syntax

Currently to define a form the syntax is the following:

FormModel.form(storage, formActions) {
    page("Page Title") {
        section("Section Title") {
            field(key = fieldKey,
                    serialization = fieldSerialization
                    config = fieldConfiguration
        }
    }
}

Improve it to be something like:

FormModel.form(storage, formActions) {
    page("Page Title") {
        section("Section Title") {
            field("Field Label") {
            	configuration { fieldConfiguration }
                serialization { fieldSerialization }
            }
        }   
    }
}

Add lint rules for multiple configs and serialization

Write a lint rule that warns the user if he is defining more than one configuration or serialization for a field within the Form DSL.

field("key") {
    picker("label") {
        ...
    }
    checkbox("label") { // Should show a warning
        ...
    }   
    serialization {
        ...
    }
    serialization { // Should show a warning
        ...
    }

The warning should make it clear that the first defined configuration/serialization will be overwritten by the second one.

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.