All Projects → data-driven-forms → React Forms

data-driven-forms / React Forms

Licence: apache-2.0
React library for rendering forms.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Forms

Uniforms
A React library for building forms from any schema.
Stars: ✭ 1,368 (+1132.43%)
Mutual labels:  hacktoberfest, components, forms
Clarity
Clarity is a scalable, accessible, customizable, open source design system built with web components. Works with any JavaScript framework, built for enterprises, and designed to be inclusive.
Stars: ✭ 6,398 (+5663.96%)
Mutual labels:  hacktoberfest, components
Flutter form builder
Simple form maker for Flutter Framework
Stars: ✭ 715 (+544.14%)
Mutual labels:  form-validation, forms
Usetheform
React library for composing declarative forms, manage their state, handling their validation and much more.
Stars: ✭ 40 (-63.96%)
Mutual labels:  form-validation, forms
Tails
Tails is a (no-config) copy'n paste library of templates and components crafted using TailwindCSS
Stars: ✭ 416 (+274.77%)
Mutual labels:  hacktoberfest, components
Unform
Performance-focused API for React forms 🚀
Stars: ✭ 4,340 (+3809.91%)
Mutual labels:  hacktoberfest, forms
Formidable
PHP 7 form library for handling user input
Stars: ✭ 27 (-75.68%)
Mutual labels:  form-validation, forms
React Reactive Form
Angular like reactive forms in React.
Stars: ✭ 259 (+133.33%)
Mutual labels:  form-validation, forms
Ohmyform
✏️ Free open source alternative to TypeForm, TellForm, or Google Forms ⛺
Stars: ✭ 1,065 (+859.46%)
Mutual labels:  hacktoberfest, forms
React Native Merlin
🧙 Simple web-like forms in react native.
Stars: ✭ 83 (-25.23%)
Mutual labels:  hacktoberfest, forms
Rsformview
A Cocoapods library designed to easily create forms with multiple data entry fields
Stars: ✭ 84 (-24.32%)
Mutual labels:  form-validation, forms
React Hook Form
📋 React Hooks for form state management and validation (Web + React Native)
Stars: ✭ 24,831 (+22270.27%)
Mutual labels:  form-validation, forms
Airform
Functional HTML forms for Front-End Developers.
Stars: ✭ 307 (+176.58%)
Mutual labels:  hacktoberfest, forms
Reakit
Toolkit for building accessible rich web apps with React
Stars: ✭ 5,265 (+4643.24%)
Mutual labels:  hacktoberfest, components
Visualplus
🎨 The VisualPlus Framework (VPF) for WinForms allows you to rapidly deploy professional .NET applications with customizable components and controls.
Stars: ✭ 268 (+141.44%)
Mutual labels:  components, forms
React Final Form
🏁 High performance subscription-based form state management for React
Stars: ✭ 6,781 (+6009.01%)
Mutual labels:  form-validation, forms
CustomFormViews
A clean collection of views used for forms.
Stars: ✭ 12 (-89.19%)
Mutual labels:  forms, form-validation
grav-plugin-form
Grav Form Plugin
Stars: ✭ 48 (-56.76%)
Mutual labels:  forms, form-validation
Use Form
Build great forms without effort. 🚀
Stars: ✭ 42 (-62.16%)
Mutual labels:  form-validation, forms
Taiga Ui
Angular UI Kit and components library for awesome people
Stars: ✭ 1,353 (+1118.92%)
Mutual labels:  hacktoberfest, components

codecov CircleCI npm version Tweet Twitter Follow

Data Driven Form logo

Data Driven Forms is a React library used for rendering and managing forms with a lot of provided features based on React Final Form.

❓ Why to use Data Driven Forms? ❓

  • All forms shared the same functionality!
  • Components are controlled in one place!
  • You can easily migrate to different sets of components!
  • All functionality is provided (see below!)

🎉 Features 🎉

  • Easily readable schema, you don't need to know any HTML or JS to be able to write your own form schemas!
  • You can use your own components or use one of our provided mappers: PatternFly 4, Material-UI, Ant Design! and more, see below!)
  • Form state manager out-of-the-box (including error states!)
  • Fully customizable (you can use your own buttons, actions, etc.)!
  • Conditional fields!
  • Custom field validation with basic set included!
  • Datatype validation!
  • Cross-field validation!
  • Asynchronous validation supported!
  • Supporting Wizard forms!
  • Supporting Final Form Field Array!
  • ... and a lot more!

📖 For more information please visit the documentation. 📖

Table of Contents

Installation

Add React Form Renderer

React Form Renderer

$ npm install @data-driven-forms/react-form-renderer -S
$ yarn add @data-driven-forms/react-form-renderer

Optionally you can install one of provided mappers:

Material-UI Mapper

$ npm install @data-driven-forms/mui-component-mapper -S
$ yarn add @data-driven-forms/mui-component-mapper

PatternFly 4 Mapper

$ npm install @data-driven-forms/pf4-component-mapper -S
$ yarn add @data-driven-forms/pf4-component-mapper

BlueprintJS Mapper

$ npm install @data-driven-forms/blueprint-component-mapper -S
$ yarn add @data-driven-forms/blueprint-component-mapper

Semantic UI Mapper

$ npm install @data-driven-forms/suir-component-mapper -S
$ yarn add @data-driven-forms/suir-component-mapper

Ant Design Mapper

$ npm install @data-driven-forms/ant-component-mapper -S
$ yarn add @data-driven-forms/ant-component-mapper

Carbon Mapper

$ npm install @data-driven-forms/carbon-component-mapper -S
$ yarn add @data-driven-forms/carbon-component-mapper

Component libraries in mappers are external dependencies. Make sure to install them and their styles in your bundles.

Usage

In order to Data Driven Forms in your component you need the renderer and a component mapper, which provides component mapper and form template.

import React from 'react';
import { FormRenderer, componentTypes } from '@data-driven-forms/react-form-renderer';
import { componentMapper, FormTemplate } from '@data-driven-forms/pf4-component-mapper';

const schema = {
  fields: [{
    component: componentTypes.TEXT_FIELD,
    name: 'name',
    label: 'Your name'
  }]
}

const Form = () => (
  <FormRenderer
    schema={schema}
    componentMapper={componentMapper}
    FormTemplate={FormTemplate}
    onSubmit={console.log}
  />
)

Custom mapper

You can also use custom mapper.

import React from 'react';
import { FormRenderer, componentTypes, useFieldApi } from '@data-driven-forms/react-form-renderer';

const TextField = props => {
  const {label, input, meta, ...rest} = useFieldApi(props)
  return (
    <div>
      <label htmlForm={input.name}>{label}</label>
      <input {...input} {...rest} id={input.name}/>
      {meta.error && <p>{meta.error}</p>}
    </div>
  )
}

const componentMapper = {
  [componentTypes.TEXT_FIELD]: TextField,
  'custom-type': TextField
}

const schema = {
  fields: [{
    component: componentTypes.TEXT_FIELD,
    name: 'name',
    label: 'Your name'
    type: 'search',
  }]
}

For more information, please check this page.

Mappers can be also generated by using yarn generate-template command.

Basic provided components

Data Driven Forms supports all kinds of component, basic set is consisted of:

Any other components can be added to mapper and renderer with the form renderer. Existing components can be also overriden.

Documentation

Please use our documentation site. In case of any problem, you can access documentation files directly in GitHub.

Useful links

Development setup

Data Driven Forms is a monorepo that uses Lerna and yarn workspaces, so you can use all its commands as well.

  1. Install
yarn install
  1. Build
yarn build
  1. Run a package

Each package has a small playground package/demo, where you can test your changes.

cd packages/pf4-component-mapper
yarn start
  1. How to clean?
yarn lerna clean # will delete all node_modules

All packages are linked together by default, so if you run a yarn build in a package, all other packages are updated to the latest version of that package.

Tests

Tests needed to be run from the core folder.

yarn test

yarn test packages/pf4-component-mapper

Commits

Data Driven Forms uses Semantic Release

Format:

[type]([package]): message

fix(pf4): title accepts node

Types:

  • feat: a new feature, will trigger new _.X._ release
  • fix: a fix, will trigger new _._.X release

Packages:

  • Please describe which package is being changed 4, renderer, ...

Please, do not use Semantic Release, if you update only the demo.

All packages are releasing together and they share the version number.

Changes to documentation

If your changes influence API or add new features, you should describe these new options in the react-renderer-demo repository. Thanks!

Contribution

We welcome any community contribution. Don't be afraid to report bug or to create issues and pull-requests! 🏆

LICENSE

Apache License 2.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].