1.1.4 • Published 2 years ago

@meronex/form v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Meronex Form

Simple React forms with validation for React MUI.

Features

  • ✅ Validate onBlur or onChange
  • ✅ Same API for classes and functional components
  • ✅ Easy to fork and modify to your needs

demo

Usage

  1. Install npm i @meronex/form

  2. Import import Form from '@meronex/form';

  3. Add the form <Form ref={validatedForm} onUpdate={(_formData) => { setFormData(_formData); }} blurDelay={500}> ... React MUI Fields Here </Form

    Notice that we've a ref attached which exposes a validatedForm.reset() method and we've an onUpdate method which is triggered every time there change to the form. The blurDelay default is zero, and it used to delay blur validation to allow time for animation etc.

  4. Add the @material-ui fields with name (required), defaultValue (optional for edit forms) and validator (optional for validation) attributes.

    <TextField name={'name'} label="Name" defaultValue={'a'} validate={(v) => { if (!v || v === '') return 'Name is required..!!'; return true; }} />

    That's it! The onUpdate will be triggered with all the form data, you can then set it to the state object.

    note that the defaultValue and validator are optional. You only need the name attribute for the form to hook for the field. Also, this works with the TextField using select attribute.

Props & Functions

PropDescription
name *Required field to hook the form to the field
defaultValueOptional default value
validatorValidator function to be triggered onBlur
blurDelayIntenger to delay triggering the blur validation in ms
validateOnInitBoolean value to validiate on form init

The Form also exposes the following ref functions:

FunctionDescription
reset()Reset the form
validate()Force validate the form

Why?

  1. Dead-simple API
  2. Minimal documentation/concepts
  3. Easy to fork, copy and modify (it is only a single file with no build step)
  4. Zero dependencies
  5. Extremely tiny (1.2kb minified + gzipped)

How it works?

The Form component will bind methods/props to the child fields. The value, onBlur, onChange, error and helperText props are automatically handled, a form object is created to capture the state of the form and that object is passed to the onUpdate method with every change.

Other libraries

1.1.1

2 years ago

1.1.0

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.4

3 years ago

1.0.5

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago