Git Product home page Git Product logo

gform's Introduction

g-schema

[![Travis][build-badge]][build] [![npm package][npm-badge]][npm] [![Coveralls][coveralls-badge]][coveralls]

Use case

<Form>
          {($form: any) => (
            <div>
              <h4>First: (Multi validation rules)</h4>
              <input
                {...$form.getHandlers({
                  type: 'input',
                  model: 'firstName',
                  validation: [{ customRegx: '^[0-9]+$' }, 'digits']
                })}
              />
              // Nested form
              <h3>Addresses (Nesting)</h3>
              <div style={{ background: 'green', padding: 30 }}>
                {$form.map('books', ($address: any) => {
                  return (
                    <div key={$address.index}>
                      <h4>landmark</h4>
                      <input
                        {...$address.getHandlers({
                          type: 'input',
                          model: 'landmark',
                          validation: 'letters'
                        })}
                      />
                    </div>
                  );
                })}
          )}
        </Form>

Later all form data is available within out component in the $form object

        {
    "firstName": {
        "errors": {
            "valid": false,
            "errorMessages": {
                "digits": "only numbers",
                "customRegx": "No match"
            }
        },
        "touched": false,
        "untouched": true,
        "pristine": true,
        "dirty": false
    },
    "address": [
        {
            "landmark": {
                "errors": {
                    "valid": true,
                    "errorMessages": {}
                },
                "touched": false,
                "untouched": true,
                "pristine": true,
                "dirty": false
            }
        }
    ]
}

Validations :-

Validations can be one of following

  1. Predefined strings ('email', 'digits', 'alphaNumeric', 'alphaNumericNoSpaces', 'ip', 'password', 'urls').
  2. Objects ({max : 10}, { min: 8 }, { validationRule: anyStringFromAbove }, { customRegx: 'customRegularExpression'})
  3. Array: Collection of any of the above validationRules.

gform's People

Contributors

jasbir23 avatar

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.