Giter VIP home page Giter VIP logo

formzy's Introduction

Formzy logo

Eazy forms for React

yarn add formzy

Features

  • Populate from parent component state
  • Submissions
  • Async data loading to pre-populate forms
  • Validation
import React, {PureComponent} from 'react'
import Formzy, {isEmail} from './formzy'

const validate = (fields) => {
  const errors = {};
  if (!fields.email) {
    errors.email = 'Please enter an email';
  } else if (!isEmail(fields.email)) {
    errors.email = 'Please enter a valid email';
  }
  return errors;
}
export default class BasicExample extends PureComponent {
  state = {
    user: {
      email : '',
      password: ''
    }
  }
  submit = data => new Promise(resolve => setTimeout(() => resolve({
    ...data,
    firstname: `${data.firstname}.bounced` //show that the UI will update when the server responds with saved data.
  }), 2000))
  render() {
    return <div>
      <h2>Basic Example</h2>
      <Formzy
        submit={this.submit}
        initialValue={this.state.user}
        fields={user => ({
          email: {
            label: 'Email',
            value: user.email,
            type: 'email'
          },
          password: {
            label: 'Password',
            value: user.password,
            type: 'password'
          }
        })}
        validate={validate}
        render={({fields, isFormValid, submit, submitting, errorSubmitting}) =>
        <form onSubmit={submit}>
          {errorSubmitting && <span>Error Submitting</span>}
          <div>
            <input
              type="email"
              name="email"
              placeholder="email"
              onChange={fields.email.onChange}
              onBlur={fields.email.onBlur}
              value={fields.email.value}
            />
            {fields.email.touched && fields.email.value && <div>{fields.email.error}</div>}
          </div>
          <div>
            <input
              type="password"
              name="password"
              placeholder="password"
              onChange={fields.password.onChange}
              onBlur={fields.password.onBlur}
              value={fields.password.value}
            />
            {fields.password.touched && fields.password.error && <div>{fields.spassword.error}</div>}
          </div>
          <button type="submit" disabled={submitting || !isFormValid}>
            {!submitting && <span>Submit</span>}
            {submitting && <span>Please wait...</span>}
          </button>
        </form>}
      />
    </div>
  }
}

Alternatives

Thanks

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.