Skip to content

ACampbell12/formiz

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Welcome to 🐜 Formiz

React forms with easy validation and multi steps

Tests Badge

πŸ§™β€ Multi steps forms

Multi steps form logic available out of the box! No more pain to build perfect UX for complex forms.

βœ… Easy form validation

Create forms in React with full validation without the pain. Turn everything into a custom field with full validation!

πŸ› No more logic duplication

Don't duplicate your logic between display and validation. Validation is enabled only if the field is displayed.

πŸ’… Forms with your own UX

Choose how to render validations, form buttons, and navigation between steps (wizard, tabs, other). It's your choice!

βš›οΈ Built with hooks

Use hooks & cut the complexity to create custom fields :) Use complex logic without even thinking of it.

πŸ“± React Native compatible

You can use it with React Native. Just use the as={View} property on <FormizStep> component to replace the div.

Getting started

Looking for the documentation?

Visit formiz-react.com for full documentation and live demos.

Looking for examples?

Visit documentation for live demos.

Visit formiz-examples.netlify.app for examples with Chakra UI.

Concept

The idea behind Formiz is to allow you to build advanced forms with multiple steps, complex validations and a good UX without pain.

The main idea is to build fields as independent reusable components. Fields can be anything, not just inputs. Once you have built your fields, you can use them everywhere.

When you use a field built with Formiz, you can apply validations rules on it. Only the mounted fields will apply their validation to the current step and to the form.

// Example
<MyField
  name="email"
  type="email"
  required="Email is required"
  validations={[
    {
      rule: isEmail(),
      message: 'Not a valid email',
    }
  ]}
/>

Formiz core does not provide any styles, so you can use it with any UI library and style you want. Use it with Chakra UI, ReactStrap, Material UI or your own styles.

Contributing

Feel like contributing? That's awesome!

Follow the flowing guide to run the project locally.

Install dependencies

This project use Yarn and Lerna.

This is needed the ** the first time** you get the project to install all dependencies.

yarn

Bootstrap the repo with Lerna

This is needed the ** the first time** you get the project to link local packages together.

yarn bs

Start documentation

yarn start

Run test in dev

yarn test:dev

This can be a little hard to see test results with this command.

So instead you can go in each packages folders and run tests from here.

cd packages/core
yarn test:dev

About

🐜 React forms with easy validation and multi steps

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 99.9%
  • JavaScript 0.1%